views:

586

answers:

4

Hi,

I'm searching for an open source runtime form designer (for SCADA, not searching for html designer), which is somewhat similar to modern IDE WYSIWYG's. So far, my list is empty.

Requirements are crossplatform and C++.

Thanks in advance.

UPDATE:

Currently I'm using wxWidgets as the GUI platform. So the possible solutions are either open-source wxWidgets based form designer, or the wxWidgets component/lib.

UPDATE 2:

Found the wxShapeFramework component which is I was looking for. At the moment this is the only option.

A: 

Maybe Qt would satisfy your needs. It is possible to extend it's functionality with new components. It's not out-of-the-box solution, but may fulfill this role.

samuil
I'm currently using wxWidgets, which is also open-source GUI toolkit. The problem is that I don't want to create runtime form designer from scratch..
Andrejs Cainikovs
Part of Qt is Qt Designer (I have no idea, how is it licensed), which might be foundation of your application. I'm sure it's a lot of work, to make it work, but still - you wouldn't start from scratch.
samuil
A: 

How about Glade and gtkmm?

Devon_C_Miller
That's an option.. But still, with wxShapeFramework development will be faster.
Andrejs Cainikovs
A: 

I'm going to use wxShapeFramework, which purpose is exactly as described in question (SCADA runtime form designer). Especially because the project is based on wxWidgets.

Andrejs Cainikovs