In qt, how do I implement a widget that stays consistent with variables in the code. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T11:06:51Z http://stackoverflow.com/feeds/question/818981 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/818981/in-qt-how-do-i-implement-a-widget-that-stays-consistent-with-variables-in-the-co 1 In qt, how do I implement a widget that stays consistent with variables in the code. Neil G 2009-05-04T06:24:06Z 2009-05-04T15:30:23Z <p>Here's a sample of a SpinBox that writes its changes to underlying variables. The main problem that I'm having is valueChanged is called when the widget is constructed. Is there a more elegant way to do this? I think it's weird that I connected a widget to itself, but valueChanged isn't virtual.</p> <pre><code>class ValueWriterInt: public QSpinBox { Q_OBJECT public: ValueWriterInt(vector&lt;int*&gt; const&amp; value): myValue(value) { QObject::connect(this, SIGNAL(valueChanged(int)), this, SLOT(valueChanged(int))); } ~ValueWriterInt() {} private slots: void valueChanged(int new_value) { for (auto it = myValue.begin(); it != myValue.end(); ++it) **it = new_value; } private: vector&lt;int*&gt; myValue; }; </code></pre> http://stackoverflow.com/questions/818981/in-qt-how-do-i-implement-a-widget-that-stays-consistent-with-variables-in-the-co/819037#819037 0 Answer by Alex Martelli for In qt, how do I implement a widget that stays consistent with variables in the code. Alex Martelli 2009-05-04T06:53:45Z 2009-05-04T06:53:45Z <p>So what are you trying to accomplish here? Yep, valueChanged ain't virtual -- why should it be, your objects should directly connect <em>their own</em> slots to whatever signals they want to react to, no?</p> http://stackoverflow.com/questions/818981/in-qt-how-do-i-implement-a-widget-that-stays-consistent-with-variables-in-the-co/819311#819311 0 Answer by Cătălin Pitiș for In qt, how do I implement a widget that stays consistent with variables in the code. Cătălin Pitiș 2009-05-04T08:48:05Z 2009-05-04T08:48:05Z <p>I see no other alternative than to use SIGNAL-SLOT connections. However, I would change the name of the slot, so it doesn't have the same name as the signal.</p> <p>It is intriguing how the slot is called even if there is no connection done yet. I suspect that changing the name of the slot will solve that issue.</p> http://stackoverflow.com/questions/818981/in-qt-how-do-i-implement-a-widget-that-stays-consistent-with-variables-in-the-co/820596#820596 1 Answer by A. Levy for In qt, how do I implement a widget that stays consistent with variables in the code. A. Levy 2009-05-04T15:30:23Z 2009-05-04T15:30:23Z <p>I see nothing particularly weird about connecting a widget to itself. Having a single method of detecting and responding to data updates actually sounds like a good thing because you have fewer points of failure to check when you are debugging. In your specific case, it is causing some undesired behavior, but in general it is a fine solution.</p> <p>Now, having expressed the opinion that a reflexive connection isn't inherently inelegant, I am going to suggest a less than "elegant" solution to prevent the calling of <code>valueChanged</code> after construction. You can have a flag to determine whether the object was just constructed and return early to prevent the code being run immediately after construction. In your example:</p> <pre><code>class ValueWriterInt: public QSpinBox { Q_OBJECT public: ValueWriterInt(vector&lt;int*&gt; const&amp; value): myValue(value), myAfterInit(true) { QObject::connect(this, SIGNAL(valueChanged(int)), this, SLOT(valueChanged(int))); } ~ValueWriterInt() {} private slots: void valueChanged(int new_value) { if (myAfterInit) { myAfterInit = false; return; } for (auto it = myValue.begin(); it != myValue.end(); ++it) **it = new_value; } private: vector&lt;int*&gt; myValue; boolean myAfterInit; }; </code></pre> <p>That isn't too bad of a solution. It will at least give you your desired behavior until (and if) you can find a more elegant method.</p>