]> git.saurik.com Git - wxWidgets.git/blame - wxPython/src/_mdi.i
reSWIGged
[wxWidgets.git] / wxPython / src / _mdi.i
CommitLineData
7bf85405 1/////////////////////////////////////////////////////////////////////////////
d14a1e28
RD
2// Name: _mdi.i
3// Purpose: SWIG interface for MDI related class definitions
7bf85405
RD
4//
5// Author: Robin Dunn
6//
d14a1e28 7// Created: 26-May-1998
7bf85405 8// RCS-ID: $Id$
d14a1e28 9// Copyright: (c) 2003 by Total Control Software
7bf85405
RD
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
d14a1e28 13// Not a %module
7bf85405 14
03e9bead 15
d14a1e28
RD
16//---------------------------------------------------------------------------
17%newgroup
7bf85405 18
137b5242 19%{
d14a1e28 20#include <wx/mdi.h>
137b5242
RD
21%}
22
d14a1e28 23//---------------------------------------------------------------------------
137b5242 24
d14a1e28
RD
25#define IDM_WINDOWTILE 4001
26#define IDM_WINDOWTILEHOR 4001
27#define IDM_WINDOWCASCADE 4002
28#define IDM_WINDOWICONS 4003
29#define IDM_WINDOWNEXT 4004
30#define IDM_WINDOWTILEVERT 4005
31#define wxFIRST_MDI_CHILD 4100
32#define wxLAST_MDI_CHILD 4600
26e335b8
RD
33
34
35
ab1f7d2a
RD
36MustHaveApp(wxMDIParentFrame);
37
7bf85405
RD
38class wxMDIParentFrame : public wxFrame {
39public:
2b9048c5
RD
40 %pythonAppend wxMDIParentFrame "self._setOORInfo(self)"
41 %pythonAppend wxMDIParentFrame() ""
d14a1e28 42
7bf85405 43 wxMDIParentFrame(wxWindow *parent,
d5573410
RD
44 const wxWindowID id=-1,
45 const wxString& title = wxPyEmptyString,
b68dc582
RD
46 const wxPoint& pos = wxDefaultPosition,
47 const wxSize& size = wxDefaultSize,
7bf85405 48 long style = wxDEFAULT_FRAME_STYLE | wxVSCROLL | wxHSCROLL,
137b5242 49 const wxString& name = wxPyFrameNameStr);
d14a1e28 50 %name(PreMDIParentFrame)wxMDIParentFrame();
7bf85405 51
09f3d4e6 52 bool Create(wxWindow *parent,
d5573410
RD
53 const wxWindowID id=-1,
54 const wxString& title = wxPyEmptyString,
09f3d4e6
RD
55 const wxPoint& pos = wxDefaultPosition,
56 const wxSize& size = wxDefaultSize,
57 long style = wxDEFAULT_FRAME_STYLE | wxVSCROLL | wxHSCROLL,
137b5242 58 const wxString& name = wxPyFrameNameStr);
9c039d08 59
0122b7e3 60
7bf85405
RD
61 void ActivateNext();
62 void ActivatePrevious();
63 void ArrangeIcons();
64 void Cascade();
7bf85405
RD
65 wxMDIChildFrame* GetActiveChild();
66 wxMDIClientWindow* GetClientWindow();
67 wxWindow* GetToolBar();
68
69 // TODO: This isn't handled by the standard event-table system...
70 //wxMDIClientWindow* OnCreateClient();
71
3ca6a5f0 72
fb5e0af0 73#ifdef __WXMSW__
3ca6a5f0
BP
74 wxMenu* GetWindowMenu();
75 void SetWindowMenu(wxMenu* menu);
7bf85405 76 void SetToolBar(wxToolBar* toolbar);
fb5e0af0 77#endif
7bf85405
RD
78 void Tile();
79};
80
81//---------------------------------------------------------------------------
82
ab1f7d2a
RD
83MustHaveApp(wxMDIChildFrame);
84
7bf85405
RD
85class wxMDIChildFrame : public wxFrame {
86public:
2b9048c5
RD
87 %pythonAppend wxMDIChildFrame "self._setOORInfo(self)"
88 %pythonAppend wxMDIChildFrame() ""
d14a1e28 89
7bf85405 90 wxMDIChildFrame(wxMDIParentFrame* parent,
d5573410
RD
91 const wxWindowID id=-1,
92 const wxString& title = wxPyEmptyString,
b68dc582
RD
93 const wxPoint& pos = wxDefaultPosition,
94 const wxSize& size = wxDefaultSize,
7bf85405 95 long style = wxDEFAULT_FRAME_STYLE,
137b5242 96 const wxString& name = wxPyFrameNameStr);
d14a1e28 97 %name(PreMDIChildFrame)wxMDIChildFrame();
09f3d4e6
RD
98
99 bool Create(wxMDIParentFrame* parent,
d5573410
RD
100 const wxWindowID id=-1,
101 const wxString& title = wxPyEmptyString,
09f3d4e6
RD
102 const wxPoint& pos = wxDefaultPosition,
103 const wxSize& size = wxDefaultSize,
104 long style = wxDEFAULT_FRAME_STYLE,
137b5242 105 const wxString& name = wxPyFrameNameStr);
7bf85405
RD
106
107 void Activate();
ab9bc19b 108 void Maximize(bool maximize);
7bf85405 109 void Restore();
fb5e0af0 110
7bf85405
RD
111};
112
113
114//---------------------------------------------------------------------------
115
ab1f7d2a
RD
116MustHaveApp(wxMDIClientWindow);
117
7bf85405
RD
118class wxMDIClientWindow : public wxWindow {
119public:
2b9048c5
RD
120 %pythonAppend wxMDIClientWindow "self._setOORInfo(self)"
121 %pythonAppend wxMDIClientWindow() ""
d14a1e28 122
7bf85405 123 wxMDIClientWindow(wxMDIParentFrame* parent, long style = 0);
d14a1e28 124 %name(PreMDIClientWindow)wxMDIClientWindow();
09f3d4e6 125
09f3d4e6 126 bool Create(wxMDIParentFrame* parent, long style = 0);
7bf85405
RD
127};
128
d14a1e28 129
7bf85405 130//---------------------------------------------------------------------------