summaryrefslogtreecommitdiff
path: root/src/corelib
AgeCommit message (Collapse)Author
2015-09-02Bump version number for the release.Graeme Geldenhuys
2015-09-01Removes hard-coded English text in TfpgApplication.ShowException()Graeme Geldenhuys
* New resource string * updated all other languages and PO files. * minor tweak to French translation.
2015-08-22Bugfix for X11: Thread synchronize stops working if no mouse inputGraeme Geldenhuys
If you use threads with Sychronize() calls... if there was no user input or mouse movement, then after a while the threads got paused. As soon as you moved the mouse, then things started working again. I did tests with three different applications, and I believe I got this bug fixed now.
2015-05-29New resource string values for File Dialog buttonsGraeme Geldenhuys
2015-05-25Fixes compiler error when AggCanvas is enabled.Graeme Geldenhuys
Recently we removed some variables that were needed for AggCanvas ifdef'ed code.
2015-04-22Merge branch 'lkppo' into fixes_1.4Graeme Geldenhuys
2015-04-22Clean up unused local variablesGraeme Geldenhuys
2015-04-12Win: DND support is now toggled by a feature compile define, not platform defineGraeme Geldenhuys
Old behaviour was to disable DND when WINCE is active. The HAS_DND compiler define now does this. HAS_DND is enabled by default for Windows, and disabled for WinCE platforms.
2015-04-10WinCE: fixes compilation errors for WinCE-ARMGraeme Geldenhuys
* Disabled OLE support for WinCE * Disabled Drag-n-Drop support for WinCE * Fixed PChar vs PWidechar types * Fixed IFDEF's. Differences between MSWINDOWS, WINDOWS and WINCE.
2015-04-06Revert "Minor optimisation to CanvasBase.SetFont()"Graeme Geldenhuys
This reverts commit 58fbaf95ad23b3b3393d172cbee6cc0eea5611d9.
2015-04-06Clean up unused local variablesStéphane Aulery
2015-04-04Russion language file updateGraeme Geldenhuys
2015-03-18Two new form helper functions added to fpgApplicationGraeme Geldenhuys
- GetFormByClassName() - GetFormByName()
2015-03-10Removes deprecated TFPColor usageGraeme Geldenhuys
- That includes any color conversion functions - Projects using TFPColor
2015-03-09Replace deprecated functions with alternativesGraeme Geldenhuys
2015-03-09Adds new functions to fpg_utilsGraeme Geldenhuys
* fpgGitBit() - queries bit values * fpgSetBit() - sets bit values * fpgIntToBin() - outputs bit valuse as a string
2015-02-28bug: Fixes GDI issue where if font name contain a @ or - symbol the couldn't ↵Graeme Geldenhuys
be selected For example: '@Terminal-10' did not work. Neither did 'VNI-Bamas-10'. The tokenizer was improved to look-ahead or accept extra characters like the @ symbol.
2015-02-19Minor optimisation to CanvasBase.SetFont()Graeme Geldenhuys
2015-02-19Removed fpgApplication.DefaultFontGraeme Geldenhuys
We really don't need yet another "default font". All references to fpgApplication.DefaultFont has been changed to fpgStyle.DefaultFont - as it should be.
2015-02-12Version bumpGraeme Geldenhuys
2015-02-01Merge branch 'develop' of https://github.com/graemeg/fpGUI into developAndrew Haines
Fixed xml conflicts of lpi's manually Conflicts: examples/gui/filedialog/filedialog.lpi examples/gui/modalforms/modalforms.lpi
2015-02-01Changes to allow modal windows to have owners.Andrew Haines
2014-12-26Encapsulate TfpgStyle's font objectsGraeme Geldenhuys
Now the TfpgStyle class will free the font objects if they are reassigned No more memory leaks or manually freeing the font objects first.
2014-12-20Updated translation constants for all language files with lastest updates.Graeme Geldenhuys
2014-12-20color dialog: Color Picker and Hex Value editbox added.Fred van Stappen
Thanks to Fred van Stappen for the original contribution. I (Graeme) make a couple more changes, code clean-up, and dialog translation.
2014-12-13Implements custom form icon support for X11Graeme Geldenhuys
TfpgForm now has a new IconName property. Load a 16x16 image into the global fpgImages instance and use that icons name in the IconName property. Windows support is still work-in-progress.
2014-12-06Fixes compiler hint about unused variableGraeme Geldenhuys
2014-11-15aggpas: fixes spelling mistake in code commentGraeme Geldenhuys
2014-10-22agg_2D: fixes compilation errors.Graeme Geldenhuys
The interface did not match the implementation section. My fault for not doing a good enough sync with agg2d.pas! :-/
2014-10-21aggpas: Implements and uses a GetWindowsFontPath function.Graeme Geldenhuys
AggPas now correctly queries the correct Windows install path. Thanks Marcus for pointing out my hasty commit from before.
2014-10-20gdi: Implements TfpgGDIApplication.GetScreenPixelColor()Graeme Geldenhuys
The color picker in the ColorWheel demo now works on all supported platforms.
2014-10-19New fpgApplication.GetScreenPixelColor() for X11Graeme Geldenhuys
We can now color pick a value on a X11 desktop.
2014-10-19Changes created due to running "localize.sh" scriptGraeme Geldenhuys
Basically just reordering some resources.
2014-10-17Fixes "division by zero" errorGraeme Geldenhuys
eg: Compile DocView and resize the contents panel all the way to the right. The gradient panel ends up having < 1 width, which means it is not visible any more, so really the GradientFill doesn't need to do anything.
2014-10-17Revert "CanvasBase.GradientFill causes a math error"Graeme Geldenhuys
This reverts commit 1bd4b9091d3649f531c77ef0d0d656de4f6e3129.
2014-10-15aggpas: Adds a extrafpc.cfg config file to easily compile AggPas DemosGraeme Geldenhuys
Usage: fpc @extrafpc.cfg <demoname>.dpr
2014-10-15Sync more fpGUI Agg2D code to console agg_2D unit.Graeme Geldenhuys
Not much, but it is a start. There are still many more of this to come.
2014-10-15console agg_2D: Line() and Rectangle() now have FixAlignment parameterGraeme Geldenhuys
This syncs the console agg_2D with the fpGUI Agg2D implementation.
2014-10-15Fixes finding of Windows font files.Graeme Geldenhuys
2014-10-15Fixes compiler warningGraeme Geldenhuys
2014-10-12Surface the Window related to the Canvas instance.Graeme Geldenhuys
This is so we can do more advance things with themes like calling invalidate on a widget (eg: animated theme on hover)
2014-09-19Windows: Just for fun, allow the ability to hook into the System MenuGraeme Geldenhuys
This means we can easily add an "About fpGUI" menu item in the System Menu of a window.
2014-09-16Edit2 font alias is now a variable and not hard coded.Graeme Geldenhuys
This makes it a bit more configurable (default values) for various platforms. Thanks to Marcus Sackrow for the suggestion.
2014-07-27Merge branch 'release-1.2' into developGraeme Geldenhuys
So we can get the latest bug fixes into 'develop'.
2014-07-27LoadImage_XXX() methods never did OS Encoding of the filenamesGraeme Geldenhuys
It now correctly encodes the UTF-8 filename to the OS Encoding. The filename parameter is now also a TfpgString type to denote that it is expected to be a UTF-8 encoded string.
2014-07-272 new units: fpg_CSVParser and fpg_StringGridBuilderGraeme Geldenhuys
fpg_CSVParser contains a class and singleton method to allow parsing CSV files. fpg_StringGridBuilder is a class that allows you to load a CSV file and automatically populate a StringGrid with its content.
2014-07-25Merge branch 'release-1.2' into developGraeme Geldenhuys
This is so we can get the latest bug fixes from the release branch.
2014-07-25Bump 'develop' branch to next version numberGraeme Geldenhuys
2014-07-25Fixed StretchDraw() "abstract error" due to DoFreeImage call.Graeme Geldenhuys
2014-07-24Fixed StretchDraw() "abstract error" due to DoFreeImage call.Graeme Geldenhuys