当前位置: 首页>>代码示例>>C++>>正文


C++ QPushButton::fontMetrics方法代码示例

本文整理汇总了C++中QPushButton::fontMetrics方法的典型用法代码示例。如果您正苦于以下问题:C++ QPushButton::fontMetrics方法的具体用法?C++ QPushButton::fontMetrics怎么用?C++ QPushButton::fontMetrics使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在QPushButton的用法示例。


在下文中一共展示了QPushButton::fontMetrics方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: QPushButton

QPushButton *minimumSizeButton(const std::string &text, QWidget *parent)
{
    QPushButton *button = new QPushButton(text.c_str(), parent);
    QSize textSize = button->fontMetrics().size(Qt::TextShowMnemonic, button->text());
    QStyleOptionButton opt;
    opt.initFrom(button);
    opt.rect.setSize(textSize);
    button->setMinimumSize(button->style()->sizeFromContents(QStyle::CT_PushButton, &opt, textSize, button));
    button->setMaximumSize(button->style()->sizeFromContents(QStyle::CT_PushButton, &opt, textSize, button));

    return button;
}
开发者ID:CgGraphic,项目名称:tungsten,代码行数:12,代码来源:QtUtils.cpp

示例2: init

//Construct the base GUI, and connect the signals
void FileLineEdit::init(QString title, QFileDialog::FileMode mode)
{
    //Layout
    QHBoxLayout *layout = new QHBoxLayout(this);
    layout->setSpacing(0);
    layout->setMargin(0);

    //Line edit
    _line = new QLineEdit();
    layout->addWidget(_line);
    CONNECT(_line, SIGNAL(textChanged(QString)), this, SLOT(updateFileName(QString)));

    //Button
    QPushButton *button = new QPushButton(tr("Select..."));
    //Reduce the button size so that it's not higher than the line edit, and not much larger than its text
    button->setMaximumHeight(_line->size().height()-5);
    button->setMaximumWidth(button->fontMetrics().boundingRect(button->text()).width()+15);
    layout->addWidget(button);
    CONNECT(button, SIGNAL(clicked()), this, SLOT(clicked()));

    //Create the file dialog and set its mode
    _fileDialog = new QFileDialog(this,title,QDir::homePath());
    _fileDialog->setFileMode(mode);
}
开发者ID:manasdas17,项目名称:uve,代码行数:25,代码来源:filelineedit.cpp


注:本文中的QPushButton::fontMetrics方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。