]> git.saurik.com Git - wxWidgets.git/blob - wxPython/wx/tools/XRCed/CHANGES.txt
wcslen and wcscmp replacements for systems that lack them, such as djgpp
[wxWidgets.git] / wxPython / wx / tools / XRCed / CHANGES.txt
1 0.1.6-4
2 -------
3
4 Fixed replacing op for sizer children and spacer objects.
5 UndoReplace is not yet implemented.
6
7 0.1.6-3
8 -------
9
10 Fix for crash when opening new file with active tree selection.
11 Replacing controls bug fixed.
12
13 0.1.6-2
14 -------
15
16 wxMSW wxTreeCtrl behaviour is still different from wxGTK for
17 wxTR_MULTIPLE, some fixes for this.
18
19 0.1.6-1
20 -------
21
22 New (experimental ;) ) feature: support for "object_ref" tag, for
23 creating references to named objects (see tn0014.txt). "reference..."
24 menu command creates new object_ref node. Properties of the top-level
25 object can be overriden, but overriding child controls is not working
26 as expected (maybe a bug in wx).
27
28 0.1.5-3
29 -------
30
31 xxxStdDialogButtonSizer pulldown menu with standard buttons.
32
33 Some fixes for selecting tools inside toolbar with test window open
34 (whole toolbar is selected).
35
36 Toolbars can be added inside windows.
37
38 0.1.5-2
39 -------
40
41 Using wx.GetDefaultPyEncoding/wx.SetDefaultPyEncoding for changing active encoding.
42
43 Fixed pasting siblings (Ctrl key pressed while pasting).
44
45 Dealed with ascii build (Python does not recognize 'ascii' as valid encoding).
46 If encoding is not specified it is not written in XRC. Will add more
47 customization in the future.
48
49 Changed to use SimpleTool instead or Toggle tool (does not work on Win32).
50
51 0.1.5-1
52 -------
53
54 Added wxWizard, wxWizardPageSimple (only from pull-down menu).
55
56 Hide command for test window.
57
58 Replacing classes works better.
59
60 Added Locate tool.
61
62 0.1.4-1
63 -------
64
65 Edit->Locate command (Ctrl-L) for quick selection of items.
66 Works with event-handling controls (buttons, text fields) but
67 not with labels/sizers.
68
69 Some improvements: relative paths for files supplied as command-
70 line argument work correctly, notebook panels are highlighted
71 better.
72
73 0.1.2-1
74 _______
75
76 Added support for wxGridBagSizer (supported in wxPython 2.5).
77
78 0.1.1-5
79 -------
80
81 Added subclass attribute.
82
83 0.1.1-4
84 -------
85
86 Fixed problems with wxStaticBitmap (stock_id attribute, icon type
87 switching).
88
89 Changed some dimensions in properties panel elements.
90
91 0.1.1-3
92 -------
93
94 Sizes of some controls were not normal on wxMSW. Fixed.
95
96 Some changes to test window code to make it resize better and to
97 have focus control with sawfish for all types of windows.
98
99 0.1.1-2
100 -------
101
102 Bugs with currentEncoding and frame testing fixed.
103
104 Some required parameters are set to default if missing.
105
106 Unsupported classes are tolerated, with warning message.
107
108 wxScrolledWindow added (to 'control' pulldown menu, not yet to the
109 tool palette).
110
111 Multi-line editing for labels and some values (wxTextCtrl,
112 wxHtmlWindow).
113
114 0.1.1-1
115 -------
116
117 Changed internationalization support. '-i' option removed, default
118 encoding is used (should be defined in sitecustomize.py, or 'ascii' by
119 default). When XRC file is opened with encoding specified,
120 translations are not used.
121
122 0.1.1
123 -----
124
125 Replace command added (not quite finished yet).
126
127 0.1.0
128 -----
129
130 Finally implemented tools panel for almost all controls (except
131 wxHtmlWindow, wxCalendarCtrl and wxGenericDirCtrl - they are too
132 rarely used).
133
134 Changed some sizes in panel to better work with different fonts.
135
136 Fixed double-refreshing after Ctrl+R.
137
138 Maybe something else that I've forgot. It's been a looong day... :)
139
140
141 0.0.9-6
142 -------
143
144 Added dialog unit support.
145
146 Dealing with non-specified required values (set to defaults, if exist).
147
148 Added 'minsize' parameter of sizeritem.
149
150 Added '-i' option to turn off translations and use international characters.
151
152 0.0.9-5
153 -------
154
155 Mac platform-specific checks.
156
157 0.0.9-4
158 -------
159
160 Implemented standard bitmap selection.
161
162 Fixed a bug in FlexGridSizer code.
163
164 0.0.9-3
165 -------
166
167 File browsing (for bitmaps/icons, etc.) had a small problem when current
168 file was not saved yet.
169
170 0.0.9-2
171 -------
172
173 Small bug fix for initial don't panic message.
174
175 0.0.9-1
176 -------
177
178 Changed program structure, reduced use of global variables (grouped in
179 module 'globals', which creates an instanse 'g' of class Globals.
180
181 First version of undo/redo working!
182
183 Support for toolbars inside panels and frames.
184
185 Added 'container' submenu for creating Panel, Notebook and ToolBar objects.
186
187 wxMSW-only: added code to switch focus back to main window when test
188 window is updated.
189
190 0.0.8-2
191 -------
192
193 Fixed unicode problem for unicode build.
194
195 0.0.8-1
196 -------
197
198 Using WX_2_4_BRANCH.
199
200 Added new controls: wxSpinCtrl, wxGenericDirCtrl, unknown (custom
201 control), improved wxXRC format suppor (menu styles, etc.).
202
203 Some I18N support: parsing "encoding" attribute in XML header, later
204 it can be modified in "properties" panel for "XML tree".
205
206 UNIX note: currently XML writing for non-ascii chars works only if
207 sys.getdefaultencoding() returns good value. To do this, one has to
208 put following lines to "sitecustomize.py" file:
209
210 # Start code segment
211 import sys
212 sys.setdefaultencoding('iso-8859-1') # or whatever
213 # End code segment
214
215 0.0.7
216 -----
217
218 Some command-line arguments.
219
220 "Test window" command and toolbar button.
221
222 New panel interphace (wxHTMLWindow is not used anymore).
223
224 Toggling between embedded and detached panel.
225
226 Cache for already used windows.
227
228 Current top-level control is bold, if test window shown.
229
230 Undo/redo broken.
231
232 CheckListBox does not work unless wxXRC source fixed (in both wxPytnon and
233 wxWin):
234
235 contrib/src/xrc/xmlrsall.cpp
236 45,46c45,46
237 < AddHandler(new wxListCtrlXmlHandler);
238 < #if CHECKLISTBOX
239 ---
240 > AddHandler(new wxListCtrlXmlHandler);
241 > #if wxUSE_CHECKLISTBOX
242
243 This is fixed in CVS.
244
245 0.0.6
246 -----
247
248 Toolbar, bitmap, icon support (no display yet).
249
250 Changed parameter objects, added support for multiple parameters (like
251 `growablecols').
252
253 Fixed double-clicking problem with tree control on Windows.
254
255 Some performance improovements.
256
257
258 0.0.5
259 -----
260
261 Added notebook with properties page and style page. Fixed some problems
262 on Windows.
263
264
265 0.0.4
266 -----
267
268 Some fixes suggested by RD
269
270
271 0.0.3
272 -----
273
274 Faster preview window refresh.
275
276 Cut/Paste works better.
277
278 Some tree icons.
279
280 Tree item names.
281
282 Bugfixes.
283
284
285 0.0.2
286 -----
287
288 The first release.
289