]> git.saurik.com Git - wxWidgets.git/blame - src/msw/data.cpp
corrections for Mac OS X
[wxWidgets.git] / src / msw / data.cpp
CommitLineData
2bda0e17
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: data.cpp
3// Purpose: Various data
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart and Markus Holzem
e146b8c8 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
a3b46648 13#pragma implementation "data.h"
2bda0e17
KB
14#endif
15
16// For compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
19#ifdef __BORLANDC__
20#pragma hdrstop
21#endif
22
23#ifndef WX_PRECOMP
24#include "wx/wx.h"
25#endif
26
2a47d3c1
JS
27#include "wx/prntbase.h"
28
2bda0e17
KB
29#define _MAXPATHLEN 500
30
31// Useful buffer, initialized in wxCommonInit
837e5743 32wxChar *wxBuffer = NULL;
2bda0e17
KB
33
34// Windows List
e146b8c8 35wxWindowList wxTopLevelWindows;
2bda0e17
KB
36
37// List of windows pending deletion
cde9f08e 38wxList WXDLLEXPORT wxPendingDelete;
2bda0e17 39
2bda0e17
KB
40int wxPageNumber;
41
42// GDI Object Lists
2bda0e17 43wxFontList *wxTheFontList = NULL;
f6bcfd97
BP
44wxPenList *wxThePenList = NULL;
45wxBrushList *wxTheBrushList = NULL;
46wxBitmapList *wxTheBitmapList = NULL;
2bda0e17
KB
47wxColourDatabase *wxTheColourDatabase = NULL;
48
49// Stock objects
50wxFont *wxNORMAL_FONT;
51wxFont *wxSMALL_FONT;
52wxFont *wxITALIC_FONT;
53wxFont *wxSWISS_FONT;
2bda0e17 54
f6bcfd97 55wxPen *wxRED_PEN;
2bda0e17
KB
56wxPen *wxCYAN_PEN;
57wxPen *wxGREEN_PEN;
58wxPen *wxBLACK_PEN;
59wxPen *wxWHITE_PEN;
60wxPen *wxTRANSPARENT_PEN;
61wxPen *wxBLACK_DASHED_PEN;
62wxPen *wxGREY_PEN;
63wxPen *wxMEDIUM_GREY_PEN;
64wxPen *wxLIGHT_GREY_PEN;
65
66wxBrush *wxBLUE_BRUSH;
67wxBrush *wxGREEN_BRUSH;
68wxBrush *wxWHITE_BRUSH;
69wxBrush *wxBLACK_BRUSH;
70wxBrush *wxTRANSPARENT_BRUSH;
71wxBrush *wxCYAN_BRUSH;
72wxBrush *wxRED_BRUSH;
73wxBrush *wxGREY_BRUSH;
74wxBrush *wxMEDIUM_GREY_BRUSH;
75wxBrush *wxLIGHT_GREY_BRUSH;
76
77wxColour *wxBLACK;
78wxColour *wxWHITE;
79wxColour *wxRED;
80wxColour *wxBLUE;
81wxColour *wxGREEN;
82wxColour *wxCYAN;
83wxColour *wxLIGHT_GREY;
84
85wxCursor *wxSTANDARD_CURSOR = NULL;
86wxCursor *wxHOURGLASS_CURSOR = NULL;
87wxCursor *wxCROSS_CURSOR = NULL;
88
89// 'Null' objects
57a7b7c1 90wxAcceleratorTable wxNullAcceleratorTable;
f6bcfd97
BP
91wxBitmap wxNullBitmap;
92wxIcon wxNullIcon;
93wxCursor wxNullCursor;
94wxPen wxNullPen;
95wxBrush wxNullBrush;
2bda0e17 96wxPalette wxNullPalette;
f6bcfd97
BP
97wxFont wxNullFont;
98wxColour wxNullColour;
2bda0e17
KB
99
100// Default window names
8d772832 101const wxChar *wxControlNameStr = wxT("control");
223d09f6
KB
102const wxChar *wxButtonNameStr = wxT("button");
103const wxChar *wxCanvasNameStr = wxT("canvas");
104const wxChar *wxCheckBoxNameStr = wxT("check");
105const wxChar *wxChoiceNameStr = wxT("choice");
106const wxChar *wxComboBoxNameStr = wxT("comboBox");
107const wxChar *wxDialogNameStr = wxT("dialog");
108const wxChar *wxFrameNameStr = wxT("frame");
109const wxChar *wxGaugeNameStr = wxT("gauge");
110const wxChar *wxStaticBoxNameStr = wxT("groupBox");
111const wxChar *wxListBoxNameStr = wxT("listBox");
112const wxChar *wxStaticTextNameStr = wxT("message");
113const wxChar *wxStaticBitmapNameStr = wxT("message");
114const wxChar *wxMultiTextNameStr = wxT("multitext");
115const wxChar *wxPanelNameStr = wxT("panel");
116const wxChar *wxRadioBoxNameStr = wxT("radioBox");
117const wxChar *wxRadioButtonNameStr = wxT("radioButton");
118const wxChar *wxBitmapRadioButtonNameStr = wxT("radioButton");
119const wxChar *wxScrollBarNameStr = wxT("scrollBar");
120const wxChar *wxSliderNameStr = wxT("slider");
121const wxChar *wxStaticNameStr = wxT("static");
122const wxChar *wxTextCtrlWindowNameStr = wxT("textWindow");
123const wxChar *wxTextCtrlNameStr = wxT("text");
124const wxChar *wxVirtListBoxNameStr = wxT("virtListBox");
125const wxChar *wxButtonBarNameStr = wxT("buttonbar");
126const wxChar *wxEnhDialogNameStr = wxT("Shell");
127const wxChar *wxToolBarNameStr = wxT("toolbar");
128const wxChar *wxStatusLineNameStr = wxT("status_line");
129const wxChar *wxGetTextFromUserPromptStr = wxT("Input Text");
130const wxChar *wxMessageBoxCaptionStr = wxT("Message");
131const wxChar *wxFileSelectorPromptStr = wxT("Select a file");
132const wxChar *wxFileSelectorDefaultWildcardStr = wxT("*.*");
133const wxChar *wxInternalErrorStr = wxT("wxWindows Internal Error");
134const wxChar *wxFatalErrorStr = wxT("wxWindows Fatal Error");
135const wxChar *wxTreeCtrlNameStr = wxT("treeCtrl");
136const wxChar *wxDirDialogNameStr = wxT("wxDirCtrl");
137const wxChar *wxDirDialogDefaultFolderStr = wxT("/");
2bda0e17
KB
138
139// See wx/utils.h
223d09f6
KB
140const wxChar *wxFloatToStringStr = wxT("%.2f");
141const wxChar *wxDoubleToStringStr = wxT("%.2f");
2bda0e17 142
2049ba38 143#ifdef __WXMSW__
223d09f6 144const wxChar *wxUserResourceStr = wxT("TEXT");
2bda0e17
KB
145#endif
146
2bda0e17
KB
147
148const wxSize wxDefaultSize(-1, -1);
149const wxPoint wxDefaultPosition(-1, -1);