Creating a gui editor

For my school project, I would like to create a gui that someone can use to create a gui. From some studies, I have seen many gui builders, but have not seen anything according to what I am looking for.

But then I found a tutorial using C # on here

I rather create this gui editor for the linux environment.

Any suggestions on where I should start? what tools can i use? Any links to any tutorials?

Any help / direction would be greatly appreciated.

PS I would like to add that it just has to be very simple. as several text input fields and some button type fields that the user can organize in the desired order.

+3
source share
4 answers

I would recommend you not try to create your own GUI. This is a difficult task that you cannot complete in a school project. C ++ is fully compiled, which means that it does not have almost every function that allows people to create meta-tools (for example, graphic editors). This is mainly due to the fact that C ++ is not reflected at runtime (initially, anyway). Other than that, there is no "one GUI toolkit and / or paradigm to manage them all." This makes your problem incredibly difficult to solve.

: Qt, , , GUI, Gtk +, Tk, FLTK, YAAF, GLUI, dlib, CLX...

, . , , .

+6

, . , , window (300, 400, "window1" ) (50, 100, "button1" ) .. ( GUI, ), , , , , , . , .

+1

, , . Gtk GtkBuilder. Glade ( Gtk gui) XML , GtkBuilder.

, XML , GtkBuilder.

, XML.

0

GTK + Qt, Linux. , gui, , , c/++, . , gui gui ? gui, .

gtk. ( gtk + - )

http://books.google.com/books?id=L1BZZYRrqSgC&printsec=frontcover&dq=foundations+krause&hl=es&cd=1#v=onepage&q=&f=false

/ gtk +.

http://zetcode.com/tutorials/gtktutorial/

The official documentation is at library.gnome.org

My last tip is learning one at a time.

0
source

Source: https://habr.com/ru/post/1737595/


All Articles