summaryrefslogtreecommitdiff
path: root/src/gui/gui_editcombo.pas
AgeCommit message (Collapse)Author
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-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-13* minor patch for editcombo from Jean-Marcgraemeg
2008-08-01* Minor patch from Jean-Marc for EditCombo.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-18* Removed unnecessary parameters from DoUpdateWindowPosition.graemeg
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
2008-07-14* Applied some of the various patch from Jean-Marc.graemeg
2008-07-09* Applied patch from Jean-Marc improving the EditoCombo component. Patch ↵graemeg
#1991299
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-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-10* Applied patch from Jean-Marc for editcombo component.graemeg
2008-06-03Applied partial parts of patch [ 1979341 ] gui_editCombo from Jean-Marc.graemeg
* Updated the combobox demo.
2008-06-02* Minor fix to paint the EditCombo's background correctly.graemeg
2008-05-27* Applied Vladimir's button flag patch.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-04-25* Updated some widgets to handle the Keypad Enter key as well.graemeg
* Updated the UI Designer so F11 works switching between Properties Editor and Form Designer. * Updated the UI Designer so that New Form and Size or Position dialog accepts values when Enter is pressed.
2008-04-21* EditCombo fixes by jean-marc.graemeg
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-03-31Applied a minor EditCombo patch from Jean-Marcgraemeg
2008-03-28* Many big changes which removes bucket loads of compiler warnins. These ↵graemeg
will probably break code, but they are easy to fix in your own code. * All Grid Columns and Rows are now Longword types and not Integer. We mixed them all over the place, even though the grids do not support negative rows or columns. * Fixed up the UI Designer because of previous change. Same goes for examples. * Made some changes to get fpGUI compilable under FPC 2.3.1 (latest trunk), but yet no fpGUI application runs yet. No idea why yet.
2008-03-25Applied patch from Jean-Marc to allow setting the editbox to be cleared, andgraemeg
the dropdown to close when return key has been pressed
2008-03-23* Implemented a basic Color ListBox component. It is still incomplete and ↵graemeg
has no published properties yet.
2008-03-16* I implement an improved positioning of dropdown window of Combobox and ↵graemeg
EditCombo when it runs out of screen space. It also handles resizing if the dropdown is bigger that the screen is high. * Started refactoring the ComboBox and EditComboBox. There was just to much code duplication. I am still busy with it, but please test and let me know if I broke something.
2008-03-16* Applied patch [1909573] from Jean-Marc making changes to EditCombo component.graemeg
2008-03-04* More more on the MiG Layout port.graemeg
* Added new resourcestring constants to the translation language files. * Localized all the GUI units.
2008-02-25* I believe I fixed the Button down state and Mouse Events issue. It now ↵graemeg
works under Linux. I still need to test under Windows. * Remove the unneeded .ReleaseMouse call in EditCombo unit. * Added new credit in the Authors text file * Fixed the tab order of the Wu Line example project.
2008-02-25* Scrolling the dropdown to the end, it doesn't display the last item. graemeg
Example: in a un-filtered list the name Yves doesn't get displayed. * The user couldn't select the last item in the dropdown list (filtered or not). Using the keyboard or mouse, selecting the last item didn't close the combobox and select the item. * InternalListBoxSelect() has some bugs. Items property is 0-based but FocusItem is 1-based.
2008-02-15* Applied Jean-Marc's TextColor and BackgroundColor patch.graemeg
* Made many more modifications based on Jean-Marc's patch and fixed a few things missed.
2008-02-12* Applied patch #1890188 from Jean-Marc regarding gui_editcombo.pasgraemeg
* Removed gui_editcombo.pas from fpgui_package because I'm getting ready for a new release and only want to include stable units. It will get added again after the release.
2008-02-09* Introduced to new types: TfpgChar and TfpgString.graemeg
* HandleKeyChar has it's first parameter set to TfpgChar. The start of full unicode text input support. At a later date other paramaters will start changing to the new types introduced.
2008-02-06* Added a new unit gui_editcombo. This is still undergraemeg
heavy development. * Rename IsWinXP to IsWinXPOrLater. Also improved the check to support Windows Vista. * SetFirstItem() is now moved to the public section in gui_listbox.pas unit. * Updated the contributors list.