Hello All,

Could anybody answer me also. Is the Q_PARAMETER the way to do the following:
Qt Code:
  1. megaInst.priority = MyClass::VeryHigh;
To copy to clipboard, switch view to plain text mode 
or it always have to be
Qt Code:
  1. megaInst.setPriority(MyClass::VeryHigh);
To copy to clipboard, switch view to plain text mode 
(I mean a variable imitation but not function call). If not, what a purpose of Q_PROPERTY if you have to reach property as function?

Or is there any other way to do that?

Thanks