Changes for Perl extension FBP-Perl
0.38 Tue 17 May 2011
- Added support for Wx::RadioBox
- Generalised the generation of style constants a bit more
- Generalised the setting of ->SetSelection
0.37 Thu 10 May 2011
- Bump FBP dependency to 0.27 to get ->hidden support
- Added support for setting ->Hide on hidden things
- Broke the generation of things like SetFont into smaller method
to allow granular overriding of the code generated for them
0.36 Thu 5 May 2011
- $self->SetSizeHints( ... ) can only be used when we also use
$sizer->SetSizeHints($self) or X11 hangs nastily.
0.35 Tue 3 May 2011
- The ->Disable logic was only being applied to buttons, now it is
applied uniformly across all window types
0.34 Tue 3 May 2011
- Added support for FBP::FilePickerCtrl OnFileChanged events
0.33 Tue 3 May 2011
- Bump FBP dependency to 0.26 for minimum_size and maximum_size
- Added size method for generating size literals
- Added support for dialog sizer hints via ->SetSizeHints
- Added support for window sizer hints ->SetMinSize and ->SetMaxSize
- Don't call ->Fit on anything with an explicit pixel size
- Handle explicit -1,-1 in size-related FBP attributes
0.32 Fri 8 Apr 2011
- Added missing OnColourChanged and OnFontChanged event bindings for
the colour and font picker controls.
0.31 Fri 8 Apr 2011
- Allow multiple controls to fire the same event handler, while still
preventing clashes between accessors and event handler methods.
0.30 Thu 31 Mar 2011
- Abstracting out the generation of accessor methods and event stubs
0.29 Thu 31 Mar 2011
- Incorrect capitalisation of SetToolTip
0.28 Thu 31 Mar 2011
- Adding support for tooltips
0.27 Thu 31 Mar 2011
- Bump FBP dependency to 0.24 for FBP::Window::font
- Adding support for custom fonts
0.26 Tue 29 Mar 2011
- Bump FBP dependency to 0.23 for FBP::CustomControl support
- Added support for pure custom controls
0.25 Mon 21 Mar 2011
- Bump FBP dependency to 0.22 for FBP::Window::header support
- Added support for Wx::Treebook (via Wx::Listbook subclass)
- Differentiate between use of a subclass and the FBP::Window::header
method for the constructor vs what to "use" when loading modules.
0.24 Wed 16 Mar 2011
- Minor whitespace tweaks so a bit less tidying is required
0.23 Wed 16 Mar 2011
- Use a more compact and descriptive event handler stub
0.22 Wed 16 Mar 2011
- Wx::ColourPickerCtrl segfaults if not provided with a colour,
contrary to the documentation. Default to an explicit black.
0.21 Tue 15 Mar 2011
- Fixed crash attempting to generate packing code for empty panels
0.20 Tue 29 Feb 2011
- Added support for Wx::SpinCtrl
- Added support for Wx::ColourPickerCtrl
- Added support for Wx::FontPickerCtrl
- Added support for Wx::FilePickerCtrl
- Added support for Wx::DirPickerCtrl
- Added support for SetForegroundColour to Wx::Window
- Added support for SetBackgroundColour to Wx::Window
- Added support for SetSashSize to Wx::SplitterWindow
- Added support for SetSashGravity to Wx::SplitterWindow
0.19 Mon 28 Feb 2011
- wxChoice objects now ->SetSelection properly
- Added support for Wx::SplitterEvent events
0.18 Mon 28 Feb 2011
- Dynamically select the Wx parent object so that objects nest
properly and sizers position things properly.
0.17 Mon 28 Feb 2011
- Improved sizer generation code to support arbitrary nesting
of both sizer and non-sizer parent objects.
- Add support for Wx::Listbook
- Add support for Wx::Panel
- Add support for Wx::SplitterWindow
- Top level dialogs now support all sizers
0.16 Mon 24 Jan 2011
- Updating copyright year
- Move version generation into dialog_version so it can be
overloaded in the Padre wxFormBuilder plugin
0.15 Thu 29 Sep 2010
- Added a dedicated nested indent method
- Added support for choice lists in Wx::Choice, Wx::ComboBox and
Wx::ListBox.
- When using custom control classes, don't "use" the relevant
custom class more than once.
0.14 Wed 29 Sep 2010
- Add support for custom Wx subclasses for Wx::Window widgets
0.13 Sun 1 Aug 2010
- Add $sizer->SetSizeHints($self) when wxRESIZE_BORDER is enabled.
- Add support for growable rows and columns to Wx::FlexGridSizer.
- Fix to use dialog title instead of non-existance "label"
- Use Data::Dumper's qquote for object_label
- Better testing of quote escaping
0.12 Sun 1 Aug 2010
- Corrected the generated code for Wx::StaticBoxSizer
0.11 Sat 31 Jul 2010
- Add support for Wx::TextCtrl
- Add support for Wx::FlexGridSizer
- Add support for Wx::StaticBoxSizer
0.10 Mon 12 Jul 2010
- Add support for Wx::GridSizer
0.09 Tue 13 Jul 2010
- Setting 'permission' to 'public' will now create an accessor method
to allow the control to be accessed directly (ADAMK)
0.08 Mon 12 Jul 2010
- The wxFormBuilder "permission" setting (originally intended for
controlling the C++ generation) is now used to control the
lexicality of the control variables (ADAMK)
0.07 Thu 8 Jul 2010
- Reorganise event code to allow binding large quantities of them
- Add support for Wx::CheckBox
- Add support for about 50 different event bindings
- Event handling method stubs are now sorted
0.06 Thu 8 Jul 2010
- Add support for Wx::Window::window_style
- Don't add a style param at all, rather than use zero
0.05 Thu 8 Jul 2010
- Add support for Wx::HtmlWindow
0.04 Thu 8 Jul 2010
- Add support for Wx::ListBox
- Add support for Wx::ListCtrl
0.03 Wed 7 Jul 2010
- Avoid AddSpacer for the more-specific Add
- Changed the sizer to dialog binding code to the same as is
generated in the C++ output from wxFormBuilder
0.02 Sat 3 Jul 2010
- Adding support for spacers within BoxSizers
- Adding support for wxChoice
- Moving to a more example-driven testing style
- Adding test cases for wxChoice and wxComboBox
0.01 25 Jun 2010
- Creating initial release