summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-02-25regex: fixes uninitialized values.Graeme Geldenhuys
2013-02-25regex: clean-up based on compiler message output.Graeme Geldenhuys
- removed old IFDEF's - var parameters changed to out parameters - PtrInt changed to PtrUInt
2013-02-23editgrid: fixes keyboard/arrow navigation after an editJean-Marc Levecque
2013-02-23maximus: updated TODO file itemsGraeme Geldenhuys
2013-02-23maximus: implemented diff/patch syntax highlightingGraeme Geldenhuys
2013-02-22maximus: Adds syntax highlighting for hexadecimal numbersGraeme Geldenhuys
2013-02-22maximus: Enables the Cut, Copy and Paste edit menu items.Graeme Geldenhuys
2013-02-22more wip for the MiG layout implementation.Graeme Geldenhuys
2013-02-22Updated the About Dialog text to reflect FreeBSD.Graeme Geldenhuys
I haven't tested with other BSD operating systems yet.
2013-02-22nanoedit: Adds an Edit menu with Cut, Copy and Paste functionalityGraeme Geldenhuys
2013-02-22nanoedit: improves the compiler options for the Lazarus IDE project file.Graeme Geldenhuys
2013-02-22nanoedit: fixes the fpc config file to allow compiling from command line.Graeme Geldenhuys
The unit seach path was wrong.
2013-02-22fpg_edittext: Adds cut to clipboard support.Graeme Geldenhuys
2013-02-22fpg_textedit: adds insert text and paste from clipboard support.Graeme Geldenhuys
2013-02-22Added related units to editgrid project file.Graeme Geldenhuys
2013-02-22More work done on the editgrid widgetJean-Marc Levecque
2013-02-21Minor change and missing *.lpi file to get project to compile under Lazarus IDE.Graeme Geldenhuys
2013-02-21Started documenting the Agg2D unit. Still lots to do here.Graeme Geldenhuys
I committed this now, so I don't loose the file somehow.
2013-02-21nanoedit - a mini notepad like text editorGraeme Geldenhuys
I have been using this for some time now. I required a mini editor on non-Windows platforms, so created this project to solve that. This is also a testbed project for my "elastic tabstops" implementation.
2013-02-21Experimental EditGrid widget by Jean-Marc Levecque.Graeme Geldenhuys
This is still work in progress. See the readme.txt file for more details.
2013-01-04Enabled fpGUI+AggPas compiling via scripts or fpmakeGraeme Geldenhuys
2013-01-03needed of values limits on integer edits.Jean-Marc Levecque
2012-12-20Added the Agg2D canvas unit to the X11 fpgui_toolkip.lpk packageGraeme Geldenhuys
2012-12-20freetype.dll library for Agg-enabled Canvas and FreeType font engine.Graeme Geldenhuys
2012-12-20agg: comments about the difference between FreeType and Win32 font engine.Graeme Geldenhuys
2012-12-20Minor changes for AggPas-Canvas under X11.Graeme Geldenhuys
2012-12-20fixes spelling mistake in code commentGraeme Geldenhuys
2012-12-20AggPas Canvas can now render to the screen under Windows too.Graeme Geldenhuys
2012-12-20menus: No need to call BeginDraw/EndDrawGraeme Geldenhuys
The whole HandlePaint() method is already covered by BeginDraw/EndDraw in a parent class.
2012-12-20Minor tweaks to demo: fixes alignment and size constraintsGraeme Geldenhuys
2012-12-18Completed some method signatures in implementation section.Graeme Geldenhuys
Lazarus IDE had some issues navigating them otherwise.
2012-12-18Removed unused units from uses clause. Preventing compiler hints.Graeme Geldenhuys
2012-12-14Minor mods to TfpgTrackbar to make it more flexible for descendants.Graeme Geldenhuys
eg: These changes were needed to create a descendant TrackBar that has a "transparent" background.
2012-12-11Update French translationJean-Marc Levecque
2012-12-10Fully updated the Afrikaans translation of fpgui.af.poGraeme Geldenhuys
2012-12-10Replace text strings in the reporting units with resource strings - for ↵Graeme Geldenhuys
localization. I also updated all language files to include the latest resource string constants.
2012-12-10Removed old constants not needed any more - they are now standard in FPC's RTL.Graeme Geldenhuys
2012-12-04Re-ordered units in the fpdoc project file to reduce output warnings.Graeme Geldenhuys
It wasn't really a problem, fpdoc would parse the dependant units anyway, but now we get a cleaner console output. ;-)
2012-12-04fpgui documentation updates.Graeme Geldenhuys
2012-12-04fpdoc project file updates.Graeme Geldenhuys
2012-12-04RichTextView can now have Text set even in the constructor phase of a form.Graeme Geldenhuys
Before we were forced to only set text in the OnShow or later.
2012-12-03docs: minor grammar improvement to the fpg_x11 docsGraeme Geldenhuys
2012-12-03Updates the classes naming convension fro TGfx to TfpgGraeme Geldenhuys
How the hell has this been around for so long and went undetected. :-/
2012-12-03docs: fixes a small spelling mistake in the fpg_tree docsGraeme Geldenhuys
2012-12-03docs: fixes some spelling mistakes in the fpg_button docsGraeme Geldenhuys
2012-12-03docs: small addition to the docs for the fpg_widget unit.Graeme Geldenhuys
2012-12-03docs: Small addition to the docs for the fpg_main unit.Graeme Geldenhuys
2012-12-03Added more documentation units to the fpdoc project file.Graeme Geldenhuys
2012-11-30Silence the compiler about range checking.Graeme Geldenhuys
We manualy do the range checking before we access the string array. So disable the compiler range checking around the affected code.
2012-11-30Minor optimisation for UTF8Insert()Graeme Geldenhuys
Length() is a more 'lite" version than UTF8Length(), and in that code we don't need the functionality of the latter.