summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-12-20UIDesigner project file for MSEide updated.Graeme Geldenhuys
The project file now uses the IDE's global macros. The idea is that you have those macros setup on each platform you work on. So when you open the project, the paths would automatically be correct. This simplifies the project settings a bit.
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-19Merge remote-tracking branch 'github/develop' into developGraeme Geldenhuys
2014-12-19Merge remote-tracking branch 'jmarcl/editcombo' into developGraeme Geldenhuys
2014-12-18Fix bug in InternalListBoxSelectJean-Marc.Levecque
Signed-off-by: Jean-Marc.Levecque <jmarc.levecque@bbox.fr>
2014-12-15uidesigner: IconName is now available in the Object InspectorGraeme Geldenhuys
2014-12-13docs: Adds some documentation about TfpgImageBase and its ImageData propertyGraeme Geldenhuys
2014-12-13docs: Correctly documentation about TfpgColor typeGraeme Geldenhuys
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-12New demo showing how to create custom windows.Graeme Geldenhuys
Painting your own borders, buttons etc. Similar to what Chrome or elementryOS apps do.
2014-12-11docs: Adds inherited docs for TfpgForm.Graeme Geldenhuys
2014-12-11docs: Added some documentation on TfpgBaseForm eventsGraeme Geldenhuys
2014-12-07Merge branch 'develop' of https://github.com/graemeg/fpGUI.git into developJean-Marc.Levecque
2014-12-06Merge branch 'feature/jml-grids' into developGraeme Geldenhuys
2014-12-06Fix ColMax() calculation.Graeme Geldenhuys
When resizing the grid at runtime, the old implementation sometimes called ColumnWidth[] with a -1 index causing an AV error.
2014-12-06Add optional scrollbar stylesJean-Marc.Levecque
2014-12-06Improve horizontal srcollbar behaviourJean-Marc.Levecque
2014-12-06Fixes compiler hint about unused variableGraeme Geldenhuys
2014-12-06Allow grids scrollbarwidth settingJean-Marc.Levecque
2014-12-06Allow grids scrollbarpage settingJean-Marc.Levecque
2014-12-06Allow grids autoheight settingJean-Marc.Levecque
2014-11-16uidesigner: Fixes crash when deleting widgets with children.Graeme Geldenhuys
2014-11-15aggpas: fixes spelling mistake in code commentGraeme Geldenhuys
2014-11-10Merge branch 'develop' of https://github.com/graemeg/fpGUI.git into developJean-Marc.Levecque
2014-11-10folder dialog: Seems internal TStringList.Sorted removed duplicatesGraeme 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-07docs: adds missing doc examplesGraeme Geldenhuys
2014-11-05docs: trimmed trailing whitespace.Graeme Geldenhuys
2014-11-05docs: removes indentation in docs as it affects some fpdoc output writers.Graeme Geldenhuys
2014-11-05docs: fpdoc enum documentation only supports the <short> tag.Graeme Geldenhuys
2014-11-03vlc demo: fixes compilation errorsGraeme Geldenhuys
2014-11-02Disable grid while editing a cellJean-Marc.Levecque
Signed-off-by: Jean-Marc.Levecque <jmarc.levecque@bbox.fr>
2014-10-23nicegrid demo 1 project file for Maximus IDE.Graeme Geldenhuys
2014-10-23nicegrid demo 1: fixed the Alpha values of some define colors.Graeme Geldenhuys
2014-10-23nicegrid: fixed the Alpha value of some colorsGraeme Geldenhuys
2014-10-22nicegrid: 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-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-22install notes: fixes spelling mistake and improves text formatting slightlyGraeme Geldenhuys
2014-10-22updated OSX installation notesGraeme Geldenhuys
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-19colorwheel demo: now has a color picker buttonGraeme 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-19colorwheel demo: Hex label now has the normal naming convention.Graeme Geldenhuys
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-19docs: 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-19uidesigner: Tab/Widget order now display the correct titleGraeme Geldenhuys
There was a bug where both forms always displayed "Widget Order" as the window title.
2014-10-19uidesigner: Tab/Widget Order forms now show selected form's nameGraeme Geldenhuys
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-17uidesigner: registered Min/MaxValue properties of Integer and Float Edit widgetsGraeme Geldenhuys