Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-04-29 | Adds various useful MSEide code templates | Graeme Geldenhuys | |
2013-04-29 | Fixes a spelling mistake in a code comment. | Graeme Geldenhuys | |
2013-04-29 | agg: The Alpha color channel was ignored in DoSetColor() | Graeme Geldenhuys | |
2013-04-29 | some API documentation updates | Graeme Geldenhuys | |
2013-04-29 | Merge branch 'debugserver-liveview' into develop | Graeme Geldenhuys | |
2013-04-29 | debugserver: Now support LiveView messages. | Graeme Geldenhuys | |
LiveView messages don't appear in the normal log message window. Instead they appear in a separate non-scrolling grid where the previous values get replaced with the new values. | |||
2013-04-29 | new debug interface unit for use with out Debug Server application. | Graeme Geldenhuys | |
Added debug interface units to 'corelib' and to the fpgui_toolkit packages | |||
2013-04-29 | Deletes another old and outdated documentation. | Graeme Geldenhuys | |
This too was for v0.4 and earlier. | |||
2013-04-29 | Removes and old (outdated) technical document on fpGUI's design. | Graeme Geldenhuys | |
This document was written for fpGUI v0.4 design. After the v0.4 release the whole fpGUI was rewritten. | |||
2013-04-29 | trackbar: published a few more events | Graeme Geldenhuys | |
2013-04-29 | trackbar: minor optimisation. Setting Position already calls RePaint and ↵ | Graeme Geldenhuys | |
DoChange. | |||
2013-04-28 | fixes spelling error in code comment | Graeme Geldenhuys | |
2013-04-27 | debugserver: LiveView frame now has a Grid property for easy access. | Graeme Geldenhuys | |
2013-04-27 | debugserver: adds new Live View grid that will track values. | Graeme Geldenhuys | |
The "live view" values are not added to the usual messages list. They are very handy for tracking short lived debug info like the position of a mouse cursor, position of a trackbar or scrollbar etc. | |||
2013-04-26 | Only enable the debug interface when needed. | Graeme Geldenhuys | |
2013-04-26 | trackbar: Implements vertical orientation | Graeme Geldenhuys | |
For some reason it was never implemented before!! Oops. | |||
2013-04-25 | Merge branch 'docview-codepage-fixes' into develop | Graeme Geldenhuys | |
2013-04-25 | docview: Saving topics to IPF now save text as UTF-8 encoded text. | Graeme Geldenhuys | |
Lets promote Unicode (UTF-8) usage as much as possible. It's much easier than he stacks of other "old style" encodings. | |||
2013-04-25 | docview: greatly improve scrolling speed when help topic contains images | Graeme Geldenhuys | |
We always did StretchDraw() which is rather CPU intensive. Now we check the image dimensions first, then decide if StretchDraw() is really needed or not. If not, then do the much faster DrawImage() call. | |||
2013-04-25 | docview: fixes some compiler hints | Graeme Geldenhuys | |
- unused variables - added a note on how to fix another compiler hint (range check error) | |||
2013-04-25 | docview: minor code formatting changes | Graeme Geldenhuys | |
2013-04-25 | docview: extended "File Info" output to include font encoding information. | Graeme Geldenhuys | |
2013-04-25 | docview: When searching, do a text encoding conversion of dictionary words. | Graeme Geldenhuys | |
We forgot to do this before, so sometimes text could not be found. Also added a note on how we could improve the speed. | |||
2013-04-25 | docview: refactored text encoding version | Graeme Geldenhuys | |
docview now uses a single fpGUI call to do encoding conversions. This make is much easier to maintaing - a single method needs to be modified if new encoding conversions get added. | |||
2013-04-25 | Implemented a new ConvertTextToUTF8() which converts some encoding to UTF8 | Graeme Geldenhuys | |
2013-04-24 | nicegrid: Adds project files (for Lazarus IDE) for the three demos. | Graeme Geldenhuys | |
2013-04-24 | nicegrid: minor change to get unit to compile under 64-bit FPC. | Graeme Geldenhuys | |
2013-04-24 | Adds new contributed grid widget - NiceGrid | Jean Pierre Anghel | |
See the readme.txt file for more details. | |||
2013-04-24 | Persistent clipboard support under X11. | Andrew Haines | |
Some desktop enviroments or window managers include support for a clipboard manager. This clipboard manager can make the content of the clipboard persistent even after the source application closed down. | |||
2013-04-23 | Deletes obsolete test cases for UI Designer. | Graeme Geldenhuys | |
There one only needed, years ago, when the UI Designer was started. | |||
2013-04-19 | Another file system encoding fix for TfpgINIFile | Graeme Geldenhuys | |
- fpgApplicationName() wrapper for SyUtils.ApplicationName - TfpgINIFile reference ApplicationName, instead of fpgApplicationName - In TfpgINIFile we forgot to encode the file name back to the system encoding before we called Create(). | |||
2013-04-19 | debug server: added a "expanded view" for the selected message. | Graeme Geldenhuys | |
This means we can view multi-line items much easier. | |||
2013-04-19 | TfpgINIFile called the SysUtils.GetAppConfigDir() instead of ↵ | Graeme Geldenhuys | |
fpgGetAppConfigDir() This should fix the file encoding issue experienced under Windows. | |||
2013-04-19 | debug server: now allows you to copy selected message to clipboard | Graeme Geldenhuys | |
2013-04-19 | Published TfpgPanel.OnResize property | Dibo | |
2013-04-18 | Grids: set horiz scrollbar pagesize to 5 for smoothscroll, 1 otherwise | David Laurence Emerson | |
2013-04-18 | Grids: basegrid working great with PrepareCells function and new optimizations | David Laurence Emerson | |
2013-04-18 | Grids: basegrid drawing right! Created PrepareCells function. Still ↵ | David Laurence Emerson | |
preparing too many cells. | |||
2013-04-18 | Grids: basegrid pre calculation, not drawing right | David Laurence Emerson | |
2013-04-18 | Grids: basegrid updateScrollbars done? | David Laurence Emerson | |
2013-04-18 | Grids: basegrid updateScrollbars almost done | David Laurence Emerson | |
2013-04-18 | Grids: improve UpdateScrollbars for resizing etc | David Laurence Emerson | |
2013-04-18 | Merge branch 'hotfix-2' into develop | Graeme Geldenhuys | |
I found a problem with the deadkey support - it broke keyboard input under Windows. The original deadkey input issue seems to have been X11 specific, so should be fixed at widget level, but rather in the fpg_x11.pas unit. | |||
2013-04-18 | Adds a simple Git HowTo document | Graeme Geldenhuys | |
I frequently get asked some Git questions. So hopefully having a quick reference document will help some developers. It also gives me something to quote in emails. :) | |||
2013-04-17 | Revert "Make special characters known by edit components" | Graeme Geldenhuys | |
This reverts commit bff6c8c3b5071ae28ba3c10cf612c55e893926b4. | |||
2013-04-17 | Revert "Make special characters known by editcombobox" | Graeme Geldenhuys | |
This reverts commit c7b3cdcd025e2f8cc8db7db0cf01fdacefbe2255. | |||
2013-04-17 | Revert "Make special characters known by memo component" | Graeme Geldenhuys | |
This reverts commit d71020bc89474bb98aa49b62b769de2d6b20ca8d. | |||
2013-04-17 | Revert "Use dead key codes for special accentuated characters" | Graeme Geldenhuys | |
This reverts commit 5ee5b79db4825a3b2afa03dde72ddbe7e46b3c47. | |||
2013-04-17 | Revert "Add common procedures in fpg_base for deadkeys" | Graeme Geldenhuys | |
This reverts commit ccfd4b2ae0a9dfae0d19ae7ba673118af70c75da. | |||
2013-04-12 | Merge branch 'mdi_horizontal_scrolling' into develop | Graeme Geldenhuys | |