summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
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-12New record structure to be used in future OnMove events.Graeme Geldenhuys
2013-04-12minor code cleanupGraeme Geldenhuys
2013-04-10Merge branch 'hotfix-1' into developGraeme 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-09Merge latest fixes from 'release-1.0' branch into developGraeme Geldenhuys
2013-04-09version bump for develop branchGraeme 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-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-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-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-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-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-03debug supportGraeme Geldenhuys
2013-04-03minor code formattingGraeme Geldenhuys
2013-04-02Bump the version numbersGraeme Geldenhuys
2013-04-02core: Debug output is now sent to the Debug Server instead of console output.Graeme Geldenhuys
This makes testing a bit easier on all platforms.
2013-04-02Buttons & Styles now support hover effect on standard buttons too.Graeme Geldenhuys
Before we only had the mouse hover effect on Flat buttons. But now the Style can enable hover support for normal buttons too. Important for Win7 and MacOSX like themes.
2013-03-27aggpas backend: finally implemented DoDrawPolygon()Graeme Geldenhuys
Rather late than never. ;-)
2013-03-27aggpas: Improved font work-around to work for FreeBSD too.Graeme Geldenhuys
2013-03-27updated reporting imagesGraeme Geldenhuys
I've updated the actual *.bmp files ages ago, but forgot to update the image byte arrays in fpGUI Toolkit. While I was at it, I also translated some French names to English.
2013-03-22Add common procedures in fpg_base for deadkeysJean-Marc Levecque
2013-03-22Use dead key codes for special accentuated charactersJean-Marc Levecque
2013-03-22Make special characters known by memo componentJean-Marc Levecque
2013-03-22Make special characters known by editcomboboxJean-Marc Levecque
2013-03-22Make special characters known by edit componentsJean-Marc Levecque
2013-03-19Adds Chrome and Chromium support to fpgOpenURL()Graeme Geldenhuys
2013-03-18utils: Adds a new RTL wrapper to handle UTF-8 path names correctly.Graeme Geldenhuys
2013-03-04minor code formatting.Graeme Geldenhuys
2013-02-25numeric edits: adds min/max limitsJean-Marc Levecque
I was just ready to send a new patch concerning the limit values which is solving the issue with the gridediting. In addition, it is now possible to set only one limit, max or min, and I solved a bug on the editfloat which prevented to enter decimals in some cases.
2013-02-22Updated the About Dialog text to reflect FreeBSD.Graeme Geldenhuys
I haven't tested with other BSD operating systems yet.
2013-01-04Enabled fpGUI+AggPas compiling via scripts or fpmakeGraeme Geldenhuys
2013-01-03needed of values limits on integer edits.Jean-Marc Levecque
2012-12-20Added the Agg2D canvas unit to the X11 fpgui_toolkip.lpk packageGraeme Geldenhuys
2012-12-20agg: comments about the difference between FreeType and Win32 font engine.Graeme Geldenhuys
2012-12-20Minor changes for AggPas-Canvas under X11.Graeme Geldenhuys
2012-12-20fixes spelling mistake in code commentGraeme Geldenhuys
2012-12-20AggPas Canvas can now render to the screen under Windows too.Graeme Geldenhuys
2012-12-20menus: No need to call BeginDraw/EndDrawGraeme Geldenhuys
The whole HandlePaint() method is already covered by BeginDraw/EndDraw in a parent class.
2012-12-18Completed some method signatures in implementation section.Graeme Geldenhuys
Lazarus IDE had some issues navigating them otherwise.
2012-12-18Removed unused units from uses clause. Preventing compiler hints.Graeme Geldenhuys
2012-12-14Minor mods to TfpgTrackbar to make it more flexible for descendants.Graeme Geldenhuys
eg: These changes were needed to create a descendant TrackBar that has a "transparent" background.
2012-12-10Replace text strings in the reporting units with resource strings - for ↵Graeme Geldenhuys
localization. I also updated all language files to include the latest resource string constants.