In qt, how do I implement a widget that stays consistent with variables in the code. - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T11:06:51Zhttp://stackoverflow.com/feeds/question/818981http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/818981/in-qt-how-do-i-implement-a-widget-that-stays-consistent-with-variables-in-the-co1In qt, how do I implement a widget that stays consistent with variables in the code.Neil G2009-05-04T06:24:06Z2009-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<int*> const& 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<int*> 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#8190370Answer by Alex Martelli for In qt, how do I implement a widget that stays consistent with variables in the code.Alex Martelli2009-05-04T06:53:45Z2009-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#8193110Answer 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:05Z2009-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#8205961Answer by A. Levy for In qt, how do I implement a widget that stays consistent with variables in the code.A. Levy2009-05-04T15:30:23Z2009-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<int*> const& 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<int*> 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>