Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-10-30 | fixes bug where if treeview.Selection was not explicitly set, we could make ↵ | Graeme Geldenhuys | |
any selection. | |||
2012-10-29 | Borderless Panel: TfpgPanel can now also have a flat /borderless look. | Graeme Geldenhuys | |
Thanks to Michael van Canneyt <michael@freepascal.org> for the patch. | |||
2012-10-29 | While moving constants around I forgot to update the UI Designer | Graeme Geldenhuys | |
2012-10-26 | Adds a System Tray Icon implementation for X11. | Graeme Geldenhuys | |
This has been a long awaited feature. There is still some functionality missing and some more tweaks that need to be applied, but this implementation does work. It has been tested under JWM (Joe's Window Manager), MATE (Gnome2 fork) and KDE 4.8.x The Windows implementation will follow shortly. | |||
2012-10-26 | Adds a new "Can Adjust Position" parameter to TfpgPopupWindow.ShowAt() call. | Graeme Geldenhuys | |
Sometimes we want to display a popup window, but would like the framework to take into account the desktop screen size. If the popup window would display outside the bounds of the screen, we would like fpGUI to reposition the popup window to be fully visible. This will be used in the System Tray Icon implemenation. This parameter defaults to False, so the behaviour is exactly like it was before this changes. | |||
2012-10-26 | demo: Fixes memory leak in Splash Form demo | Graeme Geldenhuys | |
The splash form itself was never freed. | |||
2012-10-25 | minor changes for Xlib api usage. | Graeme Geldenhuys | |
I'm not sure if this changes is needed any more for the latest FPC though. Anyway, now it is consistent with most other usages of Xlib API and boolean values. | |||
2012-10-25 | Fixes compiler hint about TWMStateType not being used, but when in fact it ↵ | Graeme Geldenhuys | |
is being used. Hopefully this code changes make it more clear. | |||
2012-10-25 | Adds missing clearing of record structure before use. | Graeme Geldenhuys | |
The XLib man pages clearly state that the TXEvent structure must be cleared to 0 values before use. | |||
2012-10-25 | minor code formatting fixes | Graeme Geldenhuys | |
2012-10-25 | Fixes compiler hints about unused local variables. | Graeme Geldenhuys | |
2012-10-23 | edit: HandlePaint() now uses the theming engine to determine the border widths. | Graeme Geldenhuys | |
No more hard-coded 2 pixel widths. | |||
2012-10-23 | richview: Removed the extra margin for text at the top and bottom of the ↵ | Graeme Geldenhuys | |
client area There was a hard-coded 2px margin at the top and bottom of the text client area. So when scrolling the text disappeared 2px away from the actual widget border. This was inconsistent with other text widgets in fpGUI, and I simply didn't like it either. So GetTextAreaRect() now returns the same values as GetDrawRect(). | |||
2012-10-23 | richview: Implements a new BorderStyle property | Graeme Geldenhuys | |
* Also took into account theming support, so we get the size of the default borders from the theme class. * Improved the method that sets the coordinates of the scrollbar | |||
2012-10-23 | treeview: fixed bug where setting FontDesc had no affect on the treeview. | Graeme Geldenhuys | |
I forgot the actually set the Font property of the Canvas. :-/ | |||
2012-10-19 | textedit: Renamed private DoCopy and made it public as CopyToClipboard. | Graeme Geldenhuys | |
Now we can programatically copy selected text to the clipboard. | |||
2012-10-19 | textedit: Implemented the DoCopy method so now Ctrl+C copies selected text ↵ | Graeme Geldenhuys | |
to the clipboard. | |||
2012-10-19 | textedit: Newly implemented GetSelectedText function. | Graeme Geldenhuys | |
2012-10-19 | Minor changes caused by using a newer UIDesigner. | Graeme Geldenhuys | |
- new default properties - properties have been reordered etc.. | |||
2012-10-19 | Implements support to setup a custom color for the editor's active tab. | Graeme Geldenhuys | |
2012-10-19 | Refactored editor setup code into a single SetupEditorPreference method. | Graeme Geldenhuys | |
2012-10-19 | Code formatting fix: Replace tab character with spaces or fixing indentation ↵ | Graeme Geldenhuys | |
levels. | |||
2012-10-19 | PageControl now has a new ActiveTabColor property | Graeme Geldenhuys | |
We can now set the background color of the active tab so it is much more visible which tab is active. | |||
2012-10-18 | minor dependency optimisations for fpmake with FPC 2.6.0 | Graeme Geldenhuys | |
These changes are not needed for FPC 2.7.1 and later, as fpmake has vastly improved in compiling performance with FPC trunk. | |||
2012-10-18 | Moved some constants from fpg_main to fpg_constants unit. | Graeme Geldenhuys | |
2012-10-18 | pdf: replace RTL function with fpGUI wrapper version. | Graeme Geldenhuys | |
This allows for better Unicode support. | |||
2012-10-18 | pdf report "Producer" property now shows fpGUI name and version number. | Graeme Geldenhuys | |
2012-10-17 | Changes fpmake.pp file extension to .pas | Graeme Geldenhuys | |
2012-10-17 | Fixes build error about units not for a specific target. | Graeme Geldenhuys | |
Because the X11 and GDI targets have units with the same names (ie: fpg_impl.pas etc) the last enry overrides the platform target. So if we compile under Linux, it will complain that fpg_impl.pas is for the Windows target only. To work around this problem, we have to add some units in code blocks for specific targets. | |||
2012-10-17 | Fixes copyright notice, description, licensing and minor code formatting in ↵ | Graeme Geldenhuys | |
fpmake build program. | |||
2012-10-17 | Adds PDF report engine units to the fpmake build program | Graeme Geldenhuys | |
2012-10-12 | Creates a fpGUI wrapper for RTL's RenameFile() function. | Graeme Geldenhuys | |
2012-10-12 | Surface the TopRow property | Graeme Geldenhuys | |
2012-10-12 | ESC key now cancels the InputQuery dialog. | Graeme Geldenhuys | |
2012-10-12 | Correctly set the default values of TfpgBevel.Shape property | Graeme Geldenhuys | |
2012-09-26 | You can now copy to clipboard the content of message dialogs. | Graeme Geldenhuys | |
The TfpgMessageDialog and TfpgMessageBox dialogs now support the "copy to clipboard" keyboard shortcuts. This is nice and handy for pasting an error message into an email or something. | |||
2012-09-26 | gdi: oops, fixed code where I check the variable before I actually assign ↵ | Graeme Geldenhuys | |
something to it. | |||
2012-09-26 | fixes spelling mistake in code comment. | Graeme Geldenhuys | |
2012-09-21 | gdi: Corrected the implemenation of Canvas.GetPixel() | Graeme Geldenhuys | |
We referenced the write device context. FGC is the temporary buffer used for double buffering. FWinGC is the actual DC of the window. | |||
2012-09-21 | gdi: corrected the WinColorTofpgColor() implementation. | Graeme Geldenhuys | |
2012-09-21 | gdi: re-ordered the code in a more logical way, to ease reading. | Graeme Geldenhuys | |
2012-09-21 | pdf: fixes another compiler waring about an unused unit in uses clause | Graeme Geldenhuys | |
2012-09-21 | trackbar: bug fix. When setting the position, it never caused a repaint. | Graeme Geldenhuys | |
2012-09-21 | trackbar: refactor the classes and introduced a new TfpgBaseTrackBar class. | Graeme Geldenhuys | |
This process is not complete, but it already reduced a lot of code duplication. | |||
2012-09-21 | trackbar: Fixed the focus rectangle flicker problem while dragging. | Graeme Geldenhuys | |
2012-09-21 | trackbar: made sure all painting only occurs in the HandlePaint event | Graeme Geldenhuys | |
2012-09-20 | documentation on how to translate your application | Graeme Geldenhuys | |
2012-09-16 | adds the missing 'reportengine' search path to extrafpc.cfg | Graeme Geldenhuys | |
Recently we merged the PDF reporting engine code into the main source tree, but I forgot to update this compiler setting file. | |||
2012-08-31 | Implements loading PNG images from a Stream or Resource. | Graeme Geldenhuys | |
Thanks to Dibo for this contribution. | |||
2012-08-31 | Refactored the png loading code. | Graeme Geldenhuys | |
Extracted the code that does the conversion from FPC's FPImage to fpGUI's TfpgImage. Thanks to Dibo for this patch. |