controlpanelui/examples/viewplugin/src/cpsampleview.cpp
branchGCC_SURGE
changeset 27 848a3adde87f
parent 25 19394c261aa5
equal deleted inserted replaced
16:8c9427577f2a 27:848a3adde87f
    58 }
    58 }
    59 
    59 
    60 void CpSampleView::sliderValueChanged(int value)
    60 void CpSampleView::sliderValueChanged(int value)
    61 {
    61 {
    62     //TODO: store your changes
    62     //TODO: store your changes
    63     HbMessageBox::launchInformationMessageBox(QString("slider value changed to:%1").arg(value));
    63    // HbMessageBox::message(QString("slider value changed to:%1").arg(value));
    64 }
    64 }
    65 void CpSampleView::checkBoxStateChanged(int state)
    65 void CpSampleView::checkBoxStateChanged(int state)
    66 {
    66 {
    67     //TODO: store your changes
    67     //TODO: store your changes
    68     QString str = (state ? "checked" : "un-checked");
    68     QString str = (state ? "checked" : "un-checked");
    69     HbMessageBox::launchInformationMessageBox(str);
    69    // HbMessageBox::message(str);
    70 }
    70 }
    71 
    71