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