summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-09-04fixed minor memory leak in File Dialog.Graeme Geldenhuys
2010-09-04new stock images: added original images to repositoryGraeme Geldenhuys
2010-09-04file dialog: Added 'Home' and 'Bookmarks' support.Graeme Geldenhuys
2010-09-04fpg_utils: Added a new function that returns a config directory for fpGUI ↵Graeme Geldenhuys
framework itself. This will be used by the File Dialog and Font Select dialog.
2010-09-04fpg_utils: Added two new RTL wrapper functions.Graeme Geldenhuys
2010-09-04Speed up grid scrolling with mouse wheel x3Graeme Geldenhuys
2010-09-04New string utility function fpgTrimR() which trims text on right only.Graeme Geldenhuys
2010-09-04Added two new standard images: Home folder and Bookmarks iconsGraeme Geldenhuys
2010-09-04Replaced some RTL functions with fpGUI wrapper ones to handle Unicode text.Graeme Geldenhuys
2010-09-04Rearranged some constants and moved fpgAddColon() to fpg_utils unit.Graeme Geldenhuys
* Also added some new constants for future use.
2010-09-03Merge branch 'master' of /media/flash16gig/git_repos/fpguiGraeme Geldenhuys
2010-09-03fpmake: updated with all latest units and dependencies.Graeme Geldenhuys
'fpmake archive' and 'fpmake build' and 'fpmake install' now works.
2010-09-03compiler hint: removed unused unit from uses clauseGraeme Geldenhuys
2010-09-03Renamed fpmake.pas to fpmake.pp - as per FPC requirements.Graeme Geldenhuys
2010-09-03fpmake: add missing units and include file dependencies.Graeme Geldenhuys
2010-09-03Let fpmake.pas us the version info from fpGUI's include file directly.Graeme Geldenhuys
2010-09-03fpmake.pas version update and minor code update due to FPC 2.4.x changesGraeme Geldenhuys
2010-09-01docview: Implemented mouse cursor changes when moved over links.Graeme Geldenhuys
2010-09-01docview settings dialog: fixed tab ordersGraeme Geldenhuys
2010-09-01docview: introduced user configurable mouse wheel scroll distance.Graeme Geldenhuys
2010-09-01docview: Index Style setting. Changed ComboBox to RadioButtons.Graeme Geldenhuys
2010-09-01docview: minor code formattingGraeme Geldenhuys
2010-09-01docview: Removed unused or commented unitsGraeme Geldenhuys
2010-09-01docview help file: added disclaimer and trademark topics.Graeme Geldenhuys
2010-09-01fpg_base: fixed spelling mistake in docs.Graeme Geldenhuys
2010-09-01DocView: apply user selectable fonts to RichView component.Graeme Geldenhuys
Finally we have user selectable fonts! :)
2010-09-01docview: Replace unicode character in source code with UTF-8 byte sequence.Graeme Geldenhuys
2010-09-01docview: Replaced hard-coded font values with constants.Graeme Geldenhuys
A reference to a default font or fixed font are now the same throughout docview. If you change one, you change them all.
2010-09-01docview settings: NormalFont and FixedFont are now font descriptions onlyGraeme Geldenhuys
2010-09-01Add docview.ipf to project file.Graeme Geldenhuys
2010-09-01docview: NormalFont and FixedFont in TSettings are now font descriptions only.Graeme Geldenhuys
We never actually used the TfpgFont instances, so lets rather use font descriptions instead. Less resources get used.
2010-09-01minor fixes in DocView documentationGraeme Geldenhuys
2010-09-01docview: Fixed 'Copy to clipboard' button anchoring.Graeme Geldenhuys
2010-09-01docview: fixed unwanted linefeeds which were not in INF docs.Graeme Geldenhuys
2010-09-01Replaced debug writeln's with SendDebug() calls.Graeme Geldenhuys
2010-09-01GDI: replaced debug writeln's with SendDebug() calls.Graeme Geldenhuys
We should rather use the debug server for debugging, it works much better.
2010-09-01docview: Fixed 'Copy to clipboard' button anchoring.Graeme Geldenhuys
2010-09-01docview: fixed unwanted linefeeds which were not in INF docs.Graeme Geldenhuys
2010-08-30disable scrollbar buttons when parent is disabled tooJean-Marc Levecque
2010-08-30Fix bug returning to previous active window after opening modal formGraeme Geldenhuys
* If you had a main form and a non-modal form, and the non-modal opened a modal window, then the following happened in error: - modal form could open behind non-modal for, treating main form as parent. - when modal form closed, it set main form active, instead of non-modal form. This is now fixed.
2010-08-30fpg_main documentation update (minor).Graeme Geldenhuys
2010-08-30doc script updates: added new xml description file.Graeme Geldenhuys
2010-08-30Merge branch 'master' of ssh://fpgui.git.sourceforge.net/gitroot/fpgui/fpguiGraeme Geldenhuys
2010-08-29customstyle demo: minor style fix for menus.Graeme Geldenhuys
2010-08-29custom style demo: Added menu theming to the example.Graeme Geldenhuys
2010-08-29menu theming: refactored out the menu painting, into the TfpgStyle classGraeme Geldenhuys
* This gives us a bit more flexibility regarding the menu looks.
2010-08-27docview: add application icon and version info - under Windows.Graeme Geldenhuys
2010-08-26GDI: Correctly implement clipboard support under Windows.Graeme Geldenhuys
This includes unicode text support.
2010-08-26docview: correctly centre the ShowText form.Graeme Geldenhuys
2010-08-26treeview: Improved the page_up/page_down jump size of the scrollbars.Graeme Geldenhuys