PDA

View Full Version : [Question] Non standard-widget program



Abdeljalil
16th August 2014, 17:07
I'm working on a program, i prototyped the GUI and it's looks like this:
10560

the problem is that i don't know how to design this GUI.
should i use QtQuick for this? or i can do that like any regular Qt program?

anda_skoa
16th August 2014, 17:29
That should work with both QtQuick and QtWidgets

Cheers,
_

Abdeljalil
16th August 2014, 18:37
it's simple with QtQuick
but how can i do that with QtWidgets?

anda_skoa
17th August 2014, 04:01
What kind of problem do you see with widgets?

Layouting is probably a couple of nested layouts or a grid layout.
The two buttons should be straight forward, the search field might need a bit of customization on top of a line edit, the list view on the right looks also pretty easy.
The center view could either be a list view or a scroll area with an instance of a custom widget per entry.

Cheers,
_