PureFORM 1.99 (yet another FORM designer)
Moderator: gnozal
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Update
Changes :
- added support for panelgadget tab icons (see 'Items' tab in gadget properties)
- extra check : any >"< found in a gadget text is replaced with >'<
Changes :
- added support for panelgadget tab icons (see 'Items' tab in gadget properties)
- extra check : any >"< found in a gadget text is replaced with >'<
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
- cabaptista
- User
- Posts: 86
- Joined: Sun Nov 30, 2003 11:42 pm
- Location: Lisboa, Portugal
Great.
Many Thanks.
But can i make one suggestion ?
Change the comboBox of "Control, ALt and Shift" keys to checkboxes, because in that way i can make several combinations like "Ctrl+Shift+F" for example.
In this way i can´t make that combination.
Sorry because when i make this suggestion doesn't tell you to try to make this way.
Other thing: In preview mode the shortcut keys that i create for menu are assimilated by PureFORM application. For example i define Ctrl+N for a "New" menu Item. When in preview mode, if i select "New" from Menu, it selects the "select project to merge" from PureFORM application. But i works ok if i press Ctrl+N keys.
Thanks in advance.
César Baptista
Many Thanks.
But can i make one suggestion ?
Change the comboBox of "Control, ALt and Shift" keys to checkboxes, because in that way i can make several combinations like "Ctrl+Shift+F" for example.
In this way i can´t make that combination.
Sorry because when i make this suggestion doesn't tell you to try to make this way.

Other thing: In preview mode the shortcut keys that i create for menu are assimilated by PureFORM application. For example i define Ctrl+N for a "New" menu Item. When in preview mode, if i select "New" from Menu, it selects the "select project to merge" from PureFORM application. But i works ok if i press Ctrl+N keys.
Thanks in advance.
César Baptista
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Damn ...cabaptista wrote:Change the comboBox of "Control, ALt and Shift" keys to checkboxes, because in that way i can make several combinations like "Ctrl+Shift+F" for example.
In this way i can´t make that combination.
Sorry because when i make this suggestion doesn't tell you to try to make this way.
The preview mode only previews the GUI, not the functionality. Use Compile/Run [F6|F7] for this.cabaptista wrote:Other thing: In preview mode the shortcut keys that i create for menu are assimilated by PureFORM application.
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:
No.Hurga wrote:I have another question. Is it ossible to change the typ of gadget with keeping all the other things?
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
- cabaptista
- User
- Posts: 86
- Joined: Sun Nov 30, 2003 11:42 pm
- Location: Lisboa, Portugal
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Update
Changes :
- fixed issue with " and custom gadget code
- added \q special character for double quote
- added treegadget in preferences window
Changes :
- fixed issue with " and custom gadget code
- added \q special character for double quote
- added treegadget in preferences window
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:
You mean like the default colors for each class ?le_magn wrote:Hi gnozal, in the future version of Pureform is any possibility to add in preference "default font for a various type of gadget" ? Thanks very much for your works
Ok, on the to do list.
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
Gnozal, thank you for the continuous updates!
I have one question (maybe I asked for it before, I'm not sure):
I have a small application with 3 Openfile buttons. Each button use the same icon (yellow folder sign).
I dont know why, but the image ids of the three images are:
#Image_ButtonImage_6
#Image_ButtonImage_12
#Image_ButtonImage_8
You know I am a nitpicker
and I want to correct this IDs manually to:
#Image_ButtonImage_1
#Image_ButtonImage_2
#Image_ButtonImage_3
... but the field for the Image IDs in the integrator is disabled, so I am not able to overwrite it.
Is there a chance that you enable this editfielt in the future? (don't know how much following work this would bring)
I have one question (maybe I asked for it before, I'm not sure):
Code: Select all
Enumeration
#Image_ButtonImage_6
#Image_ButtonImage_12
#Image_ButtonImage_8
EndEnumeration
DataSection
Image_ButtonImage_6:
IncludeBinary "C:\Programme\PureBasic\! Meine Projekte\Register-Check\Daten\Images\folder.bmp"
EndDataSection
[...]
ButtonImageGadget(#ButtonImage_LoadSource, 340, 30, 25, 20, CatchImage(#Image_ButtonImage_6, ?Image_ButtonImage_6))
[...]
ButtonImageGadget(#ButtonImage_LoadAddress, 340, 80, 25, 20, CatchImage(#Image_ButtonImage_12, ?Image_ButtonImage_6))
[...]
ButtonImageGadget(#ButtonImage_LoadDestination, 340, 130, 25, 20, CatchImage(#Image_ButtonImage_8, ?Image_ButtonImage_6))
I dont know why, but the image ids of the three images are:
#Image_ButtonImage_6
#Image_ButtonImage_12
#Image_ButtonImage_8
You know I am a nitpicker

#Image_ButtonImage_1
#Image_ButtonImage_2
#Image_ButtonImage_3
... but the field for the Image IDs in the integrator is disabled, so I am not able to overwrite it.
Is there a chance that you enable this editfielt in the future? (don't know how much following work this would bring)
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Well, it's easy to change [i.e. make it editable] ; I will make it optional though, so if you mess around with the image IDs it's not my faultkurzer wrote:You know I am a nitpickerand I want to correct this IDs manually to:
#Image_ButtonImage_1
#Image_ButtonImage_2
#Image_ButtonImage_3
... but the field for the Image IDs in the integrator is disabled, so I am not able to overwrite it.
Is there a chance that you enable this editfielt in the future?

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
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.
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.
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).