]> git.saurik.com Git - wxWidgets.git/blob - src/msw/statline.cpp
Include wx/log.h according to precompiled headers of wx/wx.h (with other minor cleaning).
[wxWidgets.git] / src / msw / statline.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msw/statline.cpp
3 // Purpose: MSW version of wxStaticLine class
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 #include "wx/msw/private.h"
31 #include "wx/msw/missing.h"
32
33 // ============================================================================
34 // implementation
35 // ============================================================================
36
37 #if wxUSE_EXTENDED_RTTI
38 WX_DEFINE_FLAGS( wxStaticLineStyle )
39
40 wxBEGIN_FLAGS( wxStaticLineStyle )
41 // new style border flags, we put them first to
42 // use them for streaming out
43 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
44 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
45 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
46 wxFLAGS_MEMBER(wxBORDER_RAISED)
47 wxFLAGS_MEMBER(wxBORDER_STATIC)
48 wxFLAGS_MEMBER(wxBORDER_NONE)
49
50 // old style border flags
51 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
52 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
53 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
54 wxFLAGS_MEMBER(wxRAISED_BORDER)
55 wxFLAGS_MEMBER(wxSTATIC_BORDER)
56 wxFLAGS_MEMBER(wxBORDER)
57
58 // standard window styles
59 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
60 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
61 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
62 wxFLAGS_MEMBER(wxWANTS_CHARS)
63 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
64 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
65 wxFLAGS_MEMBER(wxVSCROLL)
66 wxFLAGS_MEMBER(wxHSCROLL)
67
68 wxFLAGS_MEMBER(wxLI_HORIZONTAL)
69 wxFLAGS_MEMBER(wxLI_VERTICAL)
70
71 wxEND_FLAGS( wxStaticLineStyle )
72
73 IMPLEMENT_DYNAMIC_CLASS_XTI(wxStaticLine, wxControl,"wx/statline.h")
74
75 wxBEGIN_PROPERTIES_TABLE(wxStaticLine)
76 wxPROPERTY_FLAGS( WindowStyle , wxStaticLineStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
77 wxEND_PROPERTIES_TABLE()
78
79 wxBEGIN_HANDLERS_TABLE(wxStaticLine)
80 wxEND_HANDLERS_TABLE()
81
82 wxCONSTRUCTOR_5( wxStaticLine, wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size , long , WindowStyle)
83
84 #else
85 IMPLEMENT_DYNAMIC_CLASS(wxStaticLine, wxControl)
86 #endif
87
88 /*
89 TODO PROPERTIES :
90 style (wxLI_HORIZONTAL)
91 */
92
93 // ----------------------------------------------------------------------------
94 // wxStaticLine
95 // ----------------------------------------------------------------------------
96
97 bool wxStaticLine::Create(wxWindow *parent,
98 wxWindowID id,
99 const wxPoint& pos,
100 const wxSize& sizeOrig,
101 long style,
102 const wxString &name)
103 {
104 wxSize size = AdjustSize(sizeOrig);
105
106 if ( !CreateControl(parent, id, pos, size, style, wxDefaultValidator, name) )
107 return false;
108
109 return MSWCreateControl(_T("STATIC"), wxEmptyString, pos, size);
110 }
111
112 WXDWORD wxStaticLine::MSWGetStyle(long style, WXDWORD *exstyle) const
113 {
114 // we never have border
115 style &= ~wxBORDER_MASK;
116 style |= wxBORDER_NONE;
117
118 WXDWORD msStyle = wxControl::MSWGetStyle(style, exstyle);
119
120 // add our default styles
121 msStyle |= SS_SUNKEN | SS_NOTIFY | WS_CLIPSIBLINGS;
122 #ifndef __WXWINCE__
123 msStyle |= SS_GRAYRECT ;
124 #endif
125
126 return msStyle ;
127 }
128
129 #endif // wxUSE_STATLINE
130