summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-05-28horizontal scrolling, commit 1David Laurence Emerson
2013-05-28Revert "Make special characters known by edit components"Graeme Geldenhuys
This reverts commit bff6c8c3b5071ae28ba3c10cf612c55e893926b4.
2013-05-28Revert "Make special characters known by editcombobox"Graeme Geldenhuys
This reverts commit c7b3cdcd025e2f8cc8db7db0cf01fdacefbe2255.
2013-05-28Revert "Make special characters known by memo component"Graeme Geldenhuys
This reverts commit d71020bc89474bb98aa49b62b769de2d6b20ca8d.
2013-05-28Revert "Use dead key codes for special accentuated characters"Graeme Geldenhuys
This reverts commit 5ee5b79db4825a3b2afa03dde72ddbe7e46b3c47.
2013-05-28Revert "Add common procedures in fpg_base for deadkeys"Graeme Geldenhuys
This reverts commit ccfd4b2ae0a9dfae0d19ae7ba673118af70c75da.
2013-05-28Forgot to bump the version numbers of the fpgui_toolkit.lpk packages.Graeme Geldenhuys
2013-05-28Change 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-05-28New overloaded LoadImage_PNG()Graeme Geldenhuys
This allows us to read the image from a byte array, just like we do with BMP images.
2013-05-28Menu 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-05-28popupmenu: Adds a convenience function AddSeparator()Graeme Geldenhuys
I like less typing. ;-)
2013-05-28tree keyboard handling: we never tested for ShiftStateGraeme Geldenhuys
2013-05-28os/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-05-28Initial 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-05-28bmp 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-05-28debug supportGraeme Geldenhuys
2013-05-28minor code formattingGraeme Geldenhuys
2013-05-28Bump the version numbersGraeme Geldenhuys
2013-05-28core: 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-05-28Buttons & 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-05-28aggpas backend: finally implemented DoDrawPolygon()Graeme Geldenhuys
Rather late than never. ;-)
2013-05-28aggpas: Improved font work-around to work for FreeBSD too.Graeme Geldenhuys
2013-05-28updated 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-05-28Add common procedures in fpg_base for deadkeysJean-Marc Levecque
2013-05-28Use dead key codes for special accentuated charactersJean-Marc Levecque
2013-05-28Make special characters known by memo componentJean-Marc Levecque
2013-05-28Make special characters known by editcomboboxJean-Marc Levecque
2013-05-28Make special characters known by edit componentsJean-Marc Levecque
2013-05-28Adds Chrome and Chromium support to fpgOpenURL()Graeme Geldenhuys
2013-05-28utils: Adds a new RTL wrapper to handle UTF-8 path names correctly.Graeme Geldenhuys
2013-04-18Grids: set horiz scrollbar pagesize to 5 for smoothscroll, 1 otherwiseDavid Laurence Emerson
2013-04-18Grids: basegrid working great with PrepareCells function and new optimizationsDavid Laurence Emerson
2013-04-18Grids: basegrid drawing right! Created PrepareCells function. Still ↵David Laurence Emerson
preparing too many cells.
2013-04-18Grids: basegrid pre calculation, not drawing rightDavid Laurence Emerson
2013-04-18Grids: basegrid updateScrollbars done?David Laurence Emerson
2013-04-18Grids: basegrid updateScrollbars almost doneDavid Laurence Emerson
2013-04-18Grids: improve UpdateScrollbars for resizing etcDavid Laurence Emerson
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