Age | Commit message (Collapse) | Author |
|
This reverts commit 58fbaf95ad23b3b3393d172cbee6cc0eea5611d9.
|
|
So we have to specify the fpg_base unit so the compiler knows which
structure we are refering to.
|
|
|
|
- GetFormByClassName()
- GetFormByName()
|
|
- That includes any color conversion functions
- Projects using TFPColor
|
|
|
|
* fpgGitBit() - queries bit values
* fpgSetBit() - sets bit values
* fpgIntToBin() - outputs bit valuse as a string
|
|
and Memo
|
|
|
|
Before the tokenizer didn't accept a font name that contain the @ or - symbols,
thes the font name listbox never had any selection shown.
|
|
|
|
be selected
For example: '@Terminal-10' did not work. Neither did 'VNI-Bamas-10'. The
tokenizer was improved to look-ahead or accept extra characters like the
@ symbol.
|
|
|
|
|
|
We really don't need yet another "default font". All references to
fpgApplication.DefaultFont has been changed to fpgStyle.DefaultFont - as
it should be.
|
|
If the fpgStyle changed at runtime, those font reference variables
are out of scope and causes a runtime error.
|
|
If the fpgStyle was changed at runtime, the FFont reference variable
was out of scope and caused a runtime error. We now simply ask fpgStyle
for the DefaultFont and then all is well.
|
|
PagerWidth -> PaperWidth
Thanks to Juha Manninen for reporting this.
|
|
|
|
Added Listview property OnItemActivate for when an item is doubleclicked or enter is pressed for a selected item.
Added Column property AutoExpand the column will use any space leftover in the listview width. Setting to True unsets the property on other columns.
Added Listview property ShowFocusRect. Sets wether or not the selected item's focusrect is drawn.
|
|
Removes unnecessary colors from the demo.
|
|
The reason this was done, is because the RELEASE mode allows FPC to strip
out code that isn't used by the framework. This causes a problem for other
projects, because other projects might still need that stripped out code
(eg: Docview). It run it often causes a "identifier not found" error.
Switching back to DEBUG build means those projects compile without problem.
|
|
This means if we want to change the FPC binary we only need to edit
one line.
|
|
Fixed xml conflicts of lpi's manually
Conflicts:
examples/gui/filedialog/filedialog.lpi
examples/gui/modalforms/modalforms.lpi
|
|
|
|
Now the TfpgStyle class will free the font objects if they are reassigned
No more memory leaks or manually freeing the font objects first.
|
|
|
|
Thanks to Fred van Stappen for the original contribution. I (Graeme)
make a couple more changes, code clean-up, and dialog translation.
|
|
|
|
Signed-off-by: Jean-Marc.Levecque <jmarc.levecque@bbox.fr>
|
|
TfpgForm now has a new IconName property. Load a 16x16 image into the
global fpgImages instance and use that icons name in the IconName
property.
Windows support is still work-in-progress.
|
|
|
|
When resizing the grid at runtime, the old implementation sometimes
called ColumnWidth[] with a -1 index causing an AV error.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
eg: 'Type1' and 'type1' was considered the same directory under
Linux, and only one displayed. This commit fixes the issue and now
all directories are displayed.
|
|
Signed-off-by: Jean-Marc.Levecque <jmarc.levecque@bbox.fr>
|
|
The interface did not match the implementation section. My fault for not
doing a good enough sync with agg2d.pas! :-/
|
|
AggPas now correctly queries the correct Windows install path.
Thanks Marcus for pointing out my hasty commit from before.
|
|
The color picker in the ColorWheel demo now works on all supported
platforms.
|
|
We can now color pick a value on a X11 desktop.
|
|
Basically just reordering some resources.
|
|
eg: Compile DocView and resize the contents panel all the way to the
right. The gradient panel ends up having < 1 width, which means it is
not visible any more, so really the GradientFill doesn't need to do
anything.
|
|
This reverts commit 1bd4b9091d3649f531c77ef0d0d656de4f6e3129.
|
|
|