summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-03-19docview: Fixes a bug where URL links where not handled correctly.Graeme Geldenhuys
When we detected know web browser names, we had to only use the URL part, not the original program+url text. DocView lets the OS choose the web browser.
2013-03-19docview: fixes a grammar error in the docsGraeme Geldenhuys
2013-03-19docs: fixes the <link> tags to use the full fpdoc link syntax.Graeme Geldenhuys
2013-03-19docs: fixes or adds the encoding attribute for fpdoc XML description files.Graeme Geldenhuys
2013-03-19docs: adds new docs for fpg_grid.pas unit.Graeme Geldenhuys
2013-03-19docs: disable protected methods from the documentation.Graeme Geldenhuys
I first what to document the Public and Published properties and methods, as those will be the most used by fpGUI end-users. The protected methods can be documented at a later stage.
2013-03-19docs: added the remaining fpGUI units to the fpdoc project file.Graeme Geldenhuys
Even though they are not all document, having them in the INF file is very handly for method, event and method signature lookups.
2013-03-19docs: fixes some fpdoc links by using the full path syntax.Graeme Geldenhuys
fpdoc is very buggy when it comes to cross-linking help topics. So by changing the link URL to the fully syntax, we try and help fpdoc along. This has limited success though, but every bit helps.
2013-03-18ide: new empty unit template file.Graeme Geldenhuys
2013-03-18ide: set current directory as we load a project file.Graeme Geldenhuys
This means relative paths, used throughout the project, will be correct
2013-03-18ide: Adds the ability to add a new empty unitGraeme Geldenhuys
The new unit will be based on the ${templates}/default/unit.pas file.
2013-03-18ide: replaces RTL functions with fpGUI wrapper versions.Graeme Geldenhuys
2013-03-18utils: Adds a new RTL wrapper to handle UTF-8 path names correctly.Graeme Geldenhuys
2013-03-18ide: added copyright notices to the source code units.Graeme Geldenhuys
2013-03-18ide: hide debug button and messages via DEBUGSVR compiler defineGraeme Geldenhuys
2013-03-18ide: removed unused (debug) widgets from main formGraeme Geldenhuys
2013-03-17ide: refactor out Adding Unit To Project code into separate method.Graeme Geldenhuys
2013-03-17ide: refactored out the creation of a new editor tab sheet.Graeme Geldenhuys
2013-03-17ide: restore caret and scroll bar position after a file reload.Graeme Geldenhuys
For some reason the caret isn't displayed until the arrow keys are pressed, but it is in the correct location.
2013-03-17textedit: temporary work-around to update scrollbars when setting caret positionGraeme Geldenhuys
2013-03-17textedit: Adds access to the Caret Vertical position.Graeme Geldenhuys
2013-03-17textedit: access to caret pos H.Graeme Geldenhuys
2013-03-15ide: Adds template files (units, programs etc)Graeme Geldenhuys
Soon the IDE will be able to select and process these files correctly.
2013-03-15ide: disable unnecessary debug output when using Proc List dialog.Graeme Geldenhuys
2013-03-15ide: Find dialog can now be closed/cancelled with Esc key.Graeme Geldenhuys
2013-03-15textedit: correctly set caret x position using UTF-8 Length() methodGraeme Geldenhuys
2013-03-15textedit: correctly named an identifier based on its usageGraeme Geldenhuys
2013-03-15textedit: correctly decrement the vertical scrollbar max limit when deleting ↵Graeme Geldenhuys
a line
2013-03-15textedit: Ctrl+Home/End handling is now fixed.Graeme Geldenhuys
Old behaviour took you to the correct location, but the vertical scrollbar position was never updated. So if you then did a PgUp/PgDn or a Mouse Wheel Scroll, you suddenly jumped to a different location in the source code.
2013-03-15ide: Adds the ability to copy the Messages output to the clipboardGraeme Geldenhuys
2013-03-15ide: Project -> Save As... will add new name to Recent Files list.Graeme Geldenhuys
2013-03-14docs: Updated help integration instructions.Graeme Geldenhuys
2013-03-14docs: minor grammar and formatting fixesGraeme Geldenhuys
2013-03-14textedit: minor optimisation in DEL key handlingGraeme Geldenhuys
If we know the current line is empty, we can simply delete that line, without having to worry about concatenation with the next line.
2013-03-14textedit: fixed bug where deleting a blank line causes a crashGraeme Geldenhuys
We were painting outside the OnPaint event. That is not a good idea, and has undefined behaviour.
2013-03-14docview: improved the looks of the topic title panelGraeme Geldenhuys
Later I will probably make this configurable too.
2013-03-13ide: The start of some documentation for Maximus.Graeme Geldenhuys
2013-03-13ide: Fixes the bug where IDE crashed when you load a second project.Graeme Geldenhuys
Loading a first project was no problem. But as soon as you tried to load a new (second) project, the IDE bombed out. This should be fixed now.
2013-03-13ide: Implements a "Go to line" search option.Graeme Geldenhuys
Finally the IDE is starting to become useful now. :)
2013-03-13ide: extra checks to make sure we have an editor instanceGraeme Geldenhuys
2013-03-13nanoedit: Implements a statusbar to show current file name being editedGraeme Geldenhuys
2013-03-13nanoedit: forgot to remove a debug ShowMessage callGraeme Geldenhuys
2013-03-13ide: Find Next and Find Prev implemented for the editor.Graeme Geldenhuys
2013-03-13ide: Find in File dialog now responds to Enter key press in text seach fieldGraeme Geldenhuys
2013-03-13ide: changed RTL function to fpGUI wrapper version of that functionGraeme Geldenhuys
2013-03-13ide: when a project is loaded, project macros are merged with ide macrosGraeme Geldenhuys
2013-03-13ide: Implements loading and saving of user defined project macrosGraeme Geldenhuys
2013-03-12debugserver: minor improvementsGraeme Geldenhuys
- Changed menu title "File" to "Server". It is more meaningful. - Added a "Pause" menu item to the Server popup menu. Synced with the pause button on the toolbar. - Project file updated due to newer version of Lazarus IDE.
2013-03-12textedit: enabled Cut and Paste built-in keyboard shortcuts.Graeme Geldenhuys
Now it makes Maximus IDE and Nanoedit a bit more useful. ;-)
2013-03-12richtext: minor improvement to default used colorsGraeme Geldenhuys