void CWizDocumentView::on_tagsButton_clicked() { if (!m_tags) { m_tags = new CWizTagListWidget(m_dbMgr, topLevelWidget()); } m_tags->setDocument(m_web->document()); QPushButton* btn = m_title->tagsButton(); QRect rc = btn->geometry(); QPoint pt = btn->mapToGlobal(QPoint(rc.width() / 2, rc.height())); m_tags->showAtPoint(pt); }
void CWizDocumentView::on_infoButton_clicked() { if (!m_info) { m_info = new CWizNoteInfoForm(m_dbMgr, topLevelWidget()); } m_info->setDocument(m_web->document()); QPushButton* btn = m_title->infoButton(); QRect rc = btn->geometry(); QPoint pt = btn->mapToGlobal(QPoint(rc.width() / 2, rc.height())); m_info->showAtPoint(pt); }
void CWizDocumentView::on_attachmentButton_clicked() { if (!m_attachments) { m_attachments = new CWizAttachmentListWidget(m_app, topLevelWidget()); } m_attachments->setDocument(m_web->document()); QPushButton* btn = m_title->attachmentButton(); QRect rc = btn->geometry(); QPoint pt = btn->mapToGlobal(QPoint(rc.width() / 2, rc.height())); m_attachments->showAtPoint(pt); }
void QtPropertyDataDavaKeyedArcive::AddKeyedArchiveField() { QPushButton* btn = dynamic_cast<QPushButton*>(QObject::sender()); if(NULL != curArchive && NULL != btn) { KeyedArchiveItemWidget *w = new KeyedArchiveItemWidget(curArchive, lastAddedType); QObject::connect(w, SIGNAL(ValueReady(const DAVA::String&, const DAVA::VariantType&)), this, SLOT(NewKeyedArchiveFieldReady(const DAVA::String&, const DAVA::VariantType&))); w->show(); QRect bRect = btn->geometry(); QPoint bPos = btn->mapToGlobal(btn->mapFromParent(bRect.topLeft())); QRect wRect = w->geometry(); QPoint wPos = QPoint(bPos.x() - wRect.width() + bRect.width(), bPos.y() + bRect.height()); w->move(wPos); }
void ProcessingPipeline::upClicked( int id ) { if( !isVeryTopElement( id ) ) { int actualID = findId( currentProcessingStepOrder, id ); int oneButtonUpID = actualID - 1; std::swap( currentProcessingStepOrder[ actualID ], currentProcessingStepOrder[ oneButtonUpID ] ); actualID = getActualID( actualID ); oneButtonUpID = getActualID( oneButtonUpID ); // swap the down button positions QPushButton * clickedButtonDown = processingPipelineConfigWidget->getDownButtonById( actualID ); QRect tempPosDown = clickedButtonDown->geometry(); QPushButton * toSwapWithButtonDown = processingPipelineConfigWidget->getDownButtonById( oneButtonUpID ); clickedButtonDown->setGeometry( toSwapWithButtonDown->geometry() ); toSwapWithButtonDown->setGeometry( tempPosDown ); // swap the up button position QPushButton * clickedButtonUp = processingPipelineConfigWidget->getUpButtonByID( actualID ); QRect tempPosUp = clickedButtonUp->geometry(); QPushButton * toSwapWithButtonUp = processingPipelineConfigWidget->getUpButtonByID( oneButtonUpID ); clickedButtonUp->setGeometry( toSwapWithButtonUp->geometry() ); toSwapWithButtonUp->setGeometry( tempPosUp ); // swap labels QLabel * clickedLabel = processingPipelineConfigWidget->getLabelByID( actualID ); QRect tempPosLabel = clickedLabel->geometry(); QLabel * toSwapWithLabel = processingPipelineConfigWidget->getLabelByID( oneButtonUpID ); clickedLabel->setGeometry( toSwapWithLabel->geometry() ); toSwapWithLabel->setGeometry( tempPosLabel ); // config button QPushButton * clickedButtonConfig = processingPipelineConfigWidget->getConfigButtonByID( actualID ); QRect tempPosConfig = clickedButtonConfig->geometry(); QPushButton * toSwapWithButtonConfig = processingPipelineConfigWidget->getConfigButtonByID( oneButtonUpID ); clickedButtonConfig->setGeometry( toSwapWithButtonConfig->geometry() ); toSwapWithButtonConfig->setGeometry( tempPosConfig ); // checkbox QCheckBox * clickedCheckBox = processingPipelineConfigWidget->getCheckBoxByID( actualID ); QRect tempPosCheckbox = clickedCheckBox->geometry(); QCheckBox * toSwapWithCheckbox = processingPipelineConfigWidget->getCheckBoxByID( oneButtonUpID ); clickedCheckBox->setGeometry( toSwapWithCheckbox->geometry() ); toSwapWithCheckbox->setGeometry( tempPosCheckbox ); } }