ProGUI Update, Graph Library and Experimental V2

Developed or developing a new product in PureBasic? Tell the world about it.
PrincieD
Enthusiast
Enthusiast
Posts: 642
Joined: Wed Aug 10, 2005 2:08 pm
Location: Yorkshire, England
Contact:

Re: ProGUI Update, Graph Library and Experimental V2

Post by PrincieD »

coffee wrote:hi, i bought your lib/dll to first support you and second i need the graph (sort of) and i like the rest.
can you add some demos for the graph and v2 that will run out of the box for the stupid among us - like me?
thanks and good luck.

ps
i kind of have to share your fate.
Hi Coffee, thanks! yes there is a test.pb source in the "Source Code\Graph Library" directory that shows most of the graph features (and how to use).

Chris.
ProGUI - Professional Graphical User Interface Library - http://www.progui.co.uk
User avatar
yoxola
Enthusiast
Enthusiast
Posts: 383
Joined: Sat Feb 25, 2006 4:23 pm

Re: ProGUI Update, Graph Library and Experimental V2

Post by yoxola »

Hi, I just found the mail by using search inbox, will look into it after day work, thanks for inconvenience.
This field was left intentionally as signature.
PrincieD
Enthusiast
Enthusiast
Posts: 642
Joined: Wed Aug 10, 2005 2:08 pm
Location: Yorkshire, England
Contact:

Re: ProGUI Update, Graph Library and Experimental V2

Post by PrincieD »

yoxola wrote:Hi, I just found the mail by using search inbox, will look into it after day work, thanks for inconvenience.
No worries man :)
ProGUI - Professional Graphical User Interface Library - http://www.progui.co.uk
coffee
User
User
Posts: 77
Joined: Fri Oct 06, 2017 10:43 am

Re: ProGUI Update, Graph Library and Experimental V2

Post by coffee »

Hi,

i try to compile the GraphTest.pb from "Source Code\Source Code - ProGUI_V2_Experimental"

Code: Select all

Procedure Open_Window_0()
  
  SetUIColourMode(#UICOLOURMODE_DEFAULT_GREY)
  
OpenWindow(#Window_0, 0, 0, #windowWidth, #windowHeight, "Test", #PB_Window_ScreenCentered | #PB_Window_SizeGadget | #PB_Window_MinimizeGadget | #PB_Window_MaximizeGadget | #PB_Window_Invisible)
  LimitWindowSize(WindowID(#Window_0), 264, 200, 0, 0)
  
the program will not run, it dies OpenWindow.
any help?
PrincieD
Enthusiast
Enthusiast
Posts: 642
Joined: Wed Aug 10, 2005 2:08 pm
Location: Yorkshire, England
Contact:

Re: ProGUI Update, Graph Library and Experimental V2

Post by PrincieD »

coffee wrote:Hi,

i try to compile the GraphTest.pb from "Source Code\Source Code - ProGUI_V2_Experimental"

the program will not run, it dies OpenWindow.
any help?
Hi Coffee, the experimental ProGUI V2 source only works when compiled for 32bit exes at the moment due to the hooking routines (the x64 asm needs coding still).
Hopefully it should work when compiled on 32bit PureBasic. The V2 graph code does have really nice scrolling and zooming though :)

Chris.
ProGUI - Professional Graphical User Interface Library - http://www.progui.co.uk
coffee
User
User
Posts: 77
Joined: Fri Oct 06, 2017 10:43 am

Re: ProGUI Update, Graph Library and Experimental V2

Post by coffee »

yes, i looked at its functionality and i really, really like it.
but the bad part is, that i need to use x64. any chance that there will be a fix?
PrincieD
Enthusiast
Enthusiast
Posts: 642
Joined: Wed Aug 10, 2005 2:08 pm
Location: Yorkshire, England
Contact:

Re: ProGUI Update, Graph Library and Experimental V2

Post by PrincieD »

coffee wrote:yes, i looked at its functionality and i really, really like it.
but the bad part is, that i need to use x64. any chance that there will be a fix?
You should be able to run it on x64 if you comment out the "hook_Init()" procedure call in ProGUI_Init() however diverted rendering of none ProGUI controls (inside a PanelEx page) won't work and I haven't tested this! should work though :)

Chris.
ProGUI - Professional Graphical User Interface Library - http://www.progui.co.uk
coffee
User
User
Posts: 77
Joined: Fri Oct 06, 2017 10:43 am

Re: ProGUI Update, Graph Library and Experimental V2

Post by coffee »

GREAT :) it works.
but you should fix this. after reading the docs and looking at some of the demos, i think i am going to use this library. it looks so much more modern then the standard purebasic.
please keep on working on the V2.
PrincieD
Enthusiast
Enthusiast
Posts: 642
Joined: Wed Aug 10, 2005 2:08 pm
Location: Yorkshire, England
Contact:

Re: ProGUI Update, Graph Library and Experimental V2

Post by PrincieD »

coffee wrote:GREAT :) it works.
but you should fix this. after reading the docs and looking at some of the demos, i think i am going to use this library. it looks so much more modern then the standard purebasic.
please keep on working on the V2.
Great stuff! glad it works :)
ProGUI - Professional Graphical User Interface Library - http://www.progui.co.uk
User avatar
X0r
Enthusiast
Enthusiast
Posts: 138
Joined: Tue May 01, 2007 3:49 am
Location: Germany

Re: ProGUI Update, Graph Library and Experimental V2

Post by X0r »

Hey Chris,

do have any plans to fix the mentioned bug concerning the text color of menu items? Also, what is about DPI Awareness?
PrincieD
Enthusiast
Enthusiast
Posts: 642
Joined: Wed Aug 10, 2005 2:08 pm
Location: Yorkshire, England
Contact:

Re: ProGUI Update, Graph Library and Experimental V2

Post by PrincieD »

X0r wrote:Hey Chris,

do have any plans to fix the mentioned bug concerning the text color of menu items? Also, what is about DPI Awareness?
It's on my list! although this would be fixed in V2 (along with DPI awareness) not for the V1.39/40 branch.

Chris.
ProGUI - Professional Graphical User Interface Library - http://www.progui.co.uk
User avatar
Cruster
User
User
Posts: 96
Joined: Fri Jan 23, 2004 12:05 am

Re: ProGUI Update, Graph Library and Experimental V2

Post by Cruster »

Great looking tool Chris :D Can I ask what's the plan with x64 support? It's been mentioned above as (I think) a work around, I'm wondering if you were planning on adding in full support? If so, any idea when?
PureBasic 4.3 registered user
PrincieD
Enthusiast
Enthusiast
Posts: 642
Joined: Wed Aug 10, 2005 2:08 pm
Location: Yorkshire, England
Contact:

Re: ProGUI Update, Graph Library and Experimental V2

Post by PrincieD »

Cruster wrote:Great looking tool Chris :D Can I ask what's the plan with x64 support? It's been mentioned above as (I think) a work around, I'm wondering if you were planning on adding in full support? If so, any idea when?
Thanks Cruster :) it's just a case of writing the x64 version of the hooking routines for it to run on both. There is quite a lot to do on it still though so I can 't say when.

Chris.
ProGUI - Professional Graphical User Interface Library - http://www.progui.co.uk
User avatar
Cruster
User
User
Posts: 96
Joined: Fri Jan 23, 2004 12:05 am

Re: ProGUI Update, Graph Library and Experimental V2

Post by Cruster »

No worries! I've got your website bookmarked and when it comes out I'll be buying a copy :-)
PureBasic 4.3 registered user
PrincieD
Enthusiast
Enthusiast
Posts: 642
Joined: Wed Aug 10, 2005 2:08 pm
Location: Yorkshire, England
Contact:

Re: ProGUI Update, Graph Library and Experimental V2

Post by PrincieD »

Hi guys,

Just a minor update to the V2 source code (but an important one!), the x64 diverted rendering hooks are now working :) yay!
I've sent an email out to gold/platinum users with a link to the updated source (let me know if you havn't received it).

Cheers!

Chris.
ProGUI - Professional Graphical User Interface Library - http://www.progui.co.uk
Post Reply