Add wxEventLoop::ScheduleExit().
[wxWidgets.git] / src / common / statbmpcmn.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/statbmpcmn.cpp
3 // Purpose: wxStaticBitmap 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_STATBMP
28
29 #include "wx/statbmp.h"
30
31 extern WXDLLEXPORT_DATA(const char) wxStaticBitmapNameStr[] = "staticBitmap";
32
33 // ---------------------------------------------------------------------------
34 // XTI
35 // ---------------------------------------------------------------------------
36
37 wxDEFINE_FLAGS( wxStaticBitmapStyle )
38 wxBEGIN_FLAGS( wxStaticBitmapStyle )
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
66 wxEND_FLAGS( wxStaticBitmapStyle )
67
68 wxIMPLEMENT_DYNAMIC_CLASS_XTI(wxStaticBitmap, wxControl, "wx/statbmp.h")
69
70 wxBEGIN_PROPERTIES_TABLE(wxStaticBitmap)
71 wxPROPERTY_FLAGS( WindowStyle, wxStaticBitmapStyle, long, \
72 SetWindowStyleFlag, GetWindowStyleFlag, \
73 wxEMPTY_PARAMETER_VALUE, 0 /*flags*/, wxT("Helpstring"), \
74 wxT("group")) // style
75 wxEND_PROPERTIES_TABLE()
76
77 wxEMPTY_HANDLERS_TABLE(wxStaticBitmap)
78
79 wxCONSTRUCTOR_5( wxStaticBitmap, wxWindow*, Parent, wxWindowID, Id, \
80 wxBitmap, Bitmap, wxPoint, Position, wxSize, Size )
81
82 /*
83 TODO PROPERTIES :
84 bitmap
85 */
86
87 #endif // wxUSE_STATBMP