Map widget to variable?
Unsolved
General and Desktop
-
I'm working on porting an MFC app to Qt. One of the features of MFC is that you can map a dialog control to a member variable so that if the control changes the variable is updated automatically, and if the variable is set when the dialog is displayed the control automatically displays that value. Is there a similar mechanism in Qt? Or do you have to use signals/slots to do this manually?
-
differnt IO models..use the signals to alert if something is updated.
-
differnt IO models..use the signals to alert if something is updated.
@Kent-Dorfman said in Map widget to variable?:
differnt IO models..use the signals to alert if something is updated.
I figured as much, just wanted to make sure I wasn’t missing something obvious