76.QT槽的机制
- 按钮点击获取文本框输入
void Dialog::on_pushButton_clicked()
{
//获取文本输入
QString vstr = ui->lineEdit->text(); //判断是否转换成功
bool isok;
//转换
int value = vstr.toInt(&isok);
double area = value*value*PI;
QString tempstr;
ui->lineEdit_2->setText(tempstr.setNum(area));
} - 文本框内容改变执行的操作
void Dialog::on_lineEdit_textChanged(const QString &arg1)
{
this->on_pushButton_clicked();
}
手动实现QT的界面
- dialog.h添加按钮,文本框,标签等头文件
#include <QDialog>
#include <QPushButton>
#include <QLineEdit>
#include <QLabel> - 在dialog.h类中添加按钮,文本框,标签的指针,并添加按钮的触发函数
private:
Ui::Dialog *ui;
//图形控件
QLabel *label1,*label2;
QLineEdit *edit1,*edit2;
QPushButton *button; //触发机制
private slots:
void showit(); - 在dialog.cpp中初始化,并创建布局
- 创建布局头文件
#include "QGridLayout"//布局
- 初始化
//加上this显示在当前窗口
button = new QPushButton(this);
button->setText(tr("计算"));
//button->show();
button->resize(,); edit1 = new QLineEdit(this); edit2 = new QLineEdit(this); label1 = new QLabel(this); label1->setText("输入半径:"); label2 = new QLabel(this); label2->setText("输出面积:"); - 创建布局
//网格布局
QGridLayout *mylayout = new QGridLayout(this);
mylayout->addWidget(label1,,);
mylayout->addWidget(label2,,);
mylayout->addWidget(edit1,,);
mylayout->addWidget(edit2,,);
mylayout->addWidget(button,,); - 关联按钮的函数或者文本框变化的函数
//clicked触发 关联
connect(button,SIGNAL(clicked(bool)),this,SLOT(showit()));
connect(edit1,SIGNAL(textChanged(QString)),this,SLOT(showit())); - 按钮点击函数实现
void Dialog::showit()
{
//获取文本输入
QString vstr = edit1->text(); //判断是否转换成功
bool isok;
//转换
int value = vstr.toInt(&isok);
double area = value*value*PI;
QString tempstr;
edit2->setText(tempstr.setNum(area));
}
完整代码:
- dialog.h
#ifndef DIALOG_H
#define DIALOG_H #include <QDialog>
#include <QPushButton>
#include <QLineEdit>
#include <QLabel> namespace Ui {
class Dialog;
} class Dialog : public QDialog
{
Q_OBJECT public:
explicit Dialog(QWidget *parent = );
~Dialog(); private:
Ui::Dialog *ui;
//图形控件
QLabel *label1,*label2;
QLineEdit *edit1,*edit2;
QPushButton *button; //触发机制
private slots:
void showit();
}; #endif // DIALOG_H - dialog.cpp
#include "dialog.h"
#include "ui_dialog.h"
#include "QGridLayout"//布局
#define PI 3.14159 Dialog::Dialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::Dialog)
{
//加上this显示在当前窗口
button = new QPushButton(this);
button->setText(tr("计算"));
//button->show();
button->resize(,); edit1 = new QLineEdit(this); edit2 = new QLineEdit(this); label1 = new QLabel(this); label1->setText("输入半径:"); label2 = new QLabel(this); label2->setText("输出面积:"); //网格布局
QGridLayout *mylayout = new QGridLayout(this);
mylayout->addWidget(label1,,);
mylayout->addWidget(label2,,);
mylayout->addWidget(edit1,,);
mylayout->addWidget(edit2,,);
mylayout->addWidget(button,,); //clicked触发 关联
connect(button,SIGNAL(clicked(bool)),this,SLOT(showit()));
connect(edit1,SIGNAL(textChanged(QString)),this,SLOT(showit()));
ui->setupUi(this);
} Dialog::~Dialog()
{
delete ui;
} void Dialog::showit()
{
//获取文本输入
QString vstr = edit1->text(); //判断是否转换成功
bool isok;
//转换
int value = vstr.toInt(&isok);
double area = value*value*PI;
QString tempstr;
edit2->setText(tempstr.setNum(area));
} - main.cpp
#include "dialog.h"
#include <QApplication> int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Dialog w;
w.show(); return a.exec();
}
76.QT槽的机制的更多相关文章
- qt信号signal和槽slot机制
内容: 一.概述 二.信号 三.槽 四.信号与槽的关联 五.元对象工具 六.程序样例 七.应注意的问题 信号与槽作为QT的核心机制在QT编程中有着广泛的应用,本文介绍了信号与槽的一些基本概念.元对象工 ...
- 第七章 探秘Qt的核心机制-信号与槽
第七章 探秘Qt的核心机制-信号与槽 注:要想使用Qt的核心机制信号与槽,就必须在类的私有数据区声明Q_OBJECT宏,然后会有moc编译器负责读取这个宏进行代码转化,从而使Qt这个特有的机制得到使用 ...
- Qt 内存管理机制(转)
许转载http://devbean.blog.51cto.com/448512/526734 强类型语言在创建对象时总会显式或隐式地包含对象的类型信息.也就是说,强类型语言在分配对象内存空间时,总 ...
- 剖析Qt的事件机制原理
版权声明 请尊重原创作品.转载请保持文章完整性,并以超链接形式注明原始作者“tingsking18”和主站点地址,方便其他朋友提问和指正. QT源码解析(一) QT创建窗口程序.消息循环和WinMai ...
- Qt 内存管理机制
这篇文章首先发布于我的主页 http://www.devbean.info,以后也会直接发布在那里.现在有 Flex 4 的一篇和 <从 C++ 到 Objective-C>系列,感谢大家 ...
- Qt之事件处理机制
思维导读 一.事件简介 QT程序是事件驱动的, 程序的每个动作都是由内部某个事件所触发.QT事件的发生和处理成为程序运行的主线,存在于程序整个生命周期. 常见的QT事件类型如下: 键盘事件: 按键按下 ...
- 回调函数实现类似QT中信号机制(最简单)
1. 定义回调接口类: class UIcallBack{public: virtual void onAppActivated() = 0; virtual void onShowMore() = ...
- 深入Qt 学习 -- 反射机制(比较简单清楚)
相对于Java天生的这一特性, C++并不具备;但进入到Qt领域,这一切都变得简单自如了. 从Qt的元对象系统可知,除了提供信号/槽机制的特性之外,它还提供了以下特性: ■ QObject::meta ...
- 回调函数实现类似QT中信号机制
1. 定义回调接口类: class UIcallBack { public: virtual void onAppActivated() = 0; virtual void onShowMore() ...
随机推荐
- hive查询不加分区的一个异常
今天下午有同事反馈她提交了了一个SQL后,hive 查询就停止响应了. 我看了下,发现hiveserver确实hug住了.听过查看日志,发现了一个牛逼的SQL, 这个SQL很简单: select a. ...
- OpenGL编程逐步深入(七)旋转变换
准备知识 这一节我们来看一下旋转变换.旋转变换指的是给我们一个指点的点和角度,我们需要绕着过该点的轴线將对象旋转对应的角度.这里我们只改变X/Y/Z中的两个分量,第三个分量保持不变.这意味着我们的图形 ...
- Android框架-Volley(一)
1. Volley简介 我们平时在开发Android应用的时候不可避免地都需要用到网络技术,而多数情况下应用程序都会使用HTTP协议来发送和接收网络数据.Android系统中主要提供了两种方式来进行H ...
- 1、Go base64编码
package main import ( "encoding/base64" "fmt") func main() { //标准base64编码 data:= ...
- affe(8) solver 优化方法
上文提到,到目前为止,caffe总共提供了六种优化方法: Stochastic Gradient Descent (type: "SGD"), AdaDelta (type: &q ...
- yes---重复输出指定的字符串
yes命令在命令行中输出指定的字符串,直到yes进程被杀死.不带任何参数输入yes命令默认的字符串就是y. 语法 yes(参数) 参数 字符串:指定要重复打印的字符串. 实例 [root@localh ...
- [HAOI2006]旅行(并查集)
寒假填坑五十道省选题——第五道 [HAOI2006]旅行 题目描述 Z小镇是一个景色宜人的地方,吸引来自各地的观光客来此旅游观光.Z小镇附近共有N个景点(编号为1,2,3,…,N),这些景点被M条道路 ...
- 【Henu ACM Round#20 A】 Fancy Fence
[链接] 我是链接,点我呀:) [题意] 在这里输入题意 [题解] 看看有没有(n-2)*180/n等于输入的a就好. [代码] #include <bits/stdc++.h> usin ...
- ArcGIS api for javascript——以地理处理结果为条件查询地图
这里发生什么任务呢?当第一次单击地图,单击的坐标被发送到一个Geoprocessor任务.该任务访问服务器上的通过ArcGIS Server 地理处理服务提供的可用的GIS模型.本例中模型计算驱动时间 ...
- ReactNative之Flux框架的使用
概述 流程图 项目结构 View Components actions Dispatcher Stores 感谢 概述 React Native 能够说非常火,非常多bat的项目都在使用.不用发版就能 ...