]>
Commit | Line | Data |
---|---|---|
d14a1e28 RD |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: _xmlres.i | |
3 | // Purpose: SWIG interface for wxXmlResource | |
4 | // | |
5 | // Author: Robin Dunn | |
6 | // | |
7 | // Created: 4-June-2001 | |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) 2003 by Total Control Software | |
10 | // Licence: wxWindows license | |
11 | ///////////////////////////////////////////////////////////////////////////// | |
12 | ||
13 | // Not a %module | |
14 | ||
15 | ||
16 | //--------------------------------------------------------------------------- | |
17 | %newgroup | |
18 | ||
19 | ||
20 | ||
21 | class wxPyXmlSubclassFactory; | |
22 | ||
23 | enum { | |
24 | WX_XMLRES_CURRENT_VERSION_MAJOR, | |
25 | WX_XMLRES_CURRENT_VERSION_MINOR, | |
26 | WX_XMLRES_CURRENT_VERSION_RELEASE, | |
27 | WX_XMLRES_CURRENT_VERSION_REVISION, | |
28 | }; | |
29 | ||
30 | ||
31 | enum wxXmlResourceFlags | |
32 | { | |
2937186c RD |
33 | wxXRC_USE_LOCALE, |
34 | wxXRC_NO_SUBCLASSING, | |
35 | wxXRC_NO_RELOADING | |
d14a1e28 RD |
36 | }; |
37 | ||
38 | ||
39 | ||
40 | // This class holds XML resources from one or more .xml files | |
41 | // (or derived forms, either binary or zipped -- see manual for | |
42 | // details). | |
43 | ||
44 | class wxXmlResource : public wxObject | |
45 | { | |
46 | public: | |
47 | ||
ab1f7d2a RD |
48 | %pythonAppend wxXmlResource(const wxString& filemask, int flags) "self.InitAllHandlers()" |
49 | %pythonAppend wxXmlResource(int flags) "val.InitAllHandlers()" | |
d14a1e28 RD |
50 | |
51 | // Ctors. | |
52 | // Flags: wxXRC_USE_LOCALE | |
53 | // translatable strings will be translated via _() | |
54 | // wxXRC_NO_SUBCLASSING | |
55 | // subclass property of object nodes will be ignored | |
56 | // (useful for previews in XRC editors) | |
57 | wxXmlResource(const wxString& filemask, int flags = wxXRC_USE_LOCALE); | |
1b8c7ba6 | 58 | %RenameCtor(EmptyXmlResource, wxXmlResource(int flags = wxXRC_USE_LOCALE)); |
d14a1e28 RD |
59 | ~wxXmlResource(); |
60 | ||
61 | ||
62 | // Loads resources from XML files that match given filemask. | |
63 | // This method understands VFS (see filesys.h). | |
64 | bool Load(const wxString& filemask); | |
65 | ||
66 | %extend { | |
67 | bool LoadFromString(const wxString& data) { | |
68 | static int s_memFileIdx = 0; | |
69 | ||
70 | // Check for memory FS. If not present, load the handler: | |
71 | wxMemoryFSHandler::AddFile(wxT("XRC_resource/dummy_file"), | |
72 | wxT("dummy data")); | |
73 | wxFileSystem fsys; | |
74 | wxFSFile *f = fsys.OpenFile(wxT("memory:XRC_resource/dummy_file")); | |
75 | wxMemoryFSHandler::RemoveFile(wxT("XRC_resource/dummy_file")); | |
76 | if (f) | |
77 | delete f; | |
78 | else | |
79 | wxFileSystem::AddHandler(new wxMemoryFSHandler); | |
80 | ||
81 | // Now put the resource data into the memory FS | |
82 | wxString filename(wxT("XRC_resource/data_string_")); | |
83 | filename << s_memFileIdx; | |
84 | s_memFileIdx += 1; | |
85 | wxMemoryFSHandler::AddFile(filename, data); | |
86 | ||
87 | // Load the "file" into the resource object | |
88 | bool retval = self->Load(wxT("memory:") + filename ); | |
89 | ||
90 | return retval; | |
91 | } | |
92 | } | |
93 | ||
02b800ce RD |
94 | // Unload resource from the given XML file (wildcards not allowed) |
95 | bool Unload(const wxString& filename); | |
96 | ||
d14a1e28 RD |
97 | // Initialize handlers for all supported controls/windows. |
98 | void InitAllHandlers(); | |
99 | ||
100 | // Initialize only specific handler (or custom handler). Convention says | |
101 | // that handler name is equal to control's name plus 'XmlHandler', e.g. | |
102 | // wxTextCtrlXmlHandler, wxHtmlWindowXmlHandler. XML resource compiler | |
103 | // (xmlres) can create include file that contains initialization code for | |
104 | // all controls used within the resource. | |
105 | void AddHandler(wxPyXmlResourceHandler *handler); | |
106 | ||
107 | // Add a new handler at the begining of the handler list | |
108 | void InsertHandler(wxPyXmlResourceHandler *handler); | |
109 | ||
110 | // Removes all handlers | |
111 | void ClearHandlers(); | |
112 | ||
113 | // Registers subclasses factory for use in XRC. This function is not meant | |
114 | // for public use, please see the comment above wxXmlSubclassFactory | |
115 | // definition. | |
116 | static void AddSubclassFactory(wxPyXmlSubclassFactory *factory); | |
117 | ||
118 | ||
119 | // Loads menu from resource. Returns NULL on failure. | |
120 | wxMenu *LoadMenu(const wxString& name); | |
121 | ||
122 | // Loads menubar from resource. Returns NULL on failure. | |
123 | wxMenuBar *LoadMenuBar(const wxString& name); | |
1b8c7ba6 | 124 | %Rename(LoadMenuBarOnFrame, wxMenuBar* , LoadMenuBar(wxWindow *parent, const wxString& name)); |
d14a1e28 RD |
125 | |
126 | ||
127 | // Loads toolbar | |
128 | wxToolBar *LoadToolBar(wxWindow *parent, const wxString& name); | |
129 | ||
130 | // Loads dialog. dlg points to parent window (if any). Second form | |
131 | // is used to finish creation of already existing instance (main reason | |
132 | // for this is that you may want to use derived class with new event table) | |
133 | // Example (typical usage): | |
134 | // MyDialog dlg; | |
135 | // wxTheXmlResource->LoadDialog(&dlg, mainFrame, "my_dialog"); | |
136 | // dlg->ShowModal(); | |
137 | wxDialog *LoadDialog(wxWindow *parent, const wxString& name); | |
1b8c7ba6 | 138 | %Rename(LoadOnDialog, bool, LoadDialog(wxDialog *dlg, wxWindow *parent, const wxString& name)); |
d14a1e28 RD |
139 | |
140 | // Loads panel. panel points to parent window (if any). Second form | |
141 | // is used to finish creation of already existing instance. | |
142 | wxPanel *LoadPanel(wxWindow *parent, const wxString& name); | |
1b8c7ba6 | 143 | %Rename(LoadOnPanel, bool, LoadPanel(wxPanel *panel, wxWindow *parent, const wxString& name)); |
d14a1e28 RD |
144 | |
145 | // Load a frame's contents from a resource | |
146 | wxFrame *LoadFrame(wxWindow* parent, const wxString& name); | |
1b8c7ba6 | 147 | %Rename(LoadOnFrame, bool, LoadFrame(wxFrame* frame, wxWindow *parent, const wxString& name)); |
d14a1e28 RD |
148 | |
149 | // Load an object from the resource specifying both the resource name and | |
150 | // the classname. This lets you load nonstandard container windows. | |
151 | wxObject *LoadObject(wxWindow *parent, const wxString& name, | |
152 | const wxString& classname); | |
153 | ||
154 | // Load an object from the resource specifying both the resource name and | |
155 | // the classname. This form lets you finish the creation of an existing | |
156 | // instance. | |
1b8c7ba6 RD |
157 | %Rename(LoadOnObject, bool, LoadObject(wxObject *instance, wxWindow *parent, const wxString& name, |
158 | const wxString& classname)); | |
d14a1e28 RD |
159 | |
160 | // Loads a bitmap resource from a file. | |
161 | wxBitmap LoadBitmap(const wxString& name); | |
162 | ||
163 | // Loads an icon resource from a file. | |
164 | wxIcon LoadIcon(const wxString& name); | |
165 | ||
166 | // Attaches unknown control into given panel/window/dialog: | |
167 | // (unknown controls are used in conjunction with <object class="unknown">) | |
168 | bool AttachUnknownControl(const wxString& name, wxWindow *control, | |
169 | wxWindow *parent = NULL); | |
170 | ||
171 | // Returns numeric ID that is equivalent to string id used in XML | |
172 | // resource. To be used in event tables | |
173 | // Macro XMLID is provided for convenience | |
174 | static int GetXRCID(const wxString& str_id); | |
175 | ||
176 | // Returns version info (a.b.c.d = d+ 256*c + 256^2*b + 256^3*a) | |
177 | long GetVersion() const; | |
178 | ||
179 | // Compares resources version to argument. Returns -1 if resources version | |
180 | // is less than the argument, +1 if greater and 0 if they equal. | |
181 | int CompareVersion(int major, int minor, int release, int revision) const; | |
182 | ||
183 | ||
184 | // Gets global resources object or create one if none exists | |
185 | static wxXmlResource *Get(); | |
186 | // Sets global resources object and returns pointer to previous one (may be NULL). | |
187 | static wxXmlResource *Set(wxXmlResource *res); | |
188 | ||
189 | // Returns flags, which may be a bitlist of wxXRC_USE_LOCALE and wxXRC_NO_SUBCLASSING. | |
190 | int GetFlags(); | |
191 | ||
192 | // Set flags after construction. | |
193 | void SetFlags(int flags) { m_flags = flags; } | |
194 | ||
195 | }; | |
196 | ||
197 | //---------------------------------------------------------------------- | |
198 | ||
199 | %pythoncode { | |
200 | def XRCID(str_id): | |
dd9f7fea | 201 | return XmlResource_GetXRCID(str_id) |
d14a1e28 RD |
202 | |
203 | def XRCCTRL(window, str_id, *ignoreargs): | |
204 | return window.FindWindowById(XRCID(str_id)) | |
205 | }; | |
206 | ||
207 | //--------------------------------------------------------------------------- |