summaryrefslogtreecommitdiff
path: root/src/gui
AgeCommit message (Collapse)Author
2008-10-07* Removed a memory leak from fpg_hint unit.graemeg
* Added an example 'customstyles' to show how a quick and easy style could be applied. Please not theming is not fully implemented in fpGUI, so this might change later.
2008-10-06* Implemented the speedup feature in SpinEdit.graemeg
* Added a few more bug fixes to SpinEdit unit.
2008-10-06Applied minor EditCombo patch from Jean-Marc.graemeg
2008-10-06* Applied Jean-Marc's calendar patch adding start week day etc.graemeg
2008-10-05* Added a new Canvas.DrawPolygon() methodgraemeg
* Added a new unit fpg_extgraphics.pas with extensive shape drawing methods * Added a new conversion method called fpgRectToRect() * Replaced the implementation of TfpgStyle.DrawDirectionArrow to use the new fpg_extgraphics.PaintTriangle() method instead. * Adjusted ComboBox painting of internal button to accomodate the new fpg_extgraphics unit. * Added Jean-Marc's new fpg_spinedit unit. * Made some further improvements and minor fixes to the SpinEdit and SpinEditFloat components. * renamed the fpdoc file fpgfx.xml to fpg_main.xml as per the new unit names.
2008-10-03* Added Jean-Marc initial implementation of SpinEdit component.graemeg
* I made some changes and minor bug fixes to the SpinEdit and highlighted some todo items in the header of the unit.
2008-10-02* Added a conditional define for the BlueCurve 3d look in Listbox.graemeg
2008-09-29* A minor fix in ShowModal handling if an error occurs while showing - the ↵graemeg
user input could be blocked.
2008-09-27* Phase 2 of the unit rename is complete. The gui units have now been renamed.graemeg
* UI Designer has been updated to reflect the new gui unit names.
2008-09-27* Rename all corelib units to the new naming convention.graemeg
* Updated the UI Designer to use the new unit names.
2008-09-25* Added a TArrowDirection type and Canvas.DrawArrow now uses that type ↵graemeg
instead of standard integers.
2008-09-24* Fixed 3 memory leaks in the Hint Windows units.graemeg
2008-09-23(no commit message)graemeg
2008-09-23Minor improvement to the Font Select dialog. It now remembers your custom ↵graemeg
sample text between font attribute changes.
2008-09-19* Removed old deprecated lazarus packagesgraemeg
2008-09-16* property change for fpgui_toolkit package.graemeg
* Added some inline documentation for TfpgButton. Later this will move to fpdoc documentation.
2008-09-15* Added experimental PopupMenu poperty to TfpgMemo.graemeg
2008-09-15* Minor patch added extra checks.graemeg
2008-09-10* Published ShowHint and ParentShowHint for all gui components.graemeg
* UI Designer: Updated the designer to support ShowHint and ParentShowHint properties. * Updated the ShowHint property in TfpgWidget to use the stored property specifier.
2008-09-09* Moved the HintTimer form TfpgWidget to TfpgApplication. Everything still ↵graemeg
seems fine, but it needs testing.
2008-09-09* Fixed a bug in TfpgListView where it didn't paint the last column's content.graemeg
* Applied formating to tiListMediators * Removed the ListBox implementation in tiListMediators. It was totally wrong.
2008-09-08* TfpgBaseGrid's FocusCol and FocusRow now defaults to -1graemeg
2008-09-08* OnExit and OnEnter are now publish for TfpgMemo.graemeg
* Memo mediator now handles OnChange and OnExit events correctly. * tiOPF demo 21 now has a CountryList screen as well. Also fixed the Contact.Memo property usage.
2008-09-02* Added some hints to the UI Designer main form.graemeg
2008-09-02* Applied Jean-Marc's hint patch which moves hint functionality to ↵graemeg
TfpgWidget. Soon this will move to TfpgApplication. * Made a few of my own fixes to Jean-Marc's patch. * Removed a few compiler warnings.
2008-08-31* Renamed the Hint Shadow class te be inline with the naming convension of ↵graemeg
fpGUI.
2008-08-31* Renamed the hint window to TfpgHintWindowgraemeg
* Moved F_Hint variable to fpgApplication.HintWindow property. TfpgApplication now manages the life of HintWindow. * Moved DisplayHint (now called ActivateHint) and HideHint into TfpgApplication. * Introduced a new TfpgApplication.HintPause property that will managed the default delay before a help hint is displayed. Default is 1.5 seconds. * gui_edit unit has been updated to handle the new changes. * hintwindow example project has been updated to handle the new changes. * TfpgHintWindow class now manages the Shadow Window (lifetime, size and position). * The Hint Shadow class is now moved to the Implementation section so it's not accessible to the world, but only via the standard Hint Window class. * Introduced a HintWindowClass which is a global variable. It defaults to TfpgHintWindow, but allows the user to change it so a custom hint window can be used instead. * TfpgLabel.Text is now of type TfpgString
2008-08-31* Made some changes to the Hint Help under Windows. Microsoft strikesgraemeg
again with it's weird behaviour. Windows sends fake MouseMove messages when a windows is shown, hidden or moved. The backend had to filter out those fake messages. For more details on this see the following link. http://blogs.msdn.com/oldnewthing/archive/2003/10/01/55108.aspx
2008-08-29* Added missing gui_hint unit.graemeg
2008-08-29* Applied Jean-Marc's hint implementation.graemeg
* Made some improvements to the hint window handling by implementing a hint timer and more normal hint behaviour. Only in TfpgBaseEdit, but I'll abstract it higher up the hierarchy soon.
2008-08-25* published OnEnter and OnExit it TfpgComboBoxgraemeg
* published OnEnter and OnExit it TfpgEditComboBox * published OnEnter and OnExit it TfpgTrackBar * Changed GUIFieldName in TMediatorComboBoxView to 'Text' to fix bug in mediator observing text property. * Changed GUIFieldName in TMediatorItemComboBoxView to 'FocusItem' * Added a public visible RegisterFallBackMediators procedure which can be called by the developer as a fallback for generic mediator handling. * Implemented the missing SetupGUIandObject in TMediatorComboBoxView which now makes it work. * tiOPF mediator demo: removed debug output * tiOPF mediator demo: cleaned up the Model_View unit. This removed a huge amount of code. Awesome! * tiOPF mediator demo: cleaned up the frmMain unit. This removed plenty of code. I also fixed up the package requirements or the project.
2008-08-23* minor spelling mistakes.graemeg
2008-08-21* Minor StringGrid patch adding ColumnAlignment property. Thanks Michael van ↵graemeg
Canneyt.
2008-08-20* Applied minor fix from Jean-Marc for numeric edit.graemeg
2008-08-19* TfpgEdit.OnChange now fires when Edit.Text is set or when clipboard ↵graemeg
functions like Delete and Paste are used.
2008-08-13* minor patch for editcombo from Jean-Marcgraemeg
2008-08-01* Minor tweak in the color of the tabs.graemeg
2008-08-01* Minor patch from Jean-Marc for EditCombo.graemeg
2008-07-28* Updated File Dialog (file information panel) to use the TfpgPanel instead ↵graemeg
of a TfpgBevel with a TfpgLabel. One less component to maintain.
2008-07-25* Applied Vladimir's gui_dialog patch. Adding a helper function for file ↵graemeg
dialog usage. * I move HighlightFile from public to private in TfpgFileDialog class. It's a internal function. * Updated the filedialog example to show pre-highlighted files in the save dialog.
2008-07-23* Applied Jean-Marc's grid Options property patch.graemeg
* Fixed a minor grid text color issue introduced by a previous patch. * Updated the GridTest example project to show the new Options property at work.
2008-07-23* Applied Vladimir's DrawText patch. Nice work.graemeg
2008-07-21* Applied fpgui_mode.diff patch from Luiz Americo.graemeg
2008-07-21* Applied ComboBox cleanup patch from Luiz Americograemeg
2008-07-21* Minor scrollbar patch so Windows behaves the same as Linux. Patch by Vladimir.graemeg
2008-07-18* Minor fix in the CustomGrid SetRowCount and SetColumnCount methods. Even ↵graemeg
if those properties are set between BeginUpdate/EndUpdate calls.
2008-07-18* Removed unnecessary parameters from DoUpdateWindowPosition.graemeg
2008-07-17* Added extra safety in the Grid Scrollbar handling. * Replaced magic ↵graemeg
numbers with ModalResult constants.
2008-07-17* Applied Luiz Americo's resize patch with minor fixes.graemeg
* Fixed up the setting of FDirty. * Fixed up scrollbar handling in Grid and Listbox components.
2008-07-17* Small patch for EditCombo from Jean-Marc.graemeg