summaryrefslogtreecommitdiff
path: root/src/corelib
AgeCommit message (Collapse)Author
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-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-09Updated italian translation from Antoniograemeg
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-03Update the language include files. I forgot to do it with the previous commit.graemeg
2008-06-03Applied partial parts of patch [ 1979341 ] gui_editCombo from Jean-Marc.graemeg
* Updated the combobox demo.
2008-06-02* Patch from Vladimir for application icon under Windows.graemeg
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* TextFlagsDflt now contains txtEnabledgraemeg
* 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-23Applied 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 Utf8Copygraemeg
2008-05-23Minor 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-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
2008-05-09* Fixed bug where program crashed if MainMenu contains no items and you ↵graemeg
click on it. * Fixed bug where components can't be created and Visible = False.
2008-05-02* Made the DrawText functions signature more consistent.graemeg
2008-05-02* Applied DrawText patch to correct text alignment parameters.graemeg
2008-04-28* Button color fix.graemeg
2008-04-27* Fixed the issue with screen flicker in the TfpgForm.OnPaint event handler.graemeg
* Fixed the issue where you still had to call Canvas.BeginDraw and Canvas.EndDraw inside HandlePaint. * Fixed the issue where custom painting in the OnPaint event handler of a Form did not show until the form was resized or revealed.
2008-04-27Provisional changes for FPC 2.3.x supportgraemeg
2008-04-27fpgApplication is now derived from TComponent again. This time I managed to ↵graemeg
fix the memory leaks, so all is good.
2008-04-27minor spelling mistake in code comments.graemeg
2008-04-25Fixed Index-out-of-bounds error in File Dialog under Windows.graemeg
2008-04-25* Fixed a bug introduced in r719 with toggle buttons.graemeg
2008-04-25* fixed a minor compiler error for Windows.graemeg
2008-04-24* TfpgApplicationBase now descends from TObject instead of TComponent.graemeg
* TfpgApplication now has a FormCount property. * TfpgApplication now has a Forms array property. * TfpgApplication.CreateForm now works correctly and NO memory leaks occur.
2008-04-24* Sanity check added in ImageList.graemeg
* Minor improvement to image index handling.
2008-04-23* Introduced TfpgApplication.Terminate methodgraemeg
* Introduced CloseAction in TfpgForm class and OnClose event. * Introduced a new CloseQuery method and OnCloseQuery event for TfpgForm. * TfpgForm.Hide actually freed the form. Now it only hides or make the form invisible.
2008-04-22* few minor updates for translation support.graemeg
2008-04-22* Thanks to Jörg Braun for the new German translation.graemeg
2008-04-15* Implemented ActiveWindow method.graemeg
2008-04-11* Applied patches 1936023 and 1936029. New Canvas.DrawText methods with text ↵graemeg
wrapping and alignment. Label has been updated to use the new DrawText methods. gui_panel had a major overhaul. Patches supplied by Jean-Marc.
2008-04-11* Implemented OnClose event for TfpgPopupWindowgraemeg
* Implemented OnDropDown and OnCloseUp for any combobox type component. * TfpgCombobox.FocusItem can now be set via code without the OnChange event firing (default). This behaviour can be modified with the TfpgComboBox.Options property.
2008-04-11* Fixed a bug where exceptions were silently handled without notification. ↵graemeg
This was in the messagequeue code. * Implemented a default application wide exception handler. Applications will not simply crash and quit. * Added TfpgApplication.HandleException * Added TfpgApplication.OnException event developers can hook into * Added TfpgApplication.ShowException - the default exception handler. * Added TfpgApplication.StopOnException - should the application quit or not when an unhandled exception occurres.
2008-04-09* Added a user defined Message Record type for any custom data.graemeg
2008-04-07no commentgraemeg
2008-04-03* Minor fix in the MessageDialogsgraemeg
* Debugging INI support for tiOPF. * Instructions on how to compile fpGUI with the Free Pascal Text IDE.
2008-04-02* Applied patch from Vladimir removing all IFDEFs from gui_grid.graemeg
* Fixed compiler error under Linux. * Fixed painting of shortcut / symlink symbol overlay.
2008-04-02* Applied patch (#1930945) from Jean-Marc which introduces a new component ↵graemeg
in gui_panel. * Added the gui_panel demo to the examples directory. * Applied a minor painting fix to the Panel groupbox style. * Extended the gui_panel demo to show the Raised and Lowered look.
2008-03-31* Applied a ClearType / Anti-aliasing fix for GDI. Created by Vladimir.graemeg
2008-03-28* Fixed a spelling mistake in a TFileEntry class property name.graemeg