Thank you gnozal!!gnozal wrote:Update
Changes :
- added option 'Editable image IDs in gadget properties' in preferences : if checked, you can edit the image IDs for Image/ButtonImage gadgets.
- added 'Gadget fonts' tab in preferences : you can set default gadget fonts for each gadget class, and choose to apply them immediatly to an existing form.
PureFORM 1.99 (yet another FORM designer)
Moderator: gnozal

Yesssss! Thank you, now I can sleep much better with ID1, 2, 3.gnozal wrote:Update
Changes :
- added option 'Editable image IDs in gadget properties' in preferences : if checked, you can edit the image IDs for Image/ButtonImage gadgets.

edit: Gnozal, in PureBasic it is possible to create an ImageGadget without an Image. You have to set the ImageID to 0 to do this.
Code: Select all
ImageGadget(#Image_Original, 5, 5, 14, 14, 0)
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Ok, done in build 280.kurzer wrote:Each time I set the Imagepath to "" PureFORM wil replace it by an default path to the PureBasic logo. It would be better if PureFORM would set a 0 parameter instead.
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
Hello Gnozal, if I change the image path from absolute to relative (via new F2-window) then this take no effekt at all. Neither the source in PureFORMs code view change nor the code which is saved via "save as code" is changed.
Also updating the code view by clicking "complete code" take no effekt. And if I change something other in the project (move a gadget by 10 pixel) then this modification is written to the saved source, but not the relative image path I choose before via F2 window.
Is there something magic using this new funktion or is it a bug?
(I use the latest 282 build)
Also updating the code view by clicking "complete code" take no effekt. And if I change something other in the project (move a gadget by 10 pixel) then this modification is written to the saved source, but not the relative image path I choose before via F2 window.
Code: Select all
DataSection
ImageID_LoadSource:
IncludeBinary "C:\Programme\PureBasic\! Meine Projekte\Register-Check\Daten\Images\folder.bmp"
EndDataSection
(I use the latest 282 build)
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Well, the idea was to make the path relative for the PureFORM project, so it is more portable. But the code generation still uses an absolute path (as I only use 'Include as hexadecimal data', there is no path issue).kurzer wrote:Hello Gnozal, if I change the image path from absolute to relative (via new F2-window) then this take no effekt at all.
I will change this.
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Update (build 283)
Changes :
- fixed some problems with relative image paths
- relative image paths are now also used in generated code for IncludeBinary _filename_.
Changes :
- fixed some problems with relative image paths
- relative image paths are now also used in generated code for IncludeBinary _filename_.
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).