Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-05-07 | grid: now has a new OnHeaderClick event | Graeme Geldenhuys | |
2013-05-04 | Grid: now developers have access to visible width/height. | Graeme Geldenhuys | |
Handy for adjusting column widths. | |||
2013-05-04 | bug: fixes memo that didn't always display horizontal scrollbar | Graeme Geldenhuys | |
2013-05-03 | Only call DocView if fpgApplication.HelpFile is set. | Graeme Geldenhuys | |
2013-05-02 | animation: added overloaded methods. | Graeme Geldenhuys | |
- Specifying the mask sample point is now optional for ImageFromByteArray If sample point is not specified, then (0,0) is used. - Introduced an overloaded SetImageFilename() method what can take a sample mask point too. | |||
2013-05-02 | animation: removed the checking of filename in the HandlePaint event. | Graeme Geldenhuys | |
If we have a FImage instance, that should be good enough. | |||
2013-05-02 | Merge remote-tracking branch 'dibo/fpgimganim' into develop | Graeme Geldenhuys | |
This adds the ability to read image data from a in-memmory byte array, instead of always from a file. Thanks Dibo! | |||
2013-05-02 | Fixes a small spelling mistake in the .gitattributes file. | Graeme Geldenhuys | |
2013-05-02 | Much faster CopyRect() implementation for X11 | Dibo | |
2013-05-01 | Added Graeme suggestions | Dibo | |
2013-05-01 | Added method ImageFromByte in TfpgBaseImgAnim. Now animation can be loaded ↵ | Dibo | |
from memory, not only from filename | |||
2013-05-01 | Adds much faster Canvas.CopyRect() implemenation for the GDI backend. | Graeme Geldenhuys | |
2013-04-30 | Adds CP1251 to UTF8 encoding conversion | Graeme Geldenhuys | |
2013-04-30 | debug: replaced debug writeln() statements with SendDebug() calls. | Graeme Geldenhuys | |
Debugging with the debug server is much easier than looking at command line output. | |||
2013-04-30 | Fixes a Windows 64-bit compile error relating to Windows.SetTimer() | Graeme Geldenhuys | |
The TIMERPROC signature has changed between FPC 2.6.0 and 2.6.2. This minor changes now supports both compiler versions. I tested this under 32-bit and 64-bit FPC. | |||
2013-04-30 | docview: Fixes encoding bug introduced in earlier refactoring | Graeme Geldenhuys | |
When I refactored the encoding conversion code, I accidentally write HelpFile.Encoding, instead of Settings.Encoding. This meant that changing the Encoding combobox in the docview main form had no affect. | |||
2013-04-30 | Adds VLC video library header translation and Media Player component. | Graeme Geldenhuys | |
These are optional 3rd party components, because they will add extra dependencies to your project. For that reason, they are not part of the fpgui_toolkit package as standard. | |||
2013-04-29 | docs: Adds docs for Canvas.DrawArc() and Canvas.FillArc() | Graeme Geldenhuys | |
2013-04-29 | updates fpdoc project file. | Graeme Geldenhuys | |
Just made it slightly simpler to copy & paste options when switching between output formats (IPF, HTML etc). | |||
2013-04-29 | Merge remote-tracking branch 'demerson3/grids' into develop | Graeme Geldenhuys | |
This feature branch contains grid scrollbar improvements, and a new virtual method for end-user optimisation when using grids. | |||
2013-04-29 | Merge branch 'nicegrid' into develop | Graeme Geldenhuys | |
2013-04-29 | RichView Editor test application. | Michael van Canneyt | |
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. |