Qt基础,布局设计,颜色对话框,字体对话框,标准输入对话框

1. 布局设计

   - mainLayout->addWidget(colorBtn, 1, 0);

   - mainLayout->addWidget(colorFrame, 1, 1);

   

2. 事件关联

   - connect(colorBtn, SIGNAL(clicked()), this, SLOT(showColor()));

   

3. 槽函数showColor()实现代码

   ```cpp

   void Dialog::showColor()

   {

       QColor c = QColorDialog::getColor(Qt::blue);

       if (c.isValid())

           colorFrame->setPalette(QPalette(c));

   }

   ```

   

4. 头文件引入

   - #include <QColorDialog>

5. 运行程序后的操作

   - 单击“颜色标准对话框实例”按钮,选择颜色后单击"OK"按钮,选定的颜色将显示在Dialog对话框右边的标签中。

标准字体对话框类

1. getFont()函数

   ```cpp

   QFont getFont();

   ```

2. 创建步骤

   - 在 "dialog.h" 中添加私有成员变量

     - QPushButton *fontBtn;

     - QLineEdit *fontLineEdit;

     

   - 添加槽函数

     ```cpp

     void showFont();

     ```

     

   - 在 "dialog.cpp" 的构造函数中添加代码

     ```cpp

     fontBtn = new QPushButton;

     fontBtn->setText(tr("字体标准对话框实例"));

     

     fontLineEdit = new QLineEdit;

     fontLineEdit->setText(tr("Welcome!"));

     

     mainLayout->addWidget(fontBtn, 2, 0);

     mainLayout->addWidget(fontLineEdit, 2, 1);

     ```

   

   - 事件关联

     - connect(fontBtn, SIGNAL(clicked()), this, SLOT(showFont()));

     

3. 槽函数showFont()实现代码

   ```cpp

   void Dialog::showFont()

   {

       bool ok;

       QFont f = QFontDialog::getFont(&ok);

       if (ok)

           fontLineEdit->setFont(f);

   ```

4. 头文件引入

   - #include <QFontDialog>

5. 运行程序后的操作

   - 单击“字体标准对话框实例”按钮,选择字体后单击"OK"按钮,文字将以选择的字体格式更新显示在Dialog对话框右边的标签中。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

行者..................

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值