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