Oxygen Basic

Programming => Bugs & Feature Requests => Topic started by: Nicola on August 31, 2020, 05:24:33 AM

Title: O2 dialog editor
Post by: Nicola on August 31, 2020, 05:24:33 AM
Hello,
I wanted to know if there is a dialog editor for O2.  :D
I tried to do some research in the forum, but I didn't find anything ... :-[

I'd like to know if there is one that was specifically created for O2. I tried to use data from an RC file created with BCXedit, but it didn't work. I had to change the values ​​of the positions, heights and widths of the various objects used. :(

Thank you.
Title: Re: O2 dialog editor
Post by: JRS on August 31, 2020, 10:30:08 AM
I happen to like IUP for my cross platform GUI forms library. There is an example of using it in the distribution.

Title: Re: O2 dialog editor
Post by: Charles Pegge on August 31, 2020, 12:26:02 PM
No we haven't. Would youlike to build one, Nicola ? :)
Title: Re: O2 dialog editor
Post by: JRS on August 31, 2020, 12:41:47 PM
I thought James Fuller built a dialog tool for O2 using RC files.
Title: Re: O2 dialog editor
Post by: Charles Pegge on August 31, 2020, 12:57:05 PM
James's tool is buit into o2 for embedding resources (compiled with gorc) into exe files.

the syntax is:
Code: [Select]
uses xyz.res

But maybe I was thinking of a visual designer.
Title: Re: O2 dialog editor
Post by: JRS on August 31, 2020, 01:06:06 PM
It will be difficult to build an IDE as feature rich as VB6. I've moved toward keeping my UI as a portable component using COM/OLE automation as the glue.
Title: Re: O2 dialog editor
Post by: Nicola on September 01, 2020, 01:56:25 AM
No we haven't. Would youlike to build one, Nicola ? :)

Good idea ... I'd love to do that, but I'm new to o2. I am learning how to use o2 .... with your invaluable help. :)
Visual designer is also in my opinion the best solution.
Title: Re: O2 dialog editor
Post by: JRS on September 01, 2020, 02:03:00 AM
Love that enthusiasm and happy that you joined the O2 open source project.

Title: Re: O2 dialog editor
Post by: Nicola on September 02, 2020, 05:52:56 AM
Thanks, so am I. :D

Title: Re: O2 dialog editor
Post by: Nicola on September 14, 2020, 05:04:29 AM
Hi.
What do you think of Koda?
Title: Re: O2 dialog editor
Post by: JRS on September 14, 2020, 05:39:20 AM
There is an IUP editor example that might be a good place to start. I was thinking of using it as a cross platform solution for ScriptBasic as an IDE / Debugger. It also has a forms designer that could be incorporated.
Title: Re: O2 dialog editor
Post by: Nicola on September 14, 2020, 06:35:34 AM
@John

Where do I find this example?

Of course it is only applicable and with IUP or not?
Title: Re: O2 dialog editor
Post by: JRS on September 14, 2020, 06:49:24 AM
Here is where I left off adding a few formatting improvements.

https://sandbox.allbasic.info:8181/scriptbasic/sb-ide

It's in C but Charles has O2 examples in the distribution that will show you how to use it. The forms designer is actually a function call as part of IupShow() that would be a good starting point to incorporate in your IDE.
Title: Re: O2 dialog editor
Post by: Charles Pegge on September 14, 2020, 06:53:51 AM
You can find IUP examples in projectsB\IUP

projectsB\IUP\Scanf1.o2bas is a good demo
Title: Re: O2 dialog editor
Post by: JRS on September 14, 2020, 07:12:54 AM
Here is another IUP based IDE written in D for FreeBasic.

https://www.allbasic.info/forum/index.php?topic=516.msg5582#msg5582
Title: Re: O2 dialog editor
Post by: Nicola on September 22, 2020, 05:38:04 AM
@Charles.
Hi. I have seen this program (projectsB\IUP\Scanf1.o2bas). Very interesting.
But I noticed that there are two functions with the same name ... or am I wrong?

Code: [Select]
function ReplaceBN(char*fmt) as string
How come they don't produce an error?

When I click on the color button the program crashes and kicks me out. And even the multiline doesn't work ... only one line comes out ...
Title: Re: O2 dialog editor
Post by: JRS on September 22, 2020, 10:52:37 AM
The Scanf1.o2bas program doesn't run for me. Other O2 IUP examples seem to work fine.

IUP strings should be null terminated. With some languages you need to use IupStoreAttribute rather than IupSetAttribute with string passing.

Hint: when I run into a strange IUP issue I'll revert to trying it in C before declaring a bug.
Title: Re: O2 dialog editor
Post by: Charles Pegge on September 22, 2020, 03:59:49 PM
Hi Nicola,

function overrides are allowed in o2. If the prototypes are identical then the last function defined will be used.

The color button should bring up the color pdialog box. The problem may be with the IUP.dll version included vs windows10. I think it worked previously.
Title: Re: O2 dialog editor
Post by: JRS on September 25, 2020, 08:10:54 PM
The MonoDevelopment IDE source code may be a good resouce for your O2 project.

Web Site (https://www.monodevelop.com/)
Title: Re: O2 dialog editor
Post by: Nicola on October 05, 2020, 06:19:07 AM
Hi Charles

"function overrides are allowed in o2. If the prototypes are identical then the last function defined will be used."

This possibility is wonderful. So I could write a function ... then I write another with the same name, for example to try a different way of handling a given problem, and this replaces the previous one without creating problems. Quite right?
Title: Re: O2 dialog editor
Post by: JRS on October 05, 2020, 01:13:38 PM
This O2 feature could also be the foundation for variant support.

Or polymorphism towards an OOP direction.

 
Title: Re: O2 dialog editor
Post by: Charles Pegge on October 06, 2020, 02:15:03 PM

Yes Nicola, you can override functions and most other symbols, but be careful.