summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-02-24docview: GetTextAreaWidth implementation fixGraeme Geldenhuys
Also some minor code formatting changes.
2010-02-24docview: code formatting changes.Graeme Geldenhuys
2010-02-24docview: This drastically improved text width calculations.Graeme Geldenhuys
Due to this change the text wrapping has also improved a lot. Still not 100% but much better than before.
2010-02-24docview: Lets not hardcode the Arial font.Graeme Geldenhuys
2010-02-23docview: content doesn't disappear as soon as it reaches the top/bottom edgeGraeme Geldenhuys
lines at top and bottom of richview component are now painted even if they are only partially visible. They don't suddenly disappear any more.
2010-02-23Initial support for WinCE devices, after a long break since v0.4.Paul Breneman
2010-02-23wrong eol characters for windows fpgui_toolkit.lpk file.Graeme Geldenhuys
2010-02-23Add various checks for open files before doing processing.Graeme Geldenhuys
2010-02-23Docview: Fix treeview height issue under Windows.Graeme Geldenhuys
2010-02-23New Help menu item to show Command Line Parameter help.Graeme Geldenhuys
* When showing this help, it closes open INF files.
2010-02-23Fix closing of open files.Graeme Geldenhuys
* Files field variable was not used, so removed it * On closing file, it used the Files field variable instead of the CurrentOpenFiles field variable. * Cleared the Search and History tab controls when closing files.
2010-02-23Updated docview todo list.Graeme Geldenhuys
2010-02-23Made a note about being outdated text.Graeme Geldenhuys
2010-02-22Updated the class inheritance documentation file.Graeme Geldenhuys
2010-02-22Removed compiler warning about friend class not beingGraeme Geldenhuys
related to TfpgWidget.
2010-02-22Repositioned OK button of Strings property editor dialog.Graeme Geldenhuys
Adhere to UI standards.
2010-02-22Enabled smart linking for UI DesignerGraeme Geldenhuys
This optimises the resulting executable size.
2010-02-22Removed IFDEF's in fpg_utils by using AllFilesMask.Graeme Geldenhuys
AllFilesMask was introduced into the RTL in FPC 2.2.2. Seeing than fpGUI always only supports the latest released FPC (in this case 2.4.0), we can get rid of the IFDEF.
2010-02-22Removed IFDEf's in fpg_main by using fpg_interface unitGraeme Geldenhuys
* Introduced a new unit fpg_interface.pas which defines alias types. This binds the backend classes with fpg_main without the need for IFDEF's. * Rename all classes in fpg_x11 and fpg_gdi with platform specific class names.
2010-02-22created a basic install splash screen for DocViewGraeme Geldenhuys
2010-02-22update readme and install text filesGraeme Geldenhuys
* Also relocated the src/readme.txt file to the docs directory.
2010-02-22manifest file used by fpmakeGraeme Geldenhuys
2010-02-22toolbar button images for docviewGraeme Geldenhuys
2010-02-17Remove debug writeln() from X11 backend code.Graeme Geldenhuys
2010-02-17New unit output directory for UI Designer.Graeme Geldenhuys
This allows you to have separate output directories for various CPU types and Target OSes.
2010-02-11Fix compiler warning about type range issues.Graeme Geldenhuys
2010-02-11Fix compiler waring about unreachable code.Graeme Geldenhuys
2010-02-11Fix visibility problem with constructor and destructor.Graeme Geldenhuys
2010-02-11Cross-build script for personal useGraeme Geldenhuys
* Created a Linux 64bit to 32bit cross-compile script for quick testing. This is only meant for me really. * Enabled C-style syntax. eg: += -= etc.. This reduces typing and is easy to read.
2010-02-03Published ReadOnly property for Numeric Edit components too.Graeme Geldenhuys
2010-02-03Implemented ReadOnly support for TfpgEdit.Graeme Geldenhuys
2010-02-03very minor code formatting fix.Graeme Geldenhuys
2010-02-03fixed re-declaration of HelpContext property in TfpgApplicationBase.Graeme Geldenhuys
2010-01-29Corrected work spacing in 'About fpGUI' dialog text.Graeme Geldenhuys
2010-01-29Updated Animation example with new Loading image.Graeme Geldenhuys
2010-01-29Updated docview install instructions and associated files.Graeme Geldenhuys
2009-12-30History navigation.Graeme Geldenhuys
* Tracks history of topics viewed. * Allows Back and Forward navigation in history. * Icons for remaining toolbar buttons.
2009-12-29Implemented a toolbar and Prev/Next Topic button behaviour.Graeme Geldenhuys
* stepping through Contents tree is now possible.
2009-12-29New methods GotoNextNodeUp and GotoNextNodeDown to step through a tree.Graeme Geldenhuys
2009-12-29MenuBar color is not consistent with Popup Menu seperator items.Graeme Geldenhuys
2009-12-29Updating fpgui package licensing information and version number.Graeme Geldenhuys
2009-12-29Let UI Designer use About fpGUI dialog.Graeme Geldenhuys
2009-12-29Add information text to the About fpGUI dialog.Graeme Geldenhuys
2009-12-21Causes popup menus to overlap slightly so it is easier to see the z-order.Graeme Geldenhuys
2009-12-21Fix User/Group Name lookups on *unix file-systems.Graeme Geldenhuys
Removable media might have group or user ID's not available on the new host system. Name lookups will then fail. This patch works around that issue.
2009-12-15Updated tiOPF List Mediators to work with latest tiOPF2 code.Graeme Geldenhuys
* DoCreateItemMediator is now a function instead of a procedure.
2009-12-15Updated Demo 21 to support latest tiOPF2 changes.Graeme Geldenhuys
* tiOPF2 classes got renamed a bit.
2009-12-14New example showing how you can use embedded forms.Graeme Geldenhuys
fpGUI doesn't have direct support for Frames like Lazarus or Delphi, but it is quite simple to emulate such behaviour.
2009-12-10Extra saftey checks. Nothing major.Graeme Geldenhuys
2009-12-10When forms are embedded, don't show popup-menu components when the rest are ↵Graeme Geldenhuys
shown. * I don't like the implementation dependency on fpg_menu though. I'll try and see if there is some better way of doing this.