Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-11-10 | Merge branch 'develop' of https://github.com/graemeg/fpGUI.git into develop | Jean-Marc.Levecque | |
2014-11-10 | folder dialog: Seems internal TStringList.Sorted removed duplicates | Graeme Geldenhuys | |
eg: 'Type1' and 'type1' was considered the same directory under Linux, and only one displayed. This commit fixes the issue and now all directories are displayed. | |||
2014-11-07 | docs: adds missing doc examples | Graeme Geldenhuys | |
2014-11-05 | docs: trimmed trailing whitespace. | Graeme Geldenhuys | |
2014-11-05 | docs: removes indentation in docs as it affects some fpdoc output writers. | Graeme Geldenhuys | |
2014-11-05 | docs: fpdoc enum documentation only supports the <short> tag. | Graeme Geldenhuys | |
2014-11-03 | vlc demo: fixes compilation errors | Graeme Geldenhuys | |
2014-11-02 | Disable grid while editing a cell | Jean-Marc.Levecque | |
Signed-off-by: Jean-Marc.Levecque <jmarc.levecque@bbox.fr> | |||
2014-10-23 | nicegrid demo 1 project file for Maximus IDE. | Graeme Geldenhuys | |
2014-10-23 | nicegrid demo 1: fixed the Alpha values of some define colors. | Graeme Geldenhuys | |
2014-10-23 | nicegrid: fixed the Alpha value of some colors | Graeme Geldenhuys | |
2014-10-22 | nicegrid: adds the missing extrafpc.cfg file to compile from command line. | Graeme Geldenhuys | |
The "extrafpc.cfg" file makes it much easier to compile example projects from the command line. eg: fpc @extrafpc.cfg nicegrid1.lpr This same method is used for all the demos in the "examples" directory tree. | |||
2014-10-22 | agg_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-22 | install notes: fixes spelling mistake and improves text formatting slightly | Graeme Geldenhuys | |
2014-10-22 | updated OSX installation notes | Graeme Geldenhuys | |
2014-10-21 | aggpas: 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-20 | gdi: Implements TfpgGDIApplication.GetScreenPixelColor() | Graeme Geldenhuys | |
The color picker in the ColorWheel demo now works on all supported platforms. | |||
2014-10-19 | colorwheel demo: now has a color picker button | Graeme Geldenhuys | |
* Click and hold the mouse. Then move the mouse and release. The colorwheel will then update the color under the mouse cursor. * Enable the "Continuous" checkbox and do the same as above. As you move the mouse, the colorwheel will continuously update. NOTE: The internal functionality used is still only for X11. | |||
2014-10-19 | colorwheel demo: Hex label now has the normal naming convention. | Graeme Geldenhuys | |
2014-10-19 | New fpgApplication.GetScreenPixelColor() for X11 | Graeme Geldenhuys | |
We can now color pick a value on a X11 desktop. | |||
2014-10-19 | Changes created due to running "localize.sh" script | Graeme Geldenhuys | |
Basically just reordering some resources. | |||
2014-10-19 | docs: Removed obsolete scripts or programs to generate documentation. | Graeme Geldenhuys | |
The preferred method is to simply use fpdoc and the documentation project file. eg: fpdoc --project=fpgui-docs-project.xml The XML project file contains INF output format as default, but the other settings like HTML, RTF etc are included, just commented. | |||
2014-10-19 | uidesigner: Tab/Widget order now display the correct title | Graeme Geldenhuys | |
There was a bug where both forms always displayed "Widget Order" as the window title. | |||
2014-10-19 | uidesigner: Tab/Widget Order forms now show selected form's name | Graeme Geldenhuys | |
2014-10-17 | Fixes "division by zero" error | Graeme 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-17 | Revert "CanvasBase.GradientFill causes a math error" | Graeme Geldenhuys | |
This reverts commit 1bd4b9091d3649f531c77ef0d0d656de4f6e3129. | |||
2014-10-17 | uidesigner: registered Min/MaxValue properties of Integer and Float Edit widgets | Graeme Geldenhuys | |
2014-10-17 | uidesigner: replaced Grid Resolution combobox with an Integer Edit | Graeme Geldenhuys | |
2014-10-17 | uidesigner: Now has an experimental "visual grid" on designer form. | Graeme Geldenhuys | |
This grid can be toggled on or off. Because it is experimental and still a ongoing feature, there are currently some limitations: - Grid toggle status is not saved between sessions - Grid color is not yet configurable - Grid size can only be between 1-10 | |||
2014-10-17 | uidesigner: designer's Form property now has the exact class type | Graeme Geldenhuys | |
2014-10-17 | uidesigner: extended the snap-to-grid options | Graeme Geldenhuys | |
We now have a range of 1-10. | |||
2014-10-15 | uidesigner: Those IFDEF's are not needed for Linux/FreeBSD any more. | Graeme Geldenhuys | |
2014-10-15 | Merge remote-tracking branch 'jmarc/develop' into develop | Graeme Geldenhuys | |
2014-10-15 | aggpas: Adds a extrafpc.cfg config file to easily compile AggPas Demos | Graeme Geldenhuys | |
Usage: fpc @extrafpc.cfg <demoname>.dpr | |||
2014-10-15 | memo: added extra sanity check for EndUpdate method. | Graeme Geldenhuys | |
2014-10-15 | Sync 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-15 | console agg_2D: Line() and Rectangle() now have FixAlignment parameter | Graeme Geldenhuys | |
This syncs the console agg_2D with the fpGUI Agg2D implementation. | |||
2014-10-15 | Fixes finding of Windows font files. | Graeme Geldenhuys | |
2014-10-15 | Fixes compiler warning | Graeme Geldenhuys | |
2014-10-13 | Make the selected text in editcombo follow the theme color | Jean-Marc.Levecque | |
Signed-off-by: Jean-Marc.Levecque <jmarc.levecque@bbox.fr> | |||
2014-10-12 | Surface 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-10-11 | Display hexa value of colors in colorwheel | Jean-Marc.Levecque | |
Signed-off-by: Jean-Marc.Levecque <jmarc.levecque@bbox.fr> | |||
2014-09-22 | docview: updated green arrows - much less jaggies. | Graeme Geldenhuys | |
2014-09-19 | docview: Adds an "About..." menu item in the Windows System Menu of the main ↵ | Graeme Geldenhuys | |
form. Just for fun and can be disabled if needed. | |||
2014-09-19 | Windows: Just for fun, allow the ability to hook into the System Menu | Graeme Geldenhuys | |
This means we can easily add an "About fpGUI" menu item in the System Menu of a window. | |||
2014-09-16 | Edit2 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-09-11 | Allow headerheight setting in grids. | Jean-Marc.Levecque | |
2014-09-11 | Use the fpGUI versions of RTL file methods - fpgFileExists() | Graeme Geldenhuys | |
- plus some minor code formatting | |||
2014-09-10 | DND example: Clear button now clears all widgets. | Graeme Geldenhuys | |
That includes the Grid, Edit and Bevel text. | |||
2014-09-10 | DND demo: report available drop types as soon as possible | Graeme Geldenhuys | |
Irrespective if we accept it or now. This makes the demo useful for testing with DND in general. |