up vote 3 down vote favorite
share [g+] share [fb]

I'm making use of Q_PROPERTYs in my project, and I'm trying to figure out the best way to add some attributes to those properties (like min and max value).

It doesn't look like there's any where to store such attributes on the property itself... so I guess I have to store it on the object... statically, since the ranges will be the same for all instances of that class.

Looks like I may need a triplet, <propertyName, attributeName, value>.

What should I do? Use a QMap<QString, QVariant> and collapse the first two to "propertyName/attributeName"? If so, where would you initialize this map?

link|improve this question

70% accept rate
1  
Maybe I can abuse QMetaClassInfo? – Mark Sep 7 '09 at 20:41
feedback

1 Answer

up vote 1 down vote accepted

Maybe have the property and other properties to describe the min/max values. It is straightforward and easy to understand and use- which to me is a plus.

link|improve this answer
Have a property to describe another property? I could do it.... but it doesn't seem very elegant. Oh well.. – Mark Sep 30 '09 at 15:45
feedback

Your Answer

 
or
required, but never shown

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