summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-04-09Merge branch 'release-1.4'Graeme Geldenhuys
2015-04-08docs: more release process notesGraeme Geldenhuys
2015-04-06Revert "Minor optimisation to CanvasBase.SetFont()"Graeme Geldenhuys
This reverts commit 58fbaf95ad23b3b3393d172cbee6cc0eea5611d9.
2015-04-04Crap! TRGBTripple conflicts with the Windows unit from FPC.Graeme Geldenhuys
So we have to specify the fpg_base unit so the compiler knows which structure we are refering to.
2015-04-04release process docs updateGraeme Geldenhuys
2015-04-04docs: For HTML output we only want Public or Published documentation.Graeme Geldenhuys
Just like we do for the INF help.
2015-04-04Fixes time formatting constants for FormateDateTime() call.Graeme Geldenhuys
2015-04-04Russion language file updateGraeme Geldenhuys
2015-04-04Regenerated *.po files for localizationGraeme Geldenhuys
2015-04-02ats: add missing compiler mode and AnsiString directive to unit.Graeme Geldenhuys
Thanks to Echi for reporting this.
2015-04-02ats: readme file updateGraeme Geldenhuys
2015-04-02ats: Added a Test Usage form to show how resource ID values are retrieved.Graeme Geldenhuys
2015-04-02ats: various improvements to the editor formGraeme Geldenhuys
- code reformatting - tidying up a bit - A new Actions menu - keyboard shortcuts for the editing functions - Implemented "New Row" functionality
2015-04-02ats: Updated project file settings so unit output directory is auto createdGraeme Geldenhuys
2015-04-02ats: Made the AddRow() function publicly visibleGraeme Geldenhuys
2015-04-02ats: standardised the name of the event handlerGraeme Geldenhuys
2015-04-02ats: published FocusCol and FocusRow properties for the LangGrid componentGraeme Geldenhuys
2015-03-29docs: new help for TfpgApplicationBase.MainForm and CreateForm()Graeme Geldenhuys
2015-03-29docs: specify our own CSS file when we generate HTML outputGraeme Geldenhuys
2015-03-18documentation for newly added methods in fpgApplicationGraeme Geldenhuys
2015-03-18Two new form helper functions added to fpgApplicationGraeme Geldenhuys
- GetFormByClassName() - GetFormByName()
2015-03-10Removes obsolete fpdoc.css file for HTML docsGraeme Geldenhuys
2015-03-10Removes deprecated TFPColor usageGraeme Geldenhuys
- That includes any color conversion functions - Projects using TFPColor
2015-03-10fpdoc.css: Improves the layout of the definition list contentsGraeme Geldenhuys
2015-03-10fpdoc.css: Improves the menu bar text visibilityGraeme Geldenhuys
2015-03-10fpdoc.css: fixes the class tree hierarchy pageGraeme Geldenhuys
2015-03-10docs: new custom style sheet for class documentation.Graeme Geldenhuys
2015-03-09docdump: fixes parameter handling and usage help output.Graeme Geldenhuys
2015-03-09Document most of the fpg_utils unit functions and procedures.Graeme Geldenhuys
2015-03-09Replace deprecated functions with alternativesGraeme Geldenhuys
2015-03-09Adds new functions to fpg_utilsGraeme Geldenhuys
* fpgGitBit() - queries bit values * fpgSetBit() - sets bit values * fpgIntToBin() - outputs bit valuse as a string
2015-03-05Published some mouse events for Checkbox, ComboBox, Edit, EditBtn, Listbox ↵Graeme Geldenhuys
and Memo
2015-03-01bug: fixes deleting extra character after Cut-To-Clipboard it TextEdit widgetGraeme Geldenhuys
Using the keyboard combination to cut to the clipboard deleted an extra character that was not selected.
2015-03-01Minor tweak to the compiler settingsGraeme Geldenhuys
2015-02-28bug: Improved tokenizer to correctly extract font name for Font Dialog.Graeme Geldenhuys
Before the tokenizer didn't accept a font name that contain the @ or - symbols, thes the font name listbox never had any selection shown.
2015-02-28code formatting fixGraeme Geldenhuys
2015-02-28bug: Fixes GDI issue where if font name contain a @ or - symbol the couldn't ↵Graeme Geldenhuys
be selected For example: '@Terminal-10' did not work. Neither did 'VNI-Bamas-10'. The tokenizer was improved to look-ahead or accept extra characters like the @ symbol.
2015-02-26fpcunit: on running the tests, first expand the treeGraeme Geldenhuys
This means we can observe how the tests are progressing.
2015-02-26fpcunit: fixes the bug where the treeview is partiall obscuredGraeme Geldenhuys
The panel containing the treeview is set to alClient alignment, and it was set before any of the other non-client aligned panels. This was the wrong order of doing things.
2015-02-26fpcunit: cleaned up uses clauseGraeme Geldenhuys
As per compiler hints, I removed all unused entries in the uses clause.
2015-02-22docs: TfpgImageBaseGraeme Geldenhuys
2015-02-22docs: Updte general info about fpGUIGraeme Geldenhuys
2015-02-22docs: Additional Topics - embedded formsGraeme Geldenhuys
2015-02-22docs: TfpgImagePanelGraeme Geldenhuys
2015-02-22docs: fpg_panel.pas unitGraeme Geldenhuys
2015-02-22vlc: fix compiler error with FPC 3.0Graeme Geldenhuys
2015-02-20VLC demo: show time lapse and selection dialog now supports audio filesGraeme Geldenhuys
2015-02-19Minor optimisation to CanvasBase.SetFont()Graeme Geldenhuys
2015-02-19Removed fpgApplication.DefaultFontGraeme Geldenhuys
We really don't need yet another "default font". All references to fpgApplication.DefaultFont has been changed to fpgStyle.DefaultFont - as it should be.
2015-02-19menu: Replace font reference variable with direct fpgStyle callsGraeme Geldenhuys
If the fpgStyle changed at runtime, those font reference variables are out of scope and causes a runtime error.