本文整理汇总了C++中QPushButton::geometry方法的典型用法代码示例。如果您正苦于以下问题:C++ QPushButton::geometry方法的具体用法?C++ QPushButton::geometry怎么用?C++ QPushButton::geometry使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QPushButton
的用法示例。
在下文中一共展示了QPushButton::geometry方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: on_tagsButton_clicked
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);
}
示例2: on_infoButton_clicked
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);
}
示例3: on_attachmentButton_clicked
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);
}
示例4: AddKeyedArchiveField
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);
}
示例5: upClicked
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 );
}
}