Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-07-01 | * TfpgButton now contains a new property called Flat which gives it a flat ↵ | graemeg | |
look. As the mouse hovers over the button, it gets the normal look. This property overrides the Default property look. * UI Designer now has support for the Button.Flat property, but the flat behaviour has been disabled in the designer form to make buttons more visible compared to labels. | |||
2008-06-30 | * A quick implementation of the Vista Black button. | graemeg | |
* Minor code cleanup in GDI window title procedure. | |||
2008-06-29 | Applied path from Vladimir | graemeg | |
* GDI: Fullscreen support * Minor improvements to TfpgSplitter * GDI: System key combination (Alt-F4) support | |||
2008-06-29 | * GDI: Minor bug fix in Canvas.DoSetColor. It reset the LineStyle to lsSolid. | graemeg | |
2008-06-29 | * Improved the look of the Splitter components by showing a GrabBar and ↵ | graemeg | |
triangles for the snap direction. This makes it easier for the user to spot there is a Splitter. Maybe in the future the GrabBar can be toggled. | |||
2008-06-28 | * Forgot to add the actual gui_splitter unit. | graemeg | |
* Updated the fpgui_toolkit.lpk package for X11. | |||
2008-06-28 | * Committed Vladimir's Splitter component patch. | graemeg | |
2008-06-28 | * Fixed the dialog size issue reported by Jean-Marc. | graemeg | |
2008-06-27 | * Added a new all-in-one lazarus package for fpGUI. | graemeg | |
2008-06-27 | * A slight fix for X11 resizing forms with the mouse and alignment processing. | graemeg | |
2008-06-27 | * Introduced a new property to TfpgWidget, called IsContainer for all | graemeg | |
components that act like containers (Panel, Form, etc). This optimizes the Component Alignment calls. * All resizing calls now get routed through DoUpdateWindowPosition() so they have a more consistent execution path. * OnResize now get fired when components get resized, and not just for Forms. * HandleAlignments() is now only called when needed. * Fixed the bug where Alignment didn't work when components are resized at runtime. * Removed compiler warnings form gui_mru.pas unit. * Memo's scrollbar now gets adjusted correctly when it's text is modified via code. * Minor bug fix when deleting line in a Memo component. The 'Index out of Bounds' error still occurs though. That will be fixed shortly. | |||
2008-06-26 | * More code clean up. | graemeg | |
* Renamed some classes to have consistent naming convention. * Created some Base classes to create custom components from. | |||
2008-06-26 | * Refactored the TfpgButton class so it's easier to create custom button ↵ | graemeg | |
type classes. | |||
2008-06-24 | * Using Assign() to set Items of TfpgComboBox did not update the displayed text. | graemeg | |
* Added a new option to the TfpgBaseComboBox.Options called wo_AllowUserBlank. By default a user cannot use Up arrow to reset/blank the ComboBox to FocusItem = -1. You now have to add wo_AllowUserBlank in the Options to enable that. | |||
2008-06-24 | * Temporary workaround for TfpgForm under X11 fixing Alignment components. ↵ | graemeg | |
See comment in code for details. | |||
2008-06-23 | * TfpgListBox now handles the Resize message. This fixes the scrollbar issue ↵ | graemeg | |
in the UI Designer and at runtime resizing. * Implemented correct 'lazy refresh' in TfpgWidget when setting the size and position with .SetPostion() method. * Refactored the Combo components removing some code duplication. Some paint methods are now inthe BasicCombobox component. | |||
2008-06-19 | * Updated the Bevel example so it compiles again. * Updated the EventTest ↵ | graemeg | |
example. | |||
2008-06-19 | * Minor fix with mousewheel support in listbox components. | graemeg | |
2008-06-19 | * Restore button state if an exception occurs inside the Click event. | graemeg | |
2008-06-18 | * Finally fixed a Index out of bounds error in StringGrid. Thanks to David ↵ | graemeg | |
Emerson for finding the problem. | |||
2008-06-12 | * Minor fixes to csUpdating ComponentState in Grids. | graemeg | |
* fpgApplication now closes all forms created via fpgApplication.CreateForm() before the main form when the application terminates. * Minor documentation update for fpgfx.pas unit. | |||
2008-06-10 | * Applied patch from Jean-Marc for editcombo component. | graemeg | |
2008-06-09 | * Fixed the tiGUIIni read/write formstate information for tiOPF based ↵ | graemeg | |
applications. * Fixed the updating of rows in the StringGrid composite mediator (tiOPF) * Minor update to the message dialog include file. | |||
2008-06-09 | Updated italian translation from Antonio | graemeg | |
2008-06-04 | * Applied a patch from Luiz Americo which fixes some alignment issues inside ↵ | graemeg | |
TfpgPanel. * I implemented more alignment fixes for TfpgGroupBox and TfpgBevel. * I improved the painting of the focus rectangle it TfpgCheckBox and TfpgRadioButton. * UI Designer's Unknown widget can now act like a container component. | |||
2008-06-03 | Update the language include files. I forgot to do it with the previous commit. | graemeg | |
2008-06-03 | Applied partial parts of patch [ 1979341 ] gui_editCombo from Jean-Marc. | graemeg | |
* Updated the combobox demo. | |||
2008-06-03 | * Applied Jean-Marc's patch to gui_listbox fixing issues in editcombo. | graemeg | |
2008-06-02 | * Minor fix to paint the EditCombo's background correctly. | graemeg | |
2008-06-02 | * Patch from Vladimir for application icon under Windows. | graemeg | |
2008-05-30 | * Created a new bitmap animation component called TfpgImgAnim. | graemeg | |
* Created a Animation demo in the examples/gui/animation directory. | |||
2008-05-28 | * Fixed the bug when getting unhandled exceptions inside a Modal dialog, ↵ | graemeg | |
keyboard and mouse responces are blocked. | |||
2008-05-27 | * Applied Vladimir's patch so non-resizeable forms can be minimized under ↵ | graemeg | |
Windows. | |||
2008-05-27 | * Applied Vladimir's button flag patch. | graemeg | |
2008-05-26 | * Applied Vladimir's patch to reduce GDI Objects. | graemeg | |
2008-05-26 | * Edit and Panel's BorderStyle properties had conflicting names. | graemeg | |
2008-05-26 | * TfpgPanel and TfpgGroupBox now also use the txtEnabled text flag. | graemeg | |
* Updated the Panel example to show Enabled and Disabled states. | |||
2008-05-26 | * TextFlagsDflt now contains txtEnabled | graemeg | |
* DrawText now takes the txtEnabled flag into account. Before it always assumed Enabled = True. * gui_tab now uses Canvas.DrawText instead of Canvas.DrawString * gui_label now paints disabled text correctly. | |||
2008-05-23 | Applied patch from Vladimir. TfpgEdit now displays long text correctly on ↵ | graemeg | |
both platforms, regardless of smallint limits. | |||
2008-05-23 | * Added some sanity checks in TfpgFontBase.TextWidth and Utf8Copy | graemeg | |
2008-05-23 | Minor update in the List controls Demo of tiOPF and MGM. | graemeg | |
2008-05-22 | * Minor bugfix in gui_customgrid. | graemeg | |
* Minor bugfix in x11 backend and TextWidth calculation. | |||
2008-05-22 | * New OnResize event for TfpgWidget. | graemeg | |
* Minor bugfix in CreateEdit and width = 0. * Font is now a public property of TfpgEdit | |||
2008-05-22 | * applied workaround patch for Text Extent and TfpgEdit component. | graemeg | |
2008-05-19 | * Merged my private graemeg branch changes (r752:r781) into trunk. These ↵ | graemeg | |
changes are required to change all componens from 1-based indexing to 0-based indexing. | |||
2008-05-19 | * fpgGet[Red|Green|Blue] did not take into account named colors. | graemeg | |
2008-05-15 | * Applied patch from Luiz Americo optimising the ListView painting calls and ↵ | graemeg | |
events. | |||
2008-05-14 | * Applied Valdimir's patch to improve some functions in TfpgEdit. | graemeg | |
2008-05-13 | * Added a overloaded ShowAt() method so we do not have to pass in the first ↵ | graemeg | |
parameter as nil. | |||
2008-05-13 | * Popup window can now use screen coordinates as well in the ShowAt method. | graemeg | |