summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-10-26fpg_tree: replaced all debugging writeln() statements with SendDebug() callsGraeme Geldenhuys
We can now use the fpGUI's Debug Server to monitor any debug events.
2011-10-26improved the wording of the authors file.Graeme Geldenhuys
2011-10-26TfpImageList.Items[] property is now set as the default property for the class.Graeme Geldenhuys
2011-10-25minor code syntax fix. Missing semicolon.Graeme Geldenhuys
2011-10-25pdf report: fixed memory leak. Font was not freed.Graeme Geldenhuys
2011-10-25pdf reports: fixed some memory leaksJean-Marc Levecque
2011-10-25pdf reports: Simplified code by combining calls into a single call.Jean-Marc Levecque
2011-10-16Various PDF reporting changes.Jean-Marc Levecque
- Fixed some memory leaks by correctly freeing objects - Updated the PDF Demo to use a local reporting variable - Removed the global Imprime variable - Some various other changes
2011-10-12pdf report: print preview form now gets given a T_Imprime instanceGraeme Geldenhuys
We don't access the global variable Imprime any more, instead we referenec the instance that was passed in via the constructor. This removes the cross-unit dependencies which are not a good design.
2011-10-12pdf report: print preview page now appears 10px below the controls bevel.Graeme Geldenhuys
2011-10-12pdf reporting: moved the PPI constant to implementation sectionGraeme Geldenhuys
2011-10-12fpGUI is spelled with a lowercase prefix.Graeme Geldenhuys
2011-09-21fixed bug where combobox hint closes the dropdown window.Graeme Geldenhuys
2011-09-21PromputUserDialog: changes so descendants have better access to certain data.Graeme Geldenhuys
- We can new set an initial UserID too. - Moved two TfpgEdit components to protected section.
2011-09-21docs: SelectFileDialog() documentation added.Graeme Geldenhuys
2011-09-21removed old documentation script we don't use any more.Graeme Geldenhuys
2011-09-21SelectFileDialog() can now specify the initial directory too.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-16uidesigner: new option to specify Indentation Style preference.Graeme Geldenhuys
The developer can now choose between a Spaces or Tab indentation style for any UI Designer managed code.
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-09-13x11: implemented window grouping support used by some X11 window managers.Graeme Geldenhuys
2011-09-13new utility function to get the current executable nameGraeme Geldenhuys
2011-09-07Changed the password char from asterisk to unicode black circleGraeme Geldenhuys
2011-09-02Corrected the timing when AfterCreate is called in TfpgFrameGraeme Geldenhuys
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-31add sharing options when opening po files.Graeme Geldenhuys
This doesn't have any affect under Linux, but it might under Windows.
2011-08-31pofile unit now uses the UTF-8 safe file functions.Graeme Geldenhuys
2011-08-31updates KeycodeToText() to use the new resource string constants.Graeme Geldenhuys
2011-08-31ide: replaced all menu key shortcut caps with resource string constants.Graeme Geldenhuys
2011-08-31adds resource string constants for menu key shortcuts.Graeme Geldenhuys
- also updated the translation include files. ready for translation.
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.