summaryrefslogtreecommitdiff
path: root/examples
AgeCommit message (Collapse)Author
2010-04-01calendar demo: added the TfpgCalendarCheckCombo as well.Graeme Geldenhuys
2010-03-24TabTest: minor modifications to support all tab positions.Graeme Geldenhuys
2010-03-21Tab: implemented TabPosition tpBottom and tpNoneGraeme Geldenhuys
Thanks to Jean-Pierre ANGHEL <jp.anghel@bbox.fr> for help with implementing this.
2010-03-19PageControl: Neaten up code and some minor improvements.Graeme Geldenhuys
Functionality did not change.
2010-03-19New demo for MouseCursor property.Graeme Geldenhuys
2010-03-18Reworked the hintwindowtest project to better show hint window possibilities.Graeme Geldenhuys
* We can now change from the standard (default) hint window to a custom hint window at runtime. * Hint window also has better sanity checks for sizing.
2010-03-18helloworld: Fixed memory leaks and new painting methodGraeme Geldenhuys
* This demo actually had 3 memory leaks which are now fixed. * I introduced new painting routines using GradientFill instead [now this works correctly on WinCE devices too] * Added an option for exiting the application cleanly.
2010-03-16Embedded Form example: extended the demo to test more options.Graeme Geldenhuys
Two embedded buttons are now added. One showing the embedded form visible by default. The other loading the embedded form visible = false by default. Also added a statement that prints a component hierarchy showing the value of Visible - for debug purposes.
2010-03-08Updated the various programs and fpGUI library to use the new generate ↵Graeme Geldenhuys
version file. The VERSION-GEN script generates a VERSION-FILE file which contans the version number of fpGUI. This is now used in DocView, UI Designer and other example applications too.
2010-02-26Update copyright notice in all units.Graeme Geldenhuys
2010-02-22update readme and install text filesGraeme Geldenhuys
* Also relocated the src/readme.txt file to the docs directory.
2010-01-29Updated Animation example with new Loading image.Graeme Geldenhuys
2009-12-14New example showing how you can use embedded forms.Graeme Geldenhuys
fpGUI doesn't have direct support for Frames like Lazarus or Delphi, but it is quite simple to emulate such behaviour.
2009-11-26Add copies of the gui/compileall.sh script to the "apps" and "corelib" ↵Graeme Geldenhuys
directories.
2009-11-26Fixed two example projects that did not compile.Graeme Geldenhuys
* apps/docedit * gui/combobox
2009-10-09Canvas.DrawString() help.Graeme Geldenhuys
The coordinates of DrawString is the top/left corner of the string. So the actual text appears below y.
2009-09-28Improved the ColorWheel example.Graeme Geldenhuys
* Added custom options for runtime changing. * Fixed duplicate OnChange execution. The demo listed to the OnChange even of both the ColorWheel and ValueBar. This was not needed.
2009-09-28Merge branch 'master' of ssh://fpgui.git.sourceforge.net/gitroot/fpgui/fpguiGraeme Geldenhuys
2009-09-27Adds a very basic colorwheel demo project.Graeme Geldenhuys
2009-08-27Fix default size of tiShowString() form.Graeme Geldenhuys
Signed-off-by: Graeme Geldenhuys <graeme@mastermaths.co.za>
2009-06-23Minor project info file updates due to newer Lazarus IDE.Graeme Geldenhuys
2009-06-03GetFieldBounds was not implemented for many tiMediators.Graeme Geldenhuys
2009-04-18memory leaks and lpi updatesGraeme Geldenhuys
* Fixed memory leaks in the tiListMediator unit * Updated various project lpi files.
2009-04-05* Added missing unit output directories.Graeme Geldenhuys
2009-03-27* Applied DragToReorder patch from David Emerson.graemeg
* Minor changes to his patch by publishing the property when needed. * Updated the ListBox and ColorListBox demos to show the feature.
2009-03-22* Removed X11 alternate implementations for FreeBSD and Linux systems when ↵graemeg
reading file username and groupname values.
2009-02-17* Fixed memory leaks in Calendar Combobox.graemeg
2009-02-16* Removed a lot of memory leaks from fpg_treeview.pas.graemeg
* Reworked the Treeview Test example so that it is managed by the Form Designer.
2008-11-14* updated all extrafpc.cfg files to use the correct lib output directory.graemeg
2008-11-12* new fpgCharAt() functiongraemeg
* Renamed EditXXX's DecimalSeparator and ThousandSeparatar properties to not conflict with the global variables in SysUtils. * Added EditCurrency, EditFloat and EditInteger to the UI Designer palette. I still have issues with TfpgChar type, so you have to use the 'unknow' memo in Object Inspector. * Minor changes in edits demo to compile again after the above changes.
2008-11-08* Implemented GetClientRect for TfpgBaseEditgraemeg
* Replaced Char with TfpgChar for TfpgBaseNumericEdit * Fixed visiblity of GetClientRect in TfpgAbstractPanel * Fixed text position in TfpgBaseNumbericEdit - spacing from the right.
2008-10-31* Implemented virtual RowDelete() method for TfpgCustomGrid.graemeg
* Implemented full RowDelete() for TfpgStringGrid. * Updated tiListMediators to use the new RowDelete() method of StringGrid. * Updated the GridTest demo to show RowDelete() in action. * Updated the AddressBook Demo 21 to enable deleting of contacts.
2008-10-12* Applied jean-marc's calendar patch.graemeg
2008-10-07* Removed a memory leak from fpg_hint unit.graemeg
* Added an example 'customstyles' to show how a quick and easy style could be applied. Please not theming is not fully implemented in fpGUI, so this might change later.
2008-10-06* Applied Jean-Marc's calendar patch adding start week day etc.graemeg
2008-10-01* Updated all demos to use the new unit names.graemeg
* Updated all packages like ide addons, fpcunit etc to use the new unit names.
2008-09-25* Updated the Hint Window example to show the default values of ↵graemeg
fpgApplication.ShowHint and Form.ShowHint and the behaviour they reflect.
2008-09-09* Fixed a bug in TfpgListView where it didn't paint the last column's content.graemeg
* Applied formating to tiListMediators * Removed the ListBox implementation in tiListMediators. It was totally wrong.
2008-09-02* Applied Jean-Marc's hint patch which moves hint functionality to ↵graemeg
TfpgWidget. Soon this will move to TfpgApplication. * Made a few of my own fixes to Jean-Marc's patch. * Removed a few compiler warnings.
2008-08-31* Renamed the hint window to TfpgHintWindowgraemeg
* Moved F_Hint variable to fpgApplication.HintWindow property. TfpgApplication now manages the life of HintWindow. * Moved DisplayHint (now called ActivateHint) and HideHint into TfpgApplication. * Introduced a new TfpgApplication.HintPause property that will managed the default delay before a help hint is displayed. Default is 1.5 seconds. * gui_edit unit has been updated to handle the new changes. * hintwindow example project has been updated to handle the new changes. * TfpgHintWindow class now manages the Shadow Window (lifetime, size and position). * The Hint Shadow class is now moved to the Implementation section so it's not accessible to the world, but only via the standard Hint Window class. * Introduced a HintWindowClass which is a global variable. It defaults to TfpgHintWindow, but allows the user to change it so a custom hint window can be used instead. * TfpgLabel.Text is now of type TfpgString
2008-08-31* Made some changes to the Hint Help under Windows. Microsoft strikesgraemeg
again with it's weird behaviour. Windows sends fake MouseMove messages when a windows is shown, hidden or moved. The backend had to filter out those fake messages. For more details on this see the following link. http://blogs.msdn.com/oldnewthing/archive/2003/10/01/55108.aspx
2008-08-29* Added Hint window examplegraemeg
2008-08-26* Moved the UI Designer from the examples/apps directory to the root directory.graemeg
* Updated some build scripts
2008-08-21* Applied UI Designer patch from MvC. Adding improved support of OI property ↵graemeg
undo feature. Behaviour is also adjustable in General Options dialog. * Fixed tab order of General Options dialog in UI Designer.
2008-08-21* Updated UI Designer example project information files.graemeg
2008-08-20* Applied patch from Michael van Canneyt improving file dialog handling in ↵graemeg
UI Designer. * I fixed a minor bug in StringGrid Columns property editor. Issue was caused by new behaviour of Edit.OnChange firing more often.
2008-07-25* Applied Vladimir's gui_dialog patch. Adding a helper function for file ↵graemeg
dialog usage. * I move HighlightFile from public to private in TfpgFileDialog class. It's a internal function. * Updated the filedialog example to show pre-highlighted files in the save dialog.
2008-07-23* Applied Jean-Marc's grid Options property patch.graemeg
* Fixed a minor grid text color issue introduced by a previous patch. * Updated the GridTest example project to show the new Options property at work.
2008-07-18* GUI Test Runner: The counters are now activated, so you can see the number ↵graemeg
of tests run, number of errors and number of failures.
2008-07-18* Minor fix in the CustomGrid SetRowCount and SetColumnCount methods. Even ↵graemeg
if those properties are set between BeginUpdate/EndUpdate calls.