]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/msw/minifram.h | |
3 | // Purpose: wxMiniFrame class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_MINIFRAM_H_ | |
13 | #define _WX_MINIFRAM_H_ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface "minifram.h" | |
17 | #endif | |
18 | ||
19 | #include "wx/frame.h" | |
20 | ||
21 | #ifdef __WIN32__ | |
22 | ||
23 | class WXDLLEXPORT wxMiniFrame : public wxFrame | |
24 | { | |
25 | public: | |
26 | wxMiniFrame() { } | |
27 | wxMiniFrame(wxWindow *parent, | |
28 | wxWindowID id, | |
29 | const wxString& title, | |
30 | const wxPoint& pos = wxDefaultPosition, | |
31 | const wxSize& size = wxDefaultSize, | |
32 | long style = wxCAPTION | wxCLIP_CHILDREN | wxRESIZE_BORDER, | |
33 | const wxString& name = wxFrameNameStr) | |
34 | { | |
35 | Create(parent, id, title, pos, size, style | wxFRAME_TOOL_WINDOW | wxFRAME_FLOAT_ON_PARENT, name); | |
36 | } | |
37 | ||
38 | protected: | |
39 | DECLARE_DYNAMIC_CLASS(wxMiniFrame) | |
40 | }; | |
41 | ||
42 | ||
43 | #else // !Win32 | |
44 | ||
45 | class WXDLLEXPORT wxMiniFrame : public wxFrame | |
46 | { | |
47 | public: | |
48 | wxMiniFrame() { } | |
49 | wxMiniFrame(wxWindow *parent, | |
50 | wxWindowID id, | |
51 | const wxString& title, | |
52 | const wxPoint& pos = wxDefaultPosition, | |
53 | const wxSize& size = wxDefaultSize, | |
54 | long style = wxDEFAULT_FRAME_STYLE|wxTINY_CAPTION_HORIZ, | |
55 | const wxString& name = wxFrameNameStr) | |
56 | { | |
57 | Create(parent, id, title, pos, size, style, name); | |
58 | } | |
59 | ||
60 | virtual ~wxMiniFrame(); | |
61 | ||
62 | virtual long MSWDefWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); | |
63 | ||
64 | DECLARE_DYNAMIC_CLASS(wxMiniFrame) | |
65 | }; | |
66 | ||
67 | #endif // Win32/!Win32 | |
68 | ||
69 | #endif | |
70 | // _WX_MINIFRAM_H_ |