QT入門

QT += core gui widgets //引入須要用到的庫

qDebug()<<"t="<<t<<QTime::currentTime();//在控制檯輸出當前時間

label->setStyleSheet("background:red; border-radius:25px");//設置樣式表

label->setFont(QFont("宋體",20));//設置標籤的字體及大小

ctrl + i 格式化代碼
git

F4在cpp文件和h文件之間切換算法

signal函數和slot函數都是void類型的app


wKioL1NoqHWBkTMiAABR_mkxCvc278.jpg

mainwindow.hide

#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include "QTimer"
#include "QLabel"
#include <QWidget>
class MainWindow : public QWidget
{
    Q_OBJECT
public:
    explicit MainWindow(QWidget *parent = 0);
signals:
public slots:
    void slotTimeout();
private:
    QTimer timer;//定義全局變量
    QLabel *label;
    int t = 0;
};
#endif // MAINWINDOW_H

mainwindow.cpp
函數

#include "mainwindow.h"
#include "QString"
#include "QFont"
MainWindow::MainWindow(QWidget *parent) :
    QWidget(parent)
{
    this->setGeometry(200,200,600,400);
    label = new QLabel(this);//將標籤添加到當前的mainwindow中
    label->setGeometry(10,10,230,20);//設置標籤的位置及大小
    label->setFont(QFont("宋體",20));//設置標籤的字體及大小
//    connect(&timer,SIGNAL(timeout()),this,SLOT(close()));
    connect(&timer,SIGNAL(timeout()),this,SLOT(slotTimeout()));
//信號...槽
//    t = 0;//這句註釋掉,由於在mainwindow.h中已經初始化
    timer.start(10);//每10毫秒觸發一次
}
void MainWindow::slotTimeout(){
    t++;
    label->setText(QString::number(t));
}

main.cpp
字體

#include "QApplication"
//#include "QMainWindow"
#include "mainwindow.h"
int main(int argc, char *argv[]){
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}


wKioL1NoqZ6iYgJnAABwFN78vQQ471.jpg


QFile::exists("/chord.wav") ? qDebug()<<"chemin ok" : qDebug()<<"chemin faux";
QString dir=QCoreApplication ::applicationDirPath();
QString filename(dir+"/chord.wav");
QSound::play ( filename );//播放聲音


發出信號,如今頭文件中定義ui

signals:
    void signalTimeToDoSth();//自定義信號在

在必要的時候發出信號this

if(t == 100){
    emit signalTimeToDoSth();//發出信號
}

connect(this,SIGNAL(signalTimeToDoSth()),this,SLOT(slotTimeToDoSth()));

連接槽函數響應該信號。此處省略槽函數的具體寫法。

QT用LCD方式顯示時間
spa

先在頭文件定義blog

QLCDNumber *shizhong;
QVBoxLayout *layout;
QTimer timer1;//定義全局變量

shizhong = new QLCDNumber(this);
shizhong -> setFont(QFont("宋體",50));
shizhong-> move(420,30);
shizhong -> resize(90,40);
shizhong->setDigitCount(10);
shizhong->setMode(QLCDNumber::Dec);//十進制顯示
shizhong->setSegmentStyle(QLCDNumber::Flat);//顯示方式
layout = new QVBoxLayout();
layout->addWidget(shizhong);
timer1.start(1000) ;
QObject::connect(&timer1, SIGNAL(timeout()), this, SLOT(onTimerOut()));

槽函數

void MainWindow::onTimerOut()
{
    QTime time = QTime::currentTime();
    shizhong -> display(time.toString("hh:mm:ss"));
}

格式化顯示時間

QString s;
QString r = s.sprintf("%02d:%02d:%02d",t/3600,t/60%60,t%60);
label->setText(r);


圓角矩形顯示label

label->setStyleSheet("background:#f69; border-radius:25px");
label->setFixedSize(250, 50);

wKiom1NspQSTzvJsAAAh3XD9rL8157.jpg


小球碰撞邊界檢測算法

void MainWindow::slotMove()
{
    if(flagx == 0)
        x++;
    else
        x--;
    if(x + label->width() >= this->width())
    {
        flagx = 1;//It's time to move to the right derection
    }
    else if(x <= 0)
    {
        flagx = 0;//It's time to move to the left derection
    }
    if(flagy == 0)
        y++;
    else
        y--;
    if(y + label->height() >= this->height())
    {
        flagy = 1;//向上
    }
    else if(y <= 0)
    {
        flagy = 0;//向下
    }
    label->move(x,y);
}
相關文章
相關標籤/搜索