Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-02-22 | nanoedit: fixes the fpc config file to allow compiling from command line. | Graeme Geldenhuys | |
The unit seach path was wrong. | |||
2013-02-22 | fpg_edittext: Adds cut to clipboard support. | Graeme Geldenhuys | |
2013-02-22 | fpg_textedit: adds insert text and paste from clipboard support. | Graeme Geldenhuys | |
2013-02-21 | nanoedit - a mini notepad like text editor | Graeme Geldenhuys | |
I have been using this for some time now. I required a mini editor on non-Windows platforms, so created this project to solve that. This is also a testbed project for my "elastic tabstops" implementation. | |||
2013-01-03 | needed of values limits on integer edits. | Jean-Marc Levecque | |
2012-12-20 | Minor tweaks to demo: fixes alignment and size constraints | Graeme Geldenhuys | |
2012-11-22 | Fixes line ending issues | Graeme Geldenhuys | |
2012-10-26 | demo: Fixes memory leak in Splash Form demo | Graeme Geldenhuys | |
The splash form itself was never freed. | |||
2012-10-19 | textedit: Renamed private DoCopy and made it public as CopyToClipboard. | Graeme Geldenhuys | |
Now we can programatically copy selected text to the clipboard. | |||
2012-10-19 | textedit: Implemented the DoCopy method so now Ctrl+C copies selected text ↵ | Graeme Geldenhuys | |
to the clipboard. | |||
2012-10-19 | textedit: Newly implemented GetSelectedText function. | Graeme Geldenhuys | |
2012-10-19 | Minor changes caused by using a newer UIDesigner. | Graeme Geldenhuys | |
- new default properties - properties have been reordered etc.. | |||
2012-10-19 | Implements support to setup a custom color for the editor's active tab. | Graeme Geldenhuys | |
2012-10-19 | Refactored editor setup code into a single SetupEditorPreference method. | Graeme Geldenhuys | |
2012-08-29 | pdf demo: fixes a compiler hint about unuse uses clause under Windows. | Graeme Geldenhuys | |
2012-08-28 | pdf demo: removes lots of code duplication by moving some functionality into ↵ | Jean-Marc Levecque | |
the report unit. | |||
2012-08-28 | pdf demo: Temporary fixed a compiler warning about unused local variable. | Graeme Geldenhuys | |
2012-08-02 | Applies the fpGUI coding style to the PDF Reporting Demo. | Graeme Geldenhuys | |
2012-08-02 | Removes the unnecessary fpg_report.lpk package files. | Graeme Geldenhuys | |
* also updates the PDF Report demo project, removing the fpg_report.lpk dependency. | |||
2012-08-01 | Moves the PDF report engine & demo into the main source tree. | Graeme Geldenhuys | |
2012-07-17 | Adds a simple readme file to describe the purpose of the demo. | Graeme Geldenhuys | |
2012-07-06 | Fixed spelling mistake in readme file. | Graeme Geldenhuys | |
2012-04-20 | fpg_textedit: new published property RightEdge | Graeme Geldenhuys | |
2012-04-20 | Define default value for Backward parameter. | Graeme Geldenhuys | |
2012-04-04 | DND Example now sets AppType in code, not via compiler option. | Graeme Geldenhuys | |
2012-03-15 | wuline demo: removed all redundant BeginDraw..EndDraw calls. | Graeme Geldenhuys | |
2012-02-21 | edit demo: minor property changes caused by a newer UI Designer. | Graeme Geldenhuys | |
2012-02-21 | edit demo: use TfpgColor() instead of color constant. | Graeme Geldenhuys | |
This is simply a UI Designer friendly change. The UI Designer doesn't write parse color constants great. | |||
2012-02-21 | edit demo: Currency Edit's negative values was never set. | Graeme Geldenhuys | |
2012-01-18 | Fix a spelling mistake in the Globe demo. | Graeme Geldenhuys | |
2012-01-18 | ide: removed the duplicate button from the UI. | Graeme Geldenhuys | |
I have no idea how that got there. :-) | |||
2012-01-18 | Embedded Form demo now uses TfpgFrame, instead of TfpgBevel. | Graeme Geldenhuys | |
2011-12-05 | IDE: Adds last few new units to project files. | Graeme Geldenhuys | |
2011-12-05 | Adds compiler string type setting to unit. | Graeme Geldenhuys | |
2011-12-05 | missing compile mode setting and minor code formatting | Graeme Geldenhuys | |
- replaced tab characters with spaces for indentation - fixed indentation size at some locations. - added compiler mode and settings | |||
2011-11-21 | Fixed the parameter modifier of TfpgStyleManager.AssignStyleTypes() | Graeme Geldenhuys | |
We can now pass in the Lines property of a Memo or Combobox directly, without the need of an extra local TStrings variable. | |||
2011-10-26 | treeview demo: reworked this demo to show the StateImageList support | Graeme Geldenhuys | |
The demo adds some checkboxes to the treeview, and shows how you can query the treeview for any checked nodes. | |||
2011-10-25 | minor code syntax fix. Missing semicolon. | Graeme Geldenhuys | |
2011-09-20 | textedit: implemented support for deleting selected text. | Graeme Geldenhuys | |
2011-09-19 | textedit: only set Canvas properties when Selected Text is truely required. | Graeme Geldenhuys | |
2011-09-19 | textedit: bugfix where if we do a selection, lots of text go missing. | Graeme Geldenhuys | |
We simply forgot to set the Canvas.TextColor - reseting previous FSelection code. | |||
2011-09-19 | textedit: bug fix with the caretpos variable. X / Y typo. | Graeme Geldenhuys | |
2011-09-19 | textedit: second expression is not needed. | Graeme Geldenhuys | |
Because we already did that a few lines earlier. | |||
2011-09-18 | Implemented RemoveFile() in FileMonitor | Graeme Geldenhuys | |
2011-09-18 | made sure filemonitor class is thread-safe in itself. | Graeme Geldenhuys | |
2011-09-18 | Integrated TFileMonitor with the IDE. All open files are now monitored. | Graeme Geldenhuys | |
2011-09-18 | fixed memory leak in TFileMonitor class. | Graeme Geldenhuys | |
2011-09-13 | implemented a functioning file monitor class. | Graeme Geldenhuys | |
It can track files and detect size and date changes to the monitored files. It uses a sha1 to detect any changes. The SHA1 is probably overkill for now, but it is planned to use it in future when Path Monitoring is implemented too. | |||
2011-08-31 | ide: after a search, set the focus back to the editor widget. | Graeme Geldenhuys | |
2011-08-31 | ide: Only enable the Replace edit field if the Replace checkbox is checked. | Graeme Geldenhuys | |