summaryrefslogtreecommitdiff
path: root/examples
AgeCommit message (Collapse)Author
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.
2008-07-17* Added extra safety in the Grid Scrollbar handling. * Replaced magic ↵graemeg
numbers with ModalResult constants.
2008-07-17* Minor fix to get GUI Test Runner to compile with FPC 2.3.1graemeg
2008-07-16* Added compile fix for Splash Screen demo from MvC.graemeg
* Added the compileall.sh script supplied by Michael van Canneyt for the GUI examples. * Removed all compiler warnings and hints from the GUI examples.
2008-07-15* GUI Test Runner: Improved the images in the treeview.graemeg
* GUI Test Runner: Progress bar is now activated as tests run. * Treeview: Fixed the horizontal scrolling bug where nodes disappear.
2008-07-14* Minor changes to popup menus for Edit and Treeview.graemeg
2008-07-14* Applied patch no:2014995 EditFload decimal setup.graemeg
2008-07-14* Applied patch from Vladimir, removing all memory leaks from UI Designer.graemeg
2008-07-11* Fixed the recusion bug in Treeview when searching for a node.graemeg
* Minor improvements to the GUI Test Runner. * Extended the treeview unit tests.
2008-07-11* Forgot the original images used in GUI Test Runner.graemeg
2008-07-11* Removed many compiler warnings from the gfx_imgfmt_bmp unit.graemeg
* Minor fix in the ImageList class. * Minor fixes in the Tree and TreeNode classes. * GUI Test Runner: Added image support in the test treeview. * Started a project for unit testing fpGUI components - starting with the treeview.
2008-07-10* Fixed a minor variable type bug in imagelist unit.graemeg
* Added images for use in GUI Test Runner.
2008-07-10* Removed the annoying unit that Lazarus IDE keeps adding to the examples.graemeg
* Updated the build scripts to compile the new package unit.
2008-07-09* More improvements to GUI Test Runner. It now sets the results as new nodes ↵graemeg
inside the treeview - all except for the last test case. The latter is still a bug.
2008-07-09* GUI Test Runner: Fixed the minor bug where 'All Tests' was not runnable.graemeg
2008-07-09* Applied patch 2013558 from Jean-Marc. Adding a new Currency edit and other ↵graemeg
mods.
2008-07-09* Minor size adjustment to GUI Test Runner.graemeg
2008-07-09* Applied patch from Jean-Marc improving the EditoCombo component. Patch ↵graemeg
#1991299
2008-07-09* Updated the fpgui_ide.lpk to use the new fpgui_toolkit.lpk package.graemeg
* Added a new contributed package from Michael van Canneyt. This allows you to create FPCUnit projects with the fpGUI as front-end. * Renamed the FPCUnit GUI Test Runner unit from guitestrunner.pas to fpg_guitestrunner.pas to prevent conflicts in the Lazarus IDE.
2008-07-09* More improvements to the GUI Test Runner. Adding Splitter support.graemeg
2008-07-08* Added a new FindSubNode method to TfpgTreeNode.graemeg
* Implemented more of the FPCUnit GUI Test Runner. We now have a working test runner, but I still have much to do.
2008-07-08* Got the basics working in the GUI Test Runner.graemeg
2008-07-08* GUI Test Runnergraemeg
2008-07-07* Published more events and properties for EditInteger and EditFload components.graemeg
* Now the Min/Max Size is actually applied, the Message Dialogs needed minor attention. * Updated all the example projects to use the newer all-in-one fpgui_toolkit lazarus package. * Did some minor bug fixing in some of the examples. 1-based indexing instead of 0-based indexing etc.
2008-07-07* The start of a FPCUnit GUI Test Runner based on fpGUI.graemeg
2008-07-07* Fixed svn properties on some files.graemeg
* Implemented MaxWidth and MaxHeight properties. * Implemented contraint checks on window/widget sizes. * Fixed the bug with anchor issues inside container widgets. * Fixed the initial state of PrevWidth/Height/Top/Left and Dirty state.
2008-07-03* EditTest in the prototypes directory now tests Button ImageLayout property.graemeg
* TfpgBevel has been added to the UI Designer component palette. * TfpgBevel is used in the UI Designer and Shape=Spacer it paints itself different in the UI Designer, so it's more visible. At runtime it doesn't paint like that.
2008-07-02* Reverted the previous patch, except for the InvalidateRect() call.graemeg
2008-07-02* Applied Button patch from Michael van Canneyt. Adding ImageLayout property ↵graemeg
to Buttons.