本文整理汇总了C++中IconButton::setGeometry方法的典型用法代码示例。如果您正苦于以下问题:C++ IconButton::setGeometry方法的具体用法?C++ IconButton::setGeometry怎么用?C++ IconButton::setGeometry使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IconButton
的用法示例。
在下文中一共展示了IconButton::setGeometry方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: updateGeometries
void ExLineEdit::updateGeometries()
{
QStyleOptionFrameV2 panel;
initStyleOption(&panel);
QRect rect = style()->subElementRect(QStyle::SE_LineEditContents, &panel, this);
int padding = 3;
int width = rect.width();
int clearButton_W = this->height();
int icons_W = 0;
int icon_H = this->height() -2;
int icon_W = icon_H - 4;
for (int i = 0; i < m_left_icons.count(); i++)
{
IconButton *bt = m_left_icons.at(i);
bt->setGeometry(rect.x() + 2 + icons_W,1, icon_W, icon_H);
icons_W += icon_W ;
}
m_lineEdit->setGeometry(rect.x() + 2 + icons_W, padding,
width - clearButton_W - icons_W, this->height() - padding*2);
m_clearButton->setGeometry(this->width() - clearButton_W, 0,
clearButton_W, this->height());
}