The rounded corners look really dumb at this size.
[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 // Copyright: (c) Julian Smart
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 #if wxUSE_STATBMP
27
28 #include "wx/statbmp.h"
29
30 extern WXDLLEXPORT_DATA(const char) wxStaticBitmapNameStr[] = "staticBitmap";
31
32 // ---------------------------------------------------------------------------
33 // XTI
34 // ---------------------------------------------------------------------------
35
36 wxDEFINE_FLAGS( wxStaticBitmapStyle )
37 wxBEGIN_FLAGS( wxStaticBitmapStyle )
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 wxEND_FLAGS( wxStaticBitmapStyle )
66
67 wxIMPLEMENT_DYNAMIC_CLASS_XTI(wxStaticBitmap, wxControl, "wx/statbmp.h")
68
69 wxBEGIN_PROPERTIES_TABLE(wxStaticBitmap)
70 wxPROPERTY_FLAGS( WindowStyle, wxStaticBitmapStyle, long, \
71 SetWindowStyleFlag, GetWindowStyleFlag, \
72 wxEMPTY_PARAMETER_VALUE, 0 /*flags*/, wxT("Helpstring"), \
73 wxT("group")) // style
74 wxEND_PROPERTIES_TABLE()
75
76 wxEMPTY_HANDLERS_TABLE(wxStaticBitmap)
77
78 wxCONSTRUCTOR_5( wxStaticBitmap, wxWindow*, Parent, wxWindowID, Id, \
79 wxBitmap, Bitmap, wxPoint, Position, wxSize, Size )
80
81 /*
82 TODO PROPERTIES :
83 bitmap
84 */
85
86 #endif // wxUSE_STATBMP