]> git.saurik.com Git - wxWidgets.git/blame - include/wx/palmos/toplevel.h
Move wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW out of the common section in
[wxWidgets.git] / include / wx / palmos / toplevel.h
CommitLineData
ffecfa5a
JS
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/palmos/toplevel.h
3// Purpose: wxTopLevelWindow
e1d63b79 4// Author: William Osborne - minimal working wxPalmOS port
db101bd3 5// Modified by: Wlodzimierz ABX Skiba - more than minimal functionality
ffecfa5a 6// Created: 10/13/04
e1d63b79 7// RCS-ID: $Id$
db101bd3 8// Copyright: (c) William Osborne, Wlodzimierz Skiba
ffecfa5a
JS
9// Licence: wxWindows licence
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_PALMOS_TOPLEVEL_H_
13#define _WX_PALMOS_TOPLEVEL_H_
14
15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "toplevel.h"
17#endif
18
ffecfa5a
JS
19// ----------------------------------------------------------------------------
20// wxTopLevelWindowPalm
21// ----------------------------------------------------------------------------
22
23class WXDLLEXPORT wxTopLevelWindowPalm : public wxTopLevelWindowBase
24{
25public:
26 // constructors and such
27 wxTopLevelWindowPalm() { Init(); }
28
29 wxTopLevelWindowPalm(wxWindow *parent,
30 wxWindowID id,
31 const wxString& title,
32 const wxPoint& pos = wxDefaultPosition,
33 const wxSize& size = wxDefaultSize,
34 long style = wxDEFAULT_FRAME_STYLE,
35 const wxString& name = wxFrameNameStr)
36 {
37 Init();
38
39 (void)Create(parent, id, title, pos, size, style, name);
40 }
41
42 bool Create(wxWindow *parent,
43 wxWindowID id,
44 const wxString& title,
45 const wxPoint& pos = wxDefaultPosition,
46 const wxSize& size = wxDefaultSize,
47 long style = wxDEFAULT_FRAME_STYLE,
48 const wxString& name = wxFrameNameStr);
4055ed82 49
ffecfa5a
JS
50 virtual ~wxTopLevelWindowPalm();
51
52 // implement base class pure virtuals
4055ed82 53 virtual void Maximize(bool maximize = true);
ffecfa5a 54 virtual bool IsMaximized() const;
4055ed82 55 virtual void Iconize(bool iconize = true);
ffecfa5a
JS
56 virtual bool IsIconized() const;
57 virtual void SetIcon(const wxIcon& icon);
58 virtual void SetIcons(const wxIconBundle& icons );
59 virtual void Restore();
60
61#ifndef __WXWINCE__
62 virtual bool SetShape(const wxRegion& region);
63#endif // __WXWINCE__
64
4055ed82 65 virtual bool Show(bool show = true);
ffecfa5a
JS
66
67 virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL);
68 virtual bool IsFullScreen() const { return m_fsIsShowing; }
69
4055ed82 70 // wxPalm only: EnableCloseButton(false) may be used to remove the "Close"
ffecfa5a 71 // button from the title bar
4055ed82 72 bool EnableCloseButton(bool enable = true);
ffecfa5a
JS
73
74 // implementation from now on
75 // --------------------------
76
77 // event handlers
78 void OnActivate(wxActivateEvent& event);
79
80 // called by wxWindow whenever it gets focus
81 void SetLastFocus(wxWindow *win) { m_winLastFocused = win; }
82 wxWindow *GetLastFocus() const { return m_winLastFocused; }
83
bdb54365 84 // interface to native frame structure
808e3bce 85 FormType *GetForm() const;
bdb54365 86
721a9626 87 // handle native events
a152561c 88 bool HandleControlSelect(EventType* event);
721a9626
WS
89 bool HandleControlRepeat(EventType* event);
90 bool HandleSize(EventType* event);
a152561c 91
324eeecb
WS
92 virtual WXWINHANDLE GetWinHandle() const;
93
ffecfa5a
JS
94protected:
95 // common part of all ctors
96 void Init();
97
808e3bce
WS
98 // getting and setting sizes
99 virtual void DoGetSize( int *width, int *height ) const;
100
ffecfa5a
JS
101 // common part of Iconize(), Maximize() and Restore()
102 void DoShowWindow(int nShowCmd);
103
104 // translate wxWidgets flags to Windows ones
105 virtual WXDWORD PalmGetStyle(long flags, WXDWORD *exstyle) const;
106
ffecfa5a
JS
107 // is the window currently iconized?
108 bool m_iconized;
109
110 // should the frame be maximized when it will be shown? set by Maximize()
111 // when it is called while the frame is hidden
112 bool m_maximizeOnShow;
113
114 // Data to save/restore when calling ShowFullScreen
115 long m_fsStyle; // Passed to ShowFullScreen
116 wxRect m_fsOldSize;
117 long m_fsOldWindowStyle;
118 bool m_fsIsMaximized;
119 bool m_fsIsShowing;
120
121 // the last focused child: we restore focus to it on activation
122 wxWindow *m_winLastFocused;
123
124 DECLARE_EVENT_TABLE()
125 DECLARE_NO_COPY_CLASS(wxTopLevelWindowPalm)
126};
127
128static Boolean FrameFormHandleEvent(EventType* pEvent);
129
130#endif // _WX_PALMOS_TOPLEVEL_H_
131