Hi,
Using Qt creator from SDK RC.
I have a QMaemo5ValueButton * widget, say buttonCrop that presents a list via a QMaemo5ListPickSelector * called selectorCrop.
When an item on the selector list is chosen I want another widgets value to change using a signal.
I've tried using QMaemo5ValueButton clicked() signal but this seems be be sent as the button is clicked not as the selection is made. I would have expected the clicked() event (or released which behaves the same way) to happen once the pick selection had been made.
I've tried using the click event of buttonCrop->selectorCrop->selected(QString) but the connect fails on execution.
Both these fail on execution with no signal found
connect( selectorCrop, SIGNAL(selectorCrop->selected(dummy)),this, SLOT(on_SelectorCropFactor_selected()));
connect ( buttonCrop, SIGNAL(buttonCrop->pickSelector()->selected(QString)), this, SLOT(on_SelectorCropFactor_selected()));
Any advice welcome.
BR David

Reply With Quote


