summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-04-19Published TfpgPanel.OnResize propertyDibo
2013-04-18Merge branch 'hotfix-2' into developGraeme Geldenhuys
I found a problem with the deadkey support - it broke keyboard input under Windows. The original deadkey input issue seems to have been X11 specific, so should be fixed at widget level, but rather in the fpg_x11.pas unit.
2013-04-18Adds a simple Git HowTo documentGraeme Geldenhuys
I frequently get asked some Git questions. So hopefully having a quick reference document will help some developers. It also gives me something to quote in emails. :)
2013-04-17Revert "Make special characters known by edit components"Graeme Geldenhuys
This reverts commit bff6c8c3b5071ae28ba3c10cf612c55e893926b4.
2013-04-17Revert "Make special characters known by editcombobox"Graeme Geldenhuys
This reverts commit c7b3cdcd025e2f8cc8db7db0cf01fdacefbe2255.
2013-04-17Revert "Make special characters known by memo component"Graeme Geldenhuys
This reverts commit d71020bc89474bb98aa49b62b769de2d6b20ca8d.
2013-04-17Revert "Use dead key codes for special accentuated characters"Graeme Geldenhuys
This reverts commit 5ee5b79db4825a3b2afa03dde72ddbe7e46b3c47.
2013-04-17Revert "Add common procedures in fpg_base for deadkeys"Graeme Geldenhuys
This reverts commit ccfd4b2ae0a9dfae0d19ae7ba673118af70c75da.
2013-04-12Merge branch 'mdi_horizontal_scrolling' into developGraeme Geldenhuys
2013-04-12MDI: fixed editor settings screwup. Converted Tabs -> SpacesGraeme Geldenhuys
2013-04-12MDI prototype: demo project now uses the Cascade Windows functionalityGraeme Geldenhuys
2013-04-12MDI prototype now has basic horizontal scrollbar support.Graeme Geldenhuys
2013-04-12MDI child windows now have a OnMove eventGraeme Geldenhuys
2013-04-12MDI prototype: fixes code to remove compiler hintsGraeme Geldenhuys
2013-04-12MDI: work area now has a CascadeWindows method.Graeme Geldenhuys
2013-04-12New record structure to be used in future OnMove events.Graeme Geldenhuys
2013-04-12minor code cleanupGraeme Geldenhuys
2013-04-12docview: To make sure TotalSize is > 0Graeme Geldenhuys
2013-04-10Merge branch 'hotfix-1' into developGraeme Geldenhuys
2013-04-10Merge branch 'hotfix-1'Graeme Geldenhuys
2013-04-10Forgot to bump the version numbers of the fpgui_toolkit.lpk packages.Graeme Geldenhuys
2013-04-10Change to still support FPC 2.6.0 during the fpGUI 1.0 releaseGraeme Geldenhuys
Even though I normally say I only support latest released FPC versions, this is a small change.
2013-04-10Merge branch 'release-1.0'Graeme Geldenhuys
2013-04-10Merge branch 'release-1.0' into developGraeme Geldenhuys
2013-04-10Updates the changelog fileGraeme Geldenhuys
2013-04-09Merge latest fixes from 'release-1.0' branch into developGraeme Geldenhuys
2013-04-09version bump for develop branchGraeme Geldenhuys
2013-04-09Merge branch 'dibo-searchmode' into developGraeme Geldenhuys
2013-04-09New SearchMode property to FileListBase classDibo
This allows the developer to filter the file results by Files only, Directories only, or both (default).
2013-04-08Adds a document describing the new repository branching model I use.Graeme Geldenhuys
2013-04-08docview: added lots of keyboard shortcutsGraeme Geldenhuys
2013-04-08docview help file update.Graeme Geldenhuys
Added a keyboard shortcut section.
2013-04-08New overloaded LoadImage_PNG()Graeme Geldenhuys
This allows us to read the image from a byte array, just like we do with BMP images.
2013-04-08Menu shortcuts with F1 key combinations never worked.Graeme Geldenhuys
The global F1 (application help) shortcut handling never looked at the ShiftState value. So if we had a popup menu with F1->help; Ctrl+F1->About, the second item's shortcut with be interpreted as F1 only.
2013-04-08popupmenu: Adds a convenience function AddSeparator()Graeme Geldenhuys
I like less typing. ;-)
2013-04-08tree keyboard handling: we never tested for ShiftStateGraeme Geldenhuys
2013-04-08Fixes a spelling mistake of a filename (readme)Graeme Geldenhuys
2013-04-06code syntax consistency. Changes << to shlGraeme Geldenhuys
2013-04-06os/2 bitmaps with bitdepth of 1,4 or 8 have a 3 byte color palette.Graeme Geldenhuys
I originally read it as a 4-byte color palette. This fixes the colors of images (mostly), but there still seems to be some or other decoding issues with larger than 65KB images.
2013-04-05fpGUI Debug Server now defaults executable name to 'dbugsrv'.Graeme Geldenhuys
This means that if we use the dbugintf unit, that we could automatically launch the debug server (if it is in the system PATH) if it is not already running.
2013-04-05docview: Enabled support for reading images from INF files. (WIP)Graeme Geldenhuys
This is still Work-In-Progress because the images are displayed, but sometimes incorrectly, or with a wrong color palette. Either way, this is progress, and very long overdue. ;-)
2013-04-05docview: debug code to help debug reading images from INF files.Graeme Geldenhuys
2013-04-05Initial support for reading OS/2 Bitmap files.Graeme Geldenhuys
They have a slightly different structure to Windows BMP files - now the more common format.
2013-04-05docview: removes commented code we don't use or need any more.Graeme Geldenhuys
2013-04-05docview: simple pointer usage issues.Graeme Geldenhuys
The program was overwriting the pointer itself, and not the location the pointer is pointing too. Simple mistake! :-/
2013-04-04bmp code now raises an exception for a unknown BMP format.Graeme Geldenhuys
Before it would have done a writeln() which would go unnoticed under Linux, and cause an AV under Windows GUI apps.
2013-04-04Agg Canvas demoGraeme Geldenhuys
This is the demo used when I created the AggCanvas screenshot on the website.
2013-04-04launching help viewerGraeme Geldenhuys
Under *nix systems, if we can't find the direct location of docview, we try the 'which docview' command. If we get a positive response, we know docview is in the system path, and we can go ahead and launch it. At least this doesn't instantly throw an exception when docview can't be found on the first attempt.
2013-04-03docview: Help button in Notes dialog is now functional.Graeme Geldenhuys
2013-04-03docview: update help file - bookmarks functionality is now fully implementedGraeme Geldenhuys