summaryrefslogtreecommitdiff
path: root/examples
AgeCommit message (Collapse)Author
2012-08-29pdf demo: fixes a compiler hint about unuse uses clause under Windows.Graeme Geldenhuys
2012-08-28pdf demo: removes lots of code duplication by moving some functionality into ↵Jean-Marc Levecque
the report unit.
2012-08-28pdf demo: Temporary fixed a compiler warning about unused local variable.Graeme Geldenhuys
2012-08-02Applies the fpGUI coding style to the PDF Reporting Demo.Graeme Geldenhuys
2012-08-02Removes the unnecessary fpg_report.lpk package files.Graeme Geldenhuys
* also updates the PDF Report demo project, removing the fpg_report.lpk dependency.
2012-08-01Moves the PDF report engine & demo into the main source tree.Graeme Geldenhuys
2012-07-17Adds a simple readme file to describe the purpose of the demo.Graeme Geldenhuys
2012-07-06Fixed spelling mistake in readme file.Graeme Geldenhuys
2012-04-20fpg_textedit: new published property RightEdgeGraeme Geldenhuys
2012-04-20Define default value for Backward parameter.Graeme Geldenhuys
2012-04-04DND Example now sets AppType in code, not via compiler option.Graeme Geldenhuys
2012-03-15wuline demo: removed all redundant BeginDraw..EndDraw calls.Graeme Geldenhuys
2012-02-21edit demo: minor property changes caused by a newer UI Designer.Graeme Geldenhuys
2012-02-21edit 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-21edit demo: Currency Edit's negative values was never set.Graeme Geldenhuys
2012-01-18Fix a spelling mistake in the Globe demo.Graeme Geldenhuys
2012-01-18ide: removed the duplicate button from the UI.Graeme Geldenhuys
I have no idea how that got there. :-)
2012-01-18Embedded Form demo now uses TfpgFrame, instead of TfpgBevel.Graeme Geldenhuys
2011-12-05IDE: Adds last few new units to project files.Graeme Geldenhuys
2011-12-05Adds compiler string type setting to unit.Graeme Geldenhuys
2011-12-05missing compile mode setting and minor code formattingGraeme Geldenhuys
- replaced tab characters with spaces for indentation - fixed indentation size at some locations. - added compiler mode and settings
2011-11-21Fixed 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-26treeview demo: reworked this demo to show the StateImageList supportGraeme Geldenhuys
The demo adds some checkboxes to the treeview, and shows how you can query the treeview for any checked nodes.
2011-10-25minor code syntax fix. Missing semicolon.Graeme Geldenhuys
2011-09-20textedit: implemented support for deleting selected text.Graeme Geldenhuys
2011-09-19textedit: only set Canvas properties when Selected Text is truely required.Graeme Geldenhuys
2011-09-19textedit: 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-19textedit: bug fix with the caretpos variable. X / Y typo.Graeme Geldenhuys
2011-09-19textedit: second expression is not needed.Graeme Geldenhuys
Because we already did that a few lines earlier.
2011-09-18Implemented RemoveFile() in FileMonitorGraeme Geldenhuys
2011-09-18made sure filemonitor class is thread-safe in itself.Graeme Geldenhuys
2011-09-18Integrated TFileMonitor with the IDE. All open files are now monitored.Graeme Geldenhuys
2011-09-18fixed memory leak in TFileMonitor class.Graeme Geldenhuys
2011-09-13implemented 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-31ide: after a search, set the focus back to the editor widget.Graeme Geldenhuys
2011-08-31ide: Only enable the Replace edit field if the Replace checkbox is checked.Graeme Geldenhuys
2011-08-31textedit: correctly scroll the found text into view.Graeme Geldenhuys
2011-08-31ide: replaced all menu key shortcut caps with resource string constants.Graeme Geldenhuys
2011-08-31textedit: searched matches are now scrolled more into the center of visible textGraeme Geldenhuys
Before the searched results scrolled into view as the first visible line. This doesn't give the developer much context to work with.
2011-08-31ide: Find functionality now takes into account FindOptions and Backward ↵Graeme Geldenhuys
searching.
2011-08-31ide: named two checkboxes in the Find dialog.Graeme Geldenhuys
2011-08-30ide: hooked up the Find dialog to the menus to allow use to do searching.Graeme Geldenhuys
2011-08-30ide: added the new Find dialog to the various project files.Graeme Geldenhuys
2011-08-30ide: created a basic Find dialog.Graeme Geldenhuys
2011-08-30textedit: Implemented FindText() so we can finally do searching.Graeme Geldenhuys
2011-08-30textedit: ScrollTo() never updated the scrollbar positionsGraeme Geldenhuys
2011-08-29textedit: improved text selection via keyboard supportGraeme Geldenhuys
2011-08-29textedit: minor optimization in FormatLine().Graeme Geldenhuys
If there is no text in the line, no need to process it further.
2011-08-29textedit: implemented keyDelete handling.Graeme Geldenhuys
2011-08-29textedit: correctly set consumed variable and only redraw when needed.Graeme Geldenhuys