summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2010-08-26docview: added new Tools menu item: Current topic properties.Graeme Geldenhuys
* this is the same as item in popup menu in TOC tree view. But this works on hidden topics too.
2010-08-26docview: added copy to clipboard button in ShowText form.Graeme Geldenhuys
2010-08-26docview: fixed access violation when viewing some topicsGraeme Geldenhuys
* Not all topics need to be in the TOC tree view. When viewing such hidden topics, the method updating the Status Bar caused an access violation. Added some checks which new fixes the issue.
2010-08-26docview: replaced string values with constants.Graeme Geldenhuys
2010-08-26richview: disabled clipboard items in popup menu for now.Graeme Geldenhuys
* This causes the app using Richview to freeze. :-/
2010-08-26Merge branch 'master' of /media/flash16gig/git_repos/fpguiGraeme Geldenhuys
2010-08-25docview: File Information output now contains INF structure version infoGraeme Geldenhuys
2010-08-25docview application help completed!Graeme Geldenhuys
2010-08-25docview: Implemented a "Topic Properties" popup menu option.Graeme Geldenhuys
This is handle for developers to find a topic ID in help file, so they know what to call from there applications.