Pure Design, another Form Designer

Developed or developing a new product in PureBasic? Tell the world about it.
User avatar
ts-soft
Always Here
Always Here
Posts: 5756
Joined: Thu Jun 24, 2004 2:44 pm
Location: Berlin - Germany

Re: Pure Design, another Form Designer

Post by ts-soft »

gerd wrote:About the enumeration: What is the problem or short coming of the way PureDesign does it?

Code: Select all

Enumeration
  #Window_01 ;0
  #Window_02 ;1
  #Gadget_01 ;2 this create a GadgetList from 0 to 3 and the required memory is the double!
  #Gadget_02 ;3
EndEnumeration

Code: Select all

Enumeration
  #Window_01 ;0
  #Window_02 ;1
EndEnumeration

Enumeration
  #Gadget_01 ;0
  #Gadget_02 ;1 this create a GadgetList from 0 to 1
EndEnumeration
Use a Enumeration per Object, see helpfile!

Greetings Thomas
PureBasic 5.73 | SpiderBasic 2.30 | Windows 10 Pro (x64) | Linux Mint 20.1 (x64)
Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.
Image
User avatar
AL90
Enthusiast
Enthusiast
Posts: 217
Joined: Fri Sep 16, 2005 7:47 pm
Location: Germany
Contact:

Re: Pure Design, another Form Designer

Post by AL90 »

Is that project still in development?

Gefällt mir echt gut. Vor allen weil es sehr an PureForm angelehnt ist und eine Linux version gibt. :wink:
gerd
User
User
Posts: 94
Joined: Tue Feb 23, 2010 7:50 pm
Location: Germany

Re: Pure Design, another Form Designer

Post by gerd »

Hi AL90,

what can I say. Basically YES, but after the last release there were no suggestions for other features.

There was only one comment from Bisonte and ts-soft about the way PureDesign handles the enumeration.
And to change the Enumeration stuff, I need a lot of time, which I didn't have so far.

May be after summer I find some time to do it.

Regards
gerd
swan
Enthusiast
Enthusiast
Posts: 225
Joined: Sat Jul 03, 2004 9:04 am
Location: Sydney Australia
Contact:

Re: Pure Design, another Form Designer

Post by swan »

Hi gerd,
Have used PureDesign for a couple of small projects and think it's pretty good considering it's in it's early stages of development, particularly when I compare it to PureForm.
On top of my wishlist would be code injection or code infusion. Something I used regularly on small projects. I like the way Gnozal implemented it on PureForm, ie; event based.
Keyboard nudging for gadget placement, tooltips support, a user gadget option, a grid option with snap to and gadget copy/paste/clone would also be great (time permitting of course).
Gerd I encouage you to continue and hope others feel the same, Pure Design is too good to let slide, it's very close.
gerd
User
User
Posts: 94
Joined: Tue Feb 23, 2010 7:50 pm
Location: Germany

Re: Pure Design, another Form Designer

Post by gerd »

Hi swan,
thank you for your kind words and excuse the delay. But I have been very busy with other things and still I am, unfortunately.

I really would like to continue with PureDesign and add more functionality to it, as well as improve it. But the move to GTK3
put up a great hurdle for me. Some of the GTK2 functions obviously have changed with GTK3 and don't work any more,
but throw errors all over. And I am too bad as a programmer to overcome this.

So to make it short: I am stuck.

The only thing I can think of right now, would be to stick with PB 5.31 for any further development.
But this means also, any newer stuff from PB cannot be included.

May be whenever I find some more time. Sorry about that.

regards
gerd
swan
Enthusiast
Enthusiast
Posts: 225
Joined: Sat Jul 03, 2004 9:04 am
Location: Sydney Australia
Contact:

Re: Pure Design, another Form Designer

Post by swan »

Hi Gerd,
I understand and no need to apologise.
I have no Linux background experience so I can't offer much in return.
I never change PB versions once a project has started however I generally start with the latest version.
I hope one day you find time and a way around the issue.
Cheers,
Steve ....
Post Reply