]> git.saurik.com Git - wxWidgets.git/blame - include/wx/cocoa/toplevel.h
setter fix
[wxWidgets.git] / include / wx / cocoa / toplevel.h
CommitLineData
fb896a32
DE
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/cocoa/toplevel.h
3// Purpose: wxTopLevelWindowCocoa is the Cocoa implementation of wxTLW
4// Author: David Elliott
5// Modified by:
6// Created: 2002/12/08
7// RCS-ID: $Id:
8// Copyright: (c) 2002 David Elliott
9// Licence: wxWindows license
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef __WX_COCOA_TOPLEVEL_H__
13#define __WX_COCOA_TOPLEVEL_H__
14
15#include "wx/hashmap.h"
16#include "wx/cocoa/NSWindow.h"
17
33faea0a
DE
18class WXDLLEXPORT wxMenuBar;
19
fb896a32
DE
20// ========================================================================
21// wxTopLevelWindowCocoa
22// ========================================================================
23class WXDLLEXPORT wxTopLevelWindowCocoa : public wxTopLevelWindowBase, protected wxCocoaNSWindow
24{
fb896a32 25 DECLARE_EVENT_TABLE();
acbf9534 26 DECLARE_NO_COPY_CLASS(wxTopLevelWindowCocoa);
fb896a32
DE
27// ------------------------------------------------------------------------
28// initialization
29// ------------------------------------------------------------------------
30public:
31 inline wxTopLevelWindowCocoa() { Init(); }
32
33 inline wxTopLevelWindowCocoa(wxWindow *parent,
34 wxWindowID winid,
35 const wxString& title,
36 const wxPoint& pos = wxDefaultPosition,
37 const wxSize& size = wxDefaultSize,
38 long style = wxDEFAULT_FRAME_STYLE,
39 const wxString& name = wxFrameNameStr)
40 {
41 Init();
42 Create(parent, winid, title, pos, size, style, name);
43 }
44
45 bool Create(wxWindow *parent,
46 wxWindowID winid,
47 const wxString& title,
48 const wxPoint& pos = wxDefaultPosition,
49 const wxSize& size = wxDefaultSize,
50 long style = wxDEFAULT_FRAME_STYLE,
51 const wxString& name = wxFrameNameStr);
52
53 virtual ~wxTopLevelWindowCocoa();
54
55protected:
56 // common part of all ctors
57 void Init();
58
59// ------------------------------------------------------------------------
60// Cocoa specifics
61// ------------------------------------------------------------------------
62public:
63 inline WX_NSWindow GetNSWindow() { return m_cocoaNSWindow; }
64 virtual void Cocoa_close(void);
aa992c59
DE
65 virtual bool CocoaDelegate_windowShouldClose(void);
66 virtual void CocoaDelegate_windowDidBecomeKey(void);
67 virtual void CocoaDelegate_windowDidResignKey(void);
33faea0a
DE
68 virtual void CocoaDelegate_windowDidBecomeMain(void);
69 virtual void CocoaDelegate_windowDidResignMain(void);
70 virtual wxMenuBar* GetAppMenuBar() { return NULL; }
fb896a32
DE
71protected:
72 void SetNSWindow(WX_NSWindow cocoaNSWindow);
73 WX_NSWindow m_cocoaNSWindow;
74 static wxCocoaNSWindowHash sm_cocoaHash;
448cbf1d 75 virtual void CocoaReplaceView(WX_NSView oldView, WX_NSView newView);
fb896a32
DE
76
77// ------------------------------------------------------------------------
78// Implementation
79// ------------------------------------------------------------------------
80public:
81 // Pure virtuals
82 virtual void Maximize(bool maximize = true);
83 virtual bool IsMaximized() const;
84 virtual void Iconize(bool iconize = true);
85 virtual bool IsIconized() const;
86 virtual void Restore();
87 virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL);
88 virtual bool IsFullScreen() const;
89 // other
90 virtual bool Show( bool show = true );
91 virtual bool Close( bool force = false );
92 virtual void OnCloseWindow(wxCloseEvent& event);
e08efb8d 93 virtual void CocoaSetWxWindowSize(int width, int height);
fb896a32
DE
94 virtual void DoMoveWindow(int x, int y, int width, int height);
95 virtual void DoGetSize(int *width, int *height) const;
96 virtual void DoGetPosition(int *x, int *y) const;
97
98
99// Things I may/may not do
100// virtual void SetIcon(const wxIcon& icon);
101// virtual void SetIcons(const wxIconBundle& icons) { SetIcon( icons.GetIcon( -1 ) ); }
102// virtual void Clear() ;
103// virtual void Raise();
104// virtual void Lower();
105// virtual void SetTitle( const wxString& title);
106protected:
107 // is the frame currently iconized?
108 bool m_iconized;
109 // has the frame been closed
110 bool m_closed;
111 // should the frame be maximized when it will be shown? set by Maximize()
112 // when it is called while the frame is hidden
113 bool m_maximizeOnShow;
114};
115
116// list of all frames and modeless dialogs
117extern WXDLLEXPORT_DATA(wxWindowList) wxModelessWindows;
118
119#endif // __WX_COCOA_TOPLEVEL_H__