summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-08-05RichTextView: Improved the scrollbar PageSize and SliderSize based on ↵Graeme Geldenhuys
content displayed.
2010-08-05RichTextView: fixed the scrolling direction when PgUp or PgDn is pressed.Graeme Geldenhuys
2010-08-05Docs: some minor new class documentation.Graeme Geldenhuys
2010-08-05DocView: clicking on scrolled pages did not detect hyperlinks.Graeme Geldenhuys
This was a bug, where I didn't apply the scroll offset correctly. for the Y-axis.
2010-08-02Update v0.7 release changelog info.Graeme Geldenhuys
2010-08-02Debug Server: New sample application that works with FPC's dbugintf unit.Graeme Geldenhuys
A nice application that displays debug messages sent via applications. Very handy for debugging CGI applications too.
2010-08-02Added VERSION_FILE.inc to fpgui_toolkit.lpk packages and updated version.Graeme Geldenhuys
2010-08-02Grid Demo: Added Smooth Scrolling checkbox to demo.Graeme Geldenhuys
2010-08-02DocView: Improved the toolbar look.Graeme Geldenhuys
* Changed buttons to flat look. * Added divider lines between button groups. * Debug Menu item is now checked or unchecked. * Moved INF Header Info menu item to Help menu.
2010-07-30tiOPF Mediators: Implemented a ListBox list mediator.Graeme Geldenhuys
* This is still work-in-progress. Currently it doesn't work with the tiModelMediator unit yet, but you can instantiate and use it manually.
2010-07-22ListView: Introduced new .NewItem method.Graeme Geldenhuys
* This differs from .AddNew, in that it doesn't add the newly created item to the Items list. The developer can decide to insert it anywhere, or add it to the end of the Items list.
2010-07-22ListView: introduced new .AddItem method and marked old .ItemAdd deprecated.Graeme Geldenhuys
2010-07-22ListView: Fixed memory leak in ListView.Items handling.Graeme Geldenhuys
2010-07-22ListView: Fixed memory leak in ListView.Columns handling.Graeme Geldenhuys
2010-07-19TfpgFileGrid - published the new Options property.Graeme Geldenhuys
* also sorted the properties
2010-07-19TextEdit: Fixed text selection painting.Graeme Geldenhuys
* Even if OnDrawLine event handler exists, selection will also be painted. * Stopped using XOR, because the result looks very bad with anti-aliased text.
2010-07-19TextEdit: Minor bugfix. I got the X and Y mixed up. :-(Graeme Geldenhuys
2010-07-19TextEdit: renamed method parameter to give clear indication of what it is ↵Graeme Geldenhuys
used for.
2010-07-13PtInRect failed if point was on right or bottom border.Graeme Geldenhuys
This fixes the Button Click bug where if you clicked on the button right or bottom border, the button press state was shown, but the Click never occured.
2010-07-08Memo Mediator: Remove trailing whitespace.Graeme Geldenhuys
Sometimes we had NewLine character or whitespace. We don't need those, so trim it off.
2010-07-05Extended TfpgButton to paint disabled images when needed.Graeme Geldenhuys
Again, this uses the new grayscale filter to paint a disabled image when Enabled = False.
2010-07-05Extended TfpgImage with a new CreateDisabledImage() method.Graeme Geldenhuys
This uses the new GrayScale Filter to create a grayscale image.
2010-07-05New unit (fpg_imgutils)Graeme Geldenhuys
* This will contain various utility functions to works on images. * Implemented a GrayScale Filter function.
2010-07-05new method Tfpgimage.ImageFromSource to create a cloned image.Graeme Geldenhuys
2010-07-05TfpgImageBase now remembers the co-ordinates used for the mask.Graeme Geldenhuys
This is handy when you want to do later image manipulation, and working on a cloned image.
2010-07-02Bevel Example: added an extra option to change BorderStyle at runtime.Graeme Geldenhuys
2010-07-02fpg_panel: bsVerDivider now takes BorderStyle into account.Graeme Geldenhuys
If BorderStyle = bsDouble, it now paints two dividers.
2010-07-02fpg_panel: Improved the sucken look by using the correct shadow color.Graeme Geldenhuys
A lighter shaddow looks better for indentation than a dark shadow.
2010-07-02fpg_panel: BorderStyle only really applies to bsBox styleGraeme Geldenhuys
The code now reflects that. All other bsXXX style use a single pixel solid line.
2010-07-01TfpgBevel has a new Shape type: bsVerDividerGraeme Geldenhuys
It's similar to bsLeftLine, but looks a bit prettier. :-) It could also possibly be used as a grab handle for movable toolbars in the future.
2010-07-01fpg_panel: Refactored the HandlePaint method.Graeme Geldenhuys
* It was extremely hard to maintain that method as all Shape types drawing code are mixed together. * Not all shape types (eg line top,bottom,right,left) was painted 100% because of shared code. * Each shape type now has its own DrawXXX method, with the result both issues mentioned above are resolved.
2010-07-01fpg_panel refactoredGraeme Geldenhuys
FPanelShape is only required in TfpgBevel, so I removed from all other classes.
2010-06-29Calendar Combo: Correctly position Month popup menu.Graeme Geldenhuys
If there isn't space at the bottom of the Month Edit, then place the Month popup menu above the Month Edit. We had to introduce a friend class, to get access to the protected PrepareToShow method.
2010-06-29Calender Check Combo: when unchecked and you select date, it must show checked.Graeme Geldenhuys
The internal state was updated to checked, but visually it still looked unchecked. A simple call to Repaint fixes this.
2010-06-29Popup menu: Added some spacing after menu item text.Graeme Geldenhuys
We had spacing in front of menu item text for in case we use an image. But this made text look off-centre, so we added some space after text as well.
2010-06-29Combobox: no point having protected methods that are not virtual.Graeme Geldenhuys
2010-06-29Removed special characters from code comments.Graeme Geldenhuys
2010-06-29GDI: minor code formatting.Graeme Geldenhuys
* also improved if..else for WindowType * Moved AdjustWindowStyle to after all checks for WindowType so user could override it if needed.
2010-06-29Calendar: DontCloseWidgset property doesn't actually need to be set in this ↵Graeme Geldenhuys
case.
2010-06-29Removed forgotten debug line.Graeme Geldenhuys
2010-06-29bug fix: Calendar Combo year & month popups didn't work under Windows.Graeme Geldenhuys
This was caused due to a few longs of old and outdated hack code. Removed the hack, and the problem is gone! :-)
2010-06-29Doc update: improved descriptions of wtXXX window type enums.Graeme Geldenhuys
2010-06-28Calendar: Implemented year select popup window when clicking the Year in ↵Graeme Geldenhuys
calendar. Now end-users can quickly move through years, 10 at a time - forward or backwards.
2010-06-28Checkbox Calendar: Clicking the checkbox didn't repaint the display.Graeme Geldenhuys
No idea how I missed that one! Anyway, fixed now.
2010-06-28Checkbox Calender: Bug fix in SetDateValueGraeme Geldenhuys
* The validation that was done, was done with the internal date value, instead of the new date value passed in. Oops! * Removed some old commented code.
2010-06-28Calendar Test: add 'Single Click Close' checkbox.Graeme Geldenhuys
2010-06-28popupcalendar: minor fix to code to remove compiler hint. Unused variable.Graeme Geldenhuys
2010-06-28publish Alignment property for hyperlink labelGraeme Geldenhuys
2010-06-28Simple code formatting fixGraeme Geldenhuys
2010-06-25Calendar: adjust day if needed when new month is selected.Graeme Geldenhuys
eg: if current day is 31, and we select February, adjust day to 28 or 29 (last day of Feb).