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