summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-09-28ColorWheel: Notify RTTI of defaut values in published properties.Graeme Geldenhuys
2009-09-28Merge branch 'master' of ssh://fpgui.git.sourceforge.net/gitroot/fpgui/fpguiGraeme Geldenhuys
2009-09-27Adds a very basic colorwheel demo project.Graeme Geldenhuys
2009-09-27Class documentation for ColorWheel, ValueBar and color mapping units.Graeme Geldenhuys
2009-09-27Update GUI documentation build script to include two new units.Graeme Geldenhuys
2009-09-27blank template API documentation for colorwheel and colormapping units.Graeme Geldenhuys
2009-09-27Add colorwheel and colormapping units to fpgui_toolkit.lpk package.Graeme Geldenhuys
2009-09-27ColorWheel and ValueBar implementation including color mapping routines.Graeme Geldenhuys
These components will allow us to implement a color selection dialog.
2009-08-27Fix default size of tiShowString() form.Graeme Geldenhuys
Signed-off-by: Graeme Geldenhuys <graeme@mastermaths.co.za>
2009-08-27Fix the calculated last column width in StringGrid Mediator.Graeme Geldenhuys
Signed-off-by: Graeme Geldenhuys <graeme@mastermaths.co.za>
2009-08-27Fix 64bit compiler errorsGraeme Geldenhuys
2009-08-04TextEdit: minor code formatting improvementsGraeme Geldenhuys
Signed-off-by: Graeme Geldenhuys <graemeg@gmail.com>
2009-08-04TextEdit: reduced processing of up arrow key navigationGraeme Geldenhuys
Changed all the if statements to if..else statements. Also improved the Ctrl+UpArrow behaviour. Signed-off-by: Graeme Geldenhuys <graemeg@gmail.com>
2009-08-04TextEdit: implement down arrow navigation supportGraeme Geldenhuys
Signed-off-by: Graeme Geldenhuys <graemeg@gmail.com>
2009-08-02Merge branch 'work'Graeme Geldenhuys
2009-08-02Implements Up Arrow key navigation in TextEdit component.Graeme Geldenhuys
Signed-off-by: Graeme Geldenhuys <graemeg@gmail.com>
2009-08-02Fix Ctrl+RightArrow skipping a lineGraeme Geldenhuys
When you Ctrl+RightArrow to jump words, when it reached the end of a line, it skipped a line and actually jumped two lines down. Also when the caret landed in the new line it was at position 1 of the line and not at the true beginning of the line position 0. Signed-off-by: Graeme Geldenhuys <graemeg@gmail.com>
2009-08-02Code cleanup in KeyboardCaretNav method.Graeme Geldenhuys
Removed all unused code from method. Signed-off-by: Graeme Geldenhuys <graemeg@gmail.com>
2009-08-02Fix compiler settings so project compiles from Lazarus IDE.Graeme Geldenhuys
Signed-off-by: Graeme Geldenhuys <graemeg@gmail.com>
2009-08-02Fix compiler hint - unused unit in uses clauseGraeme Geldenhuys
Signed-off-by: Graeme Geldenhuys <graemeg@gmail.com>
2009-08-02Right key navigation support added to TfpgTextEdit.Graeme Geldenhuys
Left and Right navigation works in TextEdit component. Ctrl+[Left|Right] navigation for word jumping also works. Signed-off-by: Graeme Geldenhuys <graemeg@gmail.com>
2009-08-02minor code comments for textedit component.Graeme Geldenhuys
Signed-off-by: Graeme Geldenhuys <graemeg@gmail.com>
2009-08-02minor unit path fix in extrafpc.cfg fileGraeme Geldenhuys
Signed-off-by: Graeme Geldenhuys <graemeg@gmail.com>
2009-07-30Fix bug for SpinEditFloat MinValue settingjean-marc
Signed-off-by: Graeme Geldenhuys <graeme@mastermaths.co.za>
2009-07-28Add and remove todo list items.Graeme Geldenhuys
2009-07-28Add new method InsertAtCursorPos() to TfpgBaseEditGraeme Geldenhuys
This allows you to insert text at the current cursor location. This just makes it easier for the user and reused the DoPaste which was initially for Clipboard support. The is work towards the Character Map support in TfpgEdit popup menu. Signed-off-by: Graeme Geldenhuys <graeme@mastermaths.co.za>
2009-07-28Add copyright information in dialog include filesGraeme Geldenhuys
Signed-off-by: Graeme Geldenhuys <graeme@mastermaths.co.za>
2009-07-28Adds a new Character Map dialog to fpGUIGraeme Geldenhuys
This forms part of the fpg_dialogs.pas unit. There is aslo a easy access method called fpgShowCharMap and returns the text selected by the user. Signed-off-by: Graeme Geldenhuys <graeme@mastermaths.co.za>
2009-07-28Minor code formattingGraeme Geldenhuys
Signed-off-by: Graeme Geldenhuys <graeme@mastermaths.co.za>
2009-07-14Add new todo items so I don't forget themGraeme Geldenhuys
2009-07-09UIDesigner: text alignment improvement in version labelGraeme Geldenhuys
2009-07-09UIDesigner: minor code formatting & cleanupGraeme Geldenhuys
2009-07-09UIDesigner: Replace BlockRead() with TFileStream in LoadFile() methodGraeme Geldenhuys
2009-07-09UIDesigner: Improve the method and field visibility in class declaration.Graeme Geldenhuys
2009-07-09UIDesigner: Form parser method visibility changesGraeme Geldenhuys
- Moved some methods from public to private - commented code that is not used anymore - updated the unit description.
2009-07-06StringGrid RowCount update bug fixGraeme Geldenhuys
- When RowCount was changed it refreshed the grid to much. - BeginUpdate / EndUpdate did not always update scrollbar position.
2009-07-02Fix compilation bug with fpc 2.3.1 - field orderMicheal Fyffe
- fpc 2.3.1 Error: Fields cannot appear after a method or property definition Signed-off-by: Graeme Geldenhuys <graeme@mastermaths.co.za>
2009-06-30Updated tiMediators to use SetObjectUpdateMomement to set event handlersGraeme Geldenhuys
2009-06-30Removed compiler warnings from tiopf demo 21.Graeme Geldenhuys
2009-06-26Updated translations with True/False constantsGraeme Geldenhuys
- Added new resource strings for True/False - Translated new resouce strings for all languages - On application initialization the RTL true/false strings are set according to the current active translation so BoolToStr() method will be localized.
2009-06-26Updated some readme files.Graeme Geldenhuys
2009-06-25Merge branch 'master' into workGraeme Geldenhuys
2009-06-25Stringgrid column right margin issue fixedJean-Marc
2009-06-23Merge branch 'master' of ssh://graemeg@fpgui.git.sourceforge.net/gitroot/fpguiGraeme Geldenhuys
2009-06-23TextEdit: Implemented LoadFromFile and SaveToFile methods.Graeme Geldenhuys
2009-06-23TextEdit: minor code cleanup in TfpgGutter by using FOwner reference variableGraeme Geldenhuys
2009-06-23TextEdit: Mouse wheel support has been fully implemented.Graeme Geldenhuys
2009-06-23Minor project info file updates due to newer Lazarus IDE.Graeme Geldenhuys
2009-06-23TextEdit: Internal TfpgGutter now descends directly from TfpgWidget.Graeme Geldenhuys
2009-06-23Copyright and code formatting fix.Graeme Geldenhuys