summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2009-06-23Unset cursor/caret fix in TfpgMemo.David Emerson
2009-06-23Fix overlapping text in RadioButton and CheckBoxGraeme Geldenhuys
* If BoxLayout = right, then the text caption could paint over the radio or check images. This is now fixed.
2009-06-23Fixed the image position regarding focus rectangleGraeme Geldenhuys
* Checkbox and RadioButton images overlap the focus rectangle when BoxLayout is right aligned.
2009-06-23New property BoxLayout for checkbox and radiobutton.Jean-Marc
2009-06-15Merge branch 'master' of ssh://graemeg@fpgui.git.sourceforge.net/gitroot/fpguiGraeme Geldenhuys
2009-06-15Fixed InvertCaret exception.David Emerson
2009-06-15Improved Debugln() formatting.Graeme Geldenhuys
2009-06-12Added code-folding regions in the uidesigner project form files.Graeme Geldenhuys
2009-06-11textedit project cleanupGraeme Geldenhuys
* removed unnecessary progress bars from demo * removed unused threading support from demo
2009-06-11minor changes to support archiving features. Still work-in-progress.Graeme Geldenhuys
2009-06-09code folding support added to Lazarus IDE add-on and code templates.Graeme Geldenhuys
2009-06-09UIDesigner copyright and code foldingGraeme Geldenhuys
* updated all copyright notices in UI Designer code. * New Forms now only have the fpg_forms unit in uses clause. This help with smartlinking and reduces executable size. * New Forms now include the code folding region around auto-generated GUI code from UI Designer. This feature works in newer Lazarus revisions, but will not affect older versions.
2009-06-08DebugLn() improvementsGraeme Geldenhuys
* Moved DebugLn() implementations from fpg_pofiles to fpg_main * DebugLn() should now work even on Windows GUI applications without throwing IO errors. * Implemented 3 new UTF-8 file methods in fpg_utils.