summaryrefslogtreecommitdiff
path: root/src/gui/gui_listview.pas
AgeCommit message (Collapse)Author
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-01-26* Middle mouse button click was never detected.graemeg
* CaptureMouse and ReleaseMouse is now not used by default for the TfpgPopupWindow class. * Menu mouse behaviour improved * Fixed Combobox dropdown that did not react to mouse clicks. * Removed support for changing the focused item with the arrow keys. It's not standard behaviour.
2008-01-21* Fixed some memory leaks in TfpgComboBox.graemeg
* Fixed the destruction order of TfpgComboBox. * Introduced DoRemoveWindowLookup() in gfxbase.pas so that we can offload some of the responsibility from DoReleaseWindowHandle() * Add two new debug methods to help debug fpGUI and fpGUI based applications. They are PrintCallTrace() and PrintCallTraceDbgln(). * Fixed 'Index out of bounds' error when quiting your application. * I included lots of debug output in this revision, so I can test under Windows. As soon as I confirmed everything works, I'll remove the debug output again.
2007-11-28* Implemented a Command pattern interface.graemeg
* Added CommandHandler support to TfpgButton.
2007-10-10* Resizing widgets now take into account the MinWidth and MinHeightgraemeg
properties. In affect you now cannot resize components into the negative with the UI Designer. * UI Designer: On deleting a component from a form, resets the Object Inspector. * Fixed 'division by zero' errors for the ListView and Memo components when they get resized to smaller that 2x2 pixels in size.
2007-10-10* UI Designer: Added some published properties for the ListView component.graemeg
2007-10-10fixed listview to work in the designerdrewski207
2007-10-01* Implemented the Objects[ACol,ARow] property for the StringGrid.graemeg
* Implemented the StringGrid composite mediator for use with tiOPF.
2007-09-28* Added a new unit for tiOPF support. I've ported the ListViewgraemeg
composite mediator, but it still needs some testing. * Added a Clear method for the Listview Items and Columns.
2007-09-28* Implemented Pages[] property for TfpgPageControlgraemeg
* Fixed bug where PageControl.AppendTabSheet did not add the new TabSheet to the internal FPages list. * Removed many compiler hints and warnings from the TfpgListview component. * Removed compiler warning from the TfpgMRU component.
2007-09-26* Added copyright information in the GUI units.graemeg
2007-08-26* Removed some compiler warnings.graemeg
* Added some basic scripts and instructions on how to compile fpGUI from the Command Line and Lazarus IDE.
2007-08-17* Fixed a bug where the header was resized when it shoudn'tdrewski207
2007-08-17* Fixed a bug introduced in 312drewski207
* Fixed clicking past the right of a item
2007-08-17* Made header resizing more user-friendlydrewski207
2007-08-17* Finished implementing Listview Header resizingdrewski207
* Added OnSelectionChanged to listview * Some misc listview selection changes x
2007-08-09* moved FastDoubleBuffer to TfpgCanvasBasedrewski207
* implemented FastDoubleBuffer for gdi - not tested * start of listview resiazable headers
2007-08-09* Added a property to TfpgCanvasImpl(x11) FastDoubleBufferdrewski207
* Fixed painting of ListView Column * Misc Listview painting changes * Added OnColumnPaint to ListView The new property FastDoubleBuffer will probably be moved to TfpgCanvaseBase also perhaps this can be set with an application property since it doesn't free the backbuffer until the Canvas is freed which will result in some increase in memory usage. The listview can have double buffering disabled now and it won't flicker sonce the painting is done with no overlapping rects.
2007-08-08* fixed compilation for older versions of fpcdrewski207
* updated to comply with coding standards
2007-08-08* Replaced the use of TRect with TfpgRect in gui_scrollbargraemeg
* Minor code formatting changes in gui_scrollbar.pas * Fixed the painting of the little square in the bottom right corner of TfpgMemo and TfpgListView when both scrollbars are shown.
2007-08-08* Finally fixed all painting issues with rectangles and clipping.graemeg
* Reverted the methods back to using TfpgRect instead of TRect. TfpgRect has better support for Width and Heigh - required by many Canvas methods. * Implemented helper functions like InflateRect but support TfpgRect * Fixed all painting issues and rectangle sizes in all components. * Fixed up all examples and test projects to compile and work correctly. * Fixes some clip rectangle issues under Linux. TfpgRect was a big help. * Changed the method signatures of many Canvas methods to rather use x, y, width and height. This causes much less confusion and actually less coding in widgets.
2007-08-07* Most Keyhandling for listviewdrewski207
* Listview uses better colors for drawing * Better listview selection control * Minor changes to listview example
2007-08-06* Made the ScrollBars even more robustdrewski207
* Fixed ListView Scrollbar slider sizes * Vastly improved the speed of adding many items at a time to a ListView
2007-08-06* Added basic listviewdrewski207
* Added a test project for the listview widget * made the Scrollbar more robust * changed canvas.color and canvas.textcolor to be read/write A cool feature of a listview is to be able to share it's .Items property with other listviews so the list doesn't have to exits in memory. The test project uses that feature.