-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpen.cpp
More file actions
117 lines (90 loc) · 1.74 KB
/
pen.cpp
File metadata and controls
117 lines (90 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/////////////////////////////////////////////////////////////////////////////
// Name: src/palmos/pen.cpp
// Purpose: wxPen
// Author: William Osborne - minimal working wxPalmOS port
// Modified by:
// Created: 10/13/04
// RCS-ID: $Id: pen.cpp 39228 2006-05-19 09:37:38Z ABX $
// Copyright: (c) William Osborne
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#include "wx/pen.h"
#ifndef WX_PRECOMP
#include <stdio.h>
#include "wx/list.h"
#include "wx/utils.h"
#include "wx/app.h"
#endif
static int wx2msPenStyle(int wx_style);
IMPLEMENT_DYNAMIC_CLASS(wxPen, wxGDIObject)
wxPenRefData::wxPenRefData()
{
}
wxPenRefData::wxPenRefData(const wxPenRefData& data)
{
}
wxPenRefData::~wxPenRefData()
{
}
// Pens
wxPen::wxPen()
{
}
wxPen::~wxPen()
{
}
// Should implement Create
wxPen::wxPen(const wxColour& col, int Width, int Style)
{
}
wxPen::wxPen(const wxBitmap& stipple, int Width)
{
}
bool wxPen::RealizeResource()
{
return false;
}
WXHANDLE wxPen::GetResourceHandle() const
{
return 0;
}
bool wxPen::FreeResource(bool WXUNUSED(force))
{
return false;
}
bool wxPen::IsFree() const
{
return false;
}
void wxPen::Unshare()
{
}
void wxPen::SetColour(const wxColour& col)
{
}
void wxPen::SetColour(unsigned char r, unsigned char g, unsigned char b)
{
}
void wxPen::SetWidth(int Width)
{
}
void wxPen::SetStyle(int Style)
{
}
void wxPen::SetStipple(const wxBitmap& Stipple)
{
}
void wxPen::SetDashes(int nb_dashes, const wxDash *Dash)
{
}
void wxPen::SetJoin(int Join)
{
}
void wxPen::SetCap(int Cap)
{
}