u/Hyperion_507

Can I create a GUI for my C++ program?

Hello, guys!

C++ is quite new for me; I'm studying it this semester at university, and I need to do a project. It consists of developing a program to manage a condominium, which requires four lists: Homeowners, Fractions, Balance, and Movements management. I declared a generic list with structs as data for each list's nodes (e.g. each Homeowner has its ID, Balance, Name, etc).

We need to show all the data and request all the arguments for the functions in a simple interface that we can run on the console, but I wanted to do a proper interface for this project. The answer to my question in the title of this post is probably yes, but I don't really know how. I wanted to show the lists (the class) in a list menu, show menus where the user could type or select the parameters to fill each new node, delete certain nodes, or perform certain actions (transactions, for example, which would change the value of the Homeowners' Balance and the condominium Balance, accordingly).

I'm currently using Qt Creator, which provides some support for interface development. Is it the optimal way? I wanted to learn a bit about interfaces in general.

reddit.com
u/Hyperion_507 — 7 days ago