vote up 4 vote down star
1

I want a widget like the properties window in Visual Studio or NetBeans. It basically has two columns: the name of the property on the left, and the value on the right. The value needs to be able to be restricted to certain types, like 'bool' or 'float' (with valid ranges), but should also support more complex types (perhaps requiring a popup dialog when clicked, and then it can just display a toString() version in the window. I'm sure I can add most of those features myself, but what's the best base widget to start with?

Oh... grouping of properties is good too (like a tree I guess). And property editing should invoke a callback (send a signal).

Exactly like this ^ is what I want.

flag

71% accept rate

3 Answers

vote up 4 vote down check

Yeah... see, I almost killed myself for nothing. Qt actually does have a class for this.

link|flag
1  
But how the heck do I get it?? :( Doesn't seem to come bundled with Qt, must DL it as an extension or something? – Mark Aug 18 at 6:50
1  
Ah -- qt.nokia.com/products/appdev/… – Mark Aug 18 at 6:51
Have you able to compile it successfully? stackoverflow.com/questions/1760447/… – Yan Cheng Cheok Nov 19 at 2:03
vote up 3 vote down

QTreeView or QTableView. Do all (ok, most) of the heavy lifting with a specialized model that handles all of your type restrictions and what-not. Check out delegates as well.

link|flag
vote up 2 vote down

Qt designer has properties exactly like you want. They are most likely implemented with QTreeView. You can always look at the source code.

qt designer

link|flag
You mean that's part of the Qt Designer program? Which is open source? Not sure I want to dig through such a massive program. I just need a simple example to look at >.< – Mark Aug 18 at 5:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.