int paintButtons( const int &x, const int &y, const int &footerwidth, const int &count, const button_label * const content, const int &maxwidth, const int &footerheight) { return paintButtons(content, count, x, y, footerwidth, footerheight, maxwidth, true, NULL, NULL); };
void UBGraphicsProtractor::paint(QPainter *painter, const QStyleOptionGraphicsItem *styleOption, QWidget *widget) { painter->save(); Q_UNUSED(styleOption); Q_UNUSED(widget); painter->setFont(QFont("Arial")); painter->setPen(drawColor()); painter->setBrush(fillBrush()); painter->drawPie(QRectF(rect().center().x() - radius(), rect().center().y() - radius(), 2 * radius(), 2 * radius()), mStartAngle * 16, mSpan * 16); paintGraduations(painter); paintButtons(painter); paintAngleMarker(painter); painter->restore(); }
int paintButtons( const button_label * const content, const int &count, const int &x, const int &y, const int &footerwidth, const int &footerheight, const int &maxwidth, bool show, int *wantedwidth, int *wantedheight) { button_label_ext content_ext[count]; for (int i = 0; i < count; i++) { content_ext[i].button = content[i].button; content_ext[i].locale = content[i].locale; content_ext[i].text = NULL; content_ext[i].width = 0; content_ext[i].maximize = false; } return paintButtons(content_ext, count, x, y, footerwidth, footerheight, maxwidth, show, wantedwidth, wantedheight); }
int CMessageBox::exec(int timeout) { neutrino_msg_t msg; neutrino_msg_data_t data; int res = menu_return::RETURN_REPAINT; CHintBoxExt::paint(0); if (m_window == NULL) { return res; /* out of memory */ } paintButtons(); if ( timeout == -1 ) timeout = g_settings.timing[SNeutrinoSettings::TIMING_EPG]; unsigned long long timeoutEnd = CRCInput::calcTimeoutEnd( timeout ); bool loop=true; while (loop) { g_RCInput->getMsgAbsoluteTimeout( &msg, &data, &timeoutEnd ); if (msg == CRCInput::RC_timeout && returnDefaultOnTimeout) { // return default loop = false; } else if (((msg == CRCInput::RC_timeout) || (msg == (neutrino_msg_t)g_settings.key_channelList_cancel)) && (showbuttons & (mbCancel | mbBack))) { result = (showbuttons & mbCancel) ? mbrCancel : mbrBack; loop = false; } else if ((msg == CRCInput::RC_green) && (showbuttons & mbNo)) { result = mbrNo; loop = false; } else if ((msg == CRCInput::RC_red) && (showbuttons & mbYes)) { result = mbrYes; loop = false; } else if(msg==CRCInput::RC_right) { bool ok = false; while (!ok) { result = (CMessageBox::result_)((result + 1) & 3); ok = showbuttons & (1 << result); } paintButtons(); } else if (has_scrollbar() && ((msg == CRCInput::RC_up) || (msg == CRCInput::RC_down))) { if (msg == CRCInput::RC_up) scroll_up(); else scroll_down(); } else if(msg==CRCInput::RC_left) { bool ok = false; while (!ok) { result = (CMessageBox::result_)((result - 1) & 3); ok = showbuttons & (1 << result); } paintButtons(); } else if(msg == CRCInput::RC_ok) { loop = false; } else if((msg == CRCInput::RC_sat) || (msg == CRCInput::RC_favorites)) { } else if (CNeutrinoApp::getInstance()->handleMsg(msg, data) & messages_return::cancel_all) { res = menu_return::RETURN_EXIT_ALL; loop = false; } } hide(); return res; }