]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/common/statboxcmn.cpp | |
3 | // Purpose: wxStaticBox common code | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | // For compilers that support precompilation, includes "wx.h". | |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | #if wxUSE_STATBOX | |
28 | ||
29 | #include "wx/statbox.h" | |
30 | ||
31 | extern WXDLLEXPORT_DATA(const char) wxStaticBoxNameStr[] = "groupBox"; | |
32 | ||
33 | // ---------------------------------------------------------------------------- | |
34 | // XTI | |
35 | // ---------------------------------------------------------------------------- | |
36 | ||
37 | wxDEFINE_FLAGS( wxStaticBoxStyle ) | |
38 | wxBEGIN_FLAGS( wxStaticBoxStyle ) | |
39 | // new style border flags, we put them first to | |
40 | // use them for streaming out | |
41 | wxFLAGS_MEMBER(wxBORDER_SIMPLE) | |
42 | wxFLAGS_MEMBER(wxBORDER_SUNKEN) | |
43 | wxFLAGS_MEMBER(wxBORDER_DOUBLE) | |
44 | wxFLAGS_MEMBER(wxBORDER_RAISED) | |
45 | wxFLAGS_MEMBER(wxBORDER_STATIC) | |
46 | wxFLAGS_MEMBER(wxBORDER_NONE) | |
47 | ||
48 | // old style border flags | |
49 | wxFLAGS_MEMBER(wxSIMPLE_BORDER) | |
50 | wxFLAGS_MEMBER(wxSUNKEN_BORDER) | |
51 | wxFLAGS_MEMBER(wxDOUBLE_BORDER) | |
52 | wxFLAGS_MEMBER(wxRAISED_BORDER) | |
53 | wxFLAGS_MEMBER(wxSTATIC_BORDER) | |
54 | wxFLAGS_MEMBER(wxBORDER) | |
55 | ||
56 | // standard window styles | |
57 | wxFLAGS_MEMBER(wxTAB_TRAVERSAL) | |
58 | wxFLAGS_MEMBER(wxCLIP_CHILDREN) | |
59 | wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW) | |
60 | wxFLAGS_MEMBER(wxWANTS_CHARS) | |
61 | wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE) | |
62 | wxFLAGS_MEMBER(wxALWAYS_SHOW_SB ) | |
63 | wxFLAGS_MEMBER(wxVSCROLL) | |
64 | wxFLAGS_MEMBER(wxHSCROLL) | |
65 | wxEND_FLAGS( wxStaticBoxStyle ) | |
66 | ||
67 | wxIMPLEMENT_DYNAMIC_CLASS_XTI(wxStaticBox, wxControl, "wx/statbox.h") | |
68 | ||
69 | wxBEGIN_PROPERTIES_TABLE(wxStaticBox) | |
70 | wxPROPERTY( Label, wxString, SetLabel, GetLabel, wxString(), 0 /*flags*/, \ | |
71 | wxT("Helpstring"), wxT("group")) | |
72 | wxPROPERTY_FLAGS( WindowStyle, wxStaticBoxStyle, long, SetWindowStyleFlag, \ | |
73 | GetWindowStyleFlag, wxEMPTY_PARAMETER_VALUE, 0 /*flags*/, \ | |
74 | wxT("Helpstring"), wxT("group")) // style | |
75 | wxEND_PROPERTIES_TABLE() | |
76 | ||
77 | wxEMPTY_HANDLERS_TABLE(wxStaticBox) | |
78 | ||
79 | wxCONSTRUCTOR_6( wxStaticBox, wxWindow*, Parent, wxWindowID, Id, \ | |
80 | wxString, Label, wxPoint, Position, wxSize, Size, \ | |
81 | long, WindowStyle ) | |
82 | ||
83 | #endif // wxUSE_STATBOX |