1. my Quest for the best wysiwyg GUI for Euphoria: Can an xml file created by XRCed work with wxEuphoria ?
- Posted by vmars Feb 26, 2009
- 1166 views
Greetings;
My Quest for the best wysiwyg GUI for Euphoria: I am wondering can an xml file created by XRCed work with wxEuphoria.
XRCed has a nice little GUI: (http://xrced.sourceforge.net/)
"XRCed is a simple resource editor for wxWidgets/wxPython GUI development which supports creating and editing files in XRC format It is written in Python and uses wxPython GUI toolkit (which mirrors wxEuphoria)." Thanks! ...Vern
2. Re: my Quest for the best wysiwyg GUI for Euphoria: Can an xml file created by XRCed work with wxEuphoria ?
- Posted by mattlewis (admin) Feb 26, 2009
- 1190 views
Greetings;
My Quest for the best wysiwyg GUI for Euphoria: I am wondering can an xml file created by XRCed work with wxEuphoria.
XRCed has a nice little GUI: (http://xrced.sourceforge.net/)
"XRCed is a simple resource editor for wxWidgets/wxPython GUI development which supports creating and editing files in XRC format It is written in Python and uses wxPython GUI toolkit (which mirrors wxEuphoria)."
In theory, yes. I haven't tested it, but Greg has wrapped the XRC stuff for wxEuphoria.
I can't promise when wxIDE's graphical designer will work. It's something I started working on a while back, but I'm not sure when I'll have enough time to get it functional.
Matt
3. Re: my Quest for the best wysiwyg GUI for Euphoria: Can an xml file created by XRCed work with wxEuphoria ?
- Posted by vmars Feb 26, 2009
- 1133 views
- Last edited Feb 27, 2009
How horrendous a job do you think it would be
converting XRCed from Python to Euphoria? Thanks! ...Vern
4. Re: my Quest for the best wysiwyg GUI for Euphoria: Can an xml file created by XRCed work with wxEuphoria ?
- Posted by vmars Feb 27, 2009
- 1098 views
- Last edited Feb 28, 2009
Ok, Matt, I found that thread:
http://openeuphoria.org/EUforum/index.cgi?module=forum&action=flat&id=103666
How will we know when XRCed is safe to run under wxEuphoria ?
What/where should I look for this ?
Sorry to be so stupid:
If I have wxEuphoria , would I still need the wxWidgetrs individually , other than for reference ?
Thanks
5. Re: my Quest for the best wysiwyg GUI for Euphoria: Can an xml file created by XRCed work with wxEuphoria ?
- Posted by mattlewis (admin) Feb 27, 2009
- 1106 views
- Last edited Feb 28, 2009
Ok, Matt, I found that thread:
http://openeuphoria.org/EUforum/index.cgi?module=forum&action=flat&id=103666
How will we know when XRCed is safe to run under wxEuphoria ?
What/where should I look for this ?
I'd say try it and see. Basically, you're going to get an xml file from XRCed. You should be able to use that in wxEuphoria. I haven't really used the XRC stuff. Greg wrapped that, and there is a demo that you could look at.
Sorry to be so stupid:
If I have wxEuphoria , would I still need the wxWidgetrs individually , other than for reference ?
wxEuphoria is basically a wrapper around wxWidgets. If you're using Windows, then you got a binary version of wxWidgets (that's the large dll, named wxmsw28u_eu.dll, or something similar). You can also build it from source, if you have OpenWatcom installed. It's not very difficult (one warning, I think that v2.8.9 does not build correctly with OpenWatcom, so use v2.8.7 or 8). If you're using Linux, then you can either use the version of wxWidgets that your disto's package manager supplies, or build it from source (which is pretty easy to do).
It's useful to sometimes refer to the wxWidgets documentation. The wxEuphoria documentation often hyperlinks to the wxWidgets documentation. When you're looking at the documentation for a particular class, there should be a link on the right hand side that will take you to the online version of the wxWidgets documentation.
Most wxEuphoria routines are used exactly like the wxWidgets routines. There are some places where wxEuphoria does a little more work for you, and combines what are actually multiple calls to wxWidgets code, but in general, the documentation for wxWidgets applies to wxEuphoria.
Matt
Matt
6. Re: my Quest for the best wysiwyg GUI for Euphoria: Can an xml file created by XRCed work with wxEuphoria ?
- Posted by ghaberek (admin) Feb 28, 2009
- 1089 views
Most wxEuphoria routines are used exactly like the wxWidgets routines. There are some places where wxEuphoria does a little more work for you, and combines what are actually multiple calls to wxWidgets code, but in general, the documentation for wxWidgets applies to wxEuphoria.
Also note: you may find parts of classes missing because we haven't wrapped them yet. When I wrap a class, I try to wrap all of it, but sometimes I just throw in whatever I need at the moment for testing, and work on the rest later.
-Greg
7. Re: my Quest for the best wysiwyg GUI for Euphoria: Can an xml file created by XRCed work with wxEuphoria ?
- Posted by mattlewis (admin) Feb 28, 2009
- 1095 views
Also note: you may find parts of classes missing because we haven't wrapped them yet. When I wrap a class, I try to wrap all of it, but sometimes I just throw in whatever I need at the moment for testing, and work on the rest later.
Pshaw. I've never done that... :P
Actually, with the 'automatic' wrapping, it's a lot easier to get lots of stuff wrapped. Just be glad you're not working on the library back when I was directly importing C symbols...shudder...
Matt
8. Re: my Quest for the best wysiwyg GUI for Euphoria: Can an xml file created by XRCed work with wxEuphoria ?
- Posted by ghaberek (admin) Feb 28, 2009
- 1086 views
Pshaw. I've never done that... :P
Actually, with the 'automatic' wrapping, it's a lot easier to get lots of stuff wrapped. Just be glad you're not working on the library back when I was directly importing C symbols...shudder...
I think, I've had too much caffeine today.
-Greg
9. Re: Greg has wrapped the XRC stuff for wxEuphoria.
- Posted by vmars Mar 02, 2009
- 1067 views
- Last edited Mar 03, 2009
Hi Greg; In a Post, Someone mentioned:
Could you aim me at that url. I would like to try it. I found a demo pgm called 'xrc_demo.exw' with 'xrc_demo.xrc' .
And ran the 'xrc_demo.xrc' thru XRCed.
And all went swell.
Also, can your recommend a Win Editor for Euphoria, something with syntax highlighting?
Thank you very much! ...Vern [newbie]
10. Re: Greg has wrapped the XRC stuff for wxEuphoria.
- Posted by vmars Mar 03, 2009
- 1073 views
Oops!
I mean a Win Editor for wxEuphoria.
Win as opposed to dos, and wxEuphoria as opposed to win32Euphoria.
Thanks!
11. Re: Greg has wrapped the XRC stuff for wxEuphoria.
- Posted by vmars Mar 03, 2009
- 1067 views
...someone mentioned:
In theory, yes. I haven't tested it, but Greg has wrapped the XRC stuff for wxEuphoria.
Two Posts ago the above line got deleted because I surrounded it with ltlt and gtgt.
Anyways what I am after is a wrapped Euphoria XRC .
Thanks!
12. Re: my Quest for the best wysiwyg GUI for Euphoria: Can an xml file created by XRCed work with wxEuphoria ?
- Posted by GeorgeWalters Mar 03, 2009
- 1051 views
[quote ghaberek]
Pshaw. I've never done that... :P
I think, I've had too much caffeine today.
-Greg
Geez Greg, that's pretty good