中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何用Qt畫一個溫度計

發布時間:2023-03-27 13:57:31 來源:億速云 閱讀:129 作者:iii 欄目:開發技術

這篇“如何用Qt畫一個溫度計”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“如何用Qt畫一個溫度計”文章吧。

示例1

以下是用Qt繪制一個簡單的溫度計的示例代碼:

#include <QPainter>
#include <QWidget>
#include <QApplication>
class Thermometer : public QWidget {
public:
    Thermometer(QWidget *parent = 0);
protected:
    void paintEvent(QPaintEvent *event);
private:
    int value;
};
Thermometer::Thermometer(QWidget *parent)
    : QWidget(parent), value(50) {}
void Thermometer::paintEvent(QPaintEvent * /* event */) {
    QPainter painter(this);
    painter.setRenderHint(QPainter::Antialiasing);
    painter.setPen(Qt::NoPen);
    // 繪制溫度計背景
    painter.setBrush(QColor("#f0f0f0"));
    painter.drawRect(0, 0, width(), height());
    // 繪制溫度計外框
    painter.setBrush(QColor("#f5f5f5"));
    painter.drawRect(20, 20, width() - 40, height() - 40);
    // 繪制溫度計刻度線
    painter.setPen(QColor("#999999"));
    for (int i = 0; i <= 100; i += 10) {
        painter.drawLine(40, height() - 40 - (i * (height() - 80) / 100),
                         60, height() - 40 - (i * (height() - 80) / 100));
    }
    // 繪制溫度計當前溫度
    painter.setPen(QColor("#ff0000"));
    painter.setFont(QFont("Arial", 14));
    painter.drawText(80, height() , QString::number(value) + ".");
    // 繪制溫度計水銀柱
    painter.setBrush(QColor("#ff0000"));
    painter.drawRect(30, height() - 40 - (value * (height() - 80) / 100),
                     width() - 60, value * (height() - 80) / 100);
}
int main(int argc, char *argv[]) {
    QApplication app(argc, argv);
    Thermometer thermometer;
    thermometer.setWindowTitle("thermometer");
    thermometer.resize(200, 400);
    thermometer.show();
    return app.exec();
}

運行結果

如何用Qt畫一個溫度計

示例2

復雜的動態溫度計,代碼實現如下:

創建一個Qt項目,并添加一個主窗口。

新建Qt Widgets Application項目,添加MainWindow類。

在主窗口上添加一個QLabel控件,用于顯示當前溫度值。

在MainWindow類的構造函數中添加以下代碼:

QLabel *tempLabel = new QLabel(this);
tempLabel->setText("Temp: 0℃");
tempLabel->setGeometry(20, 20, 100, 20);

在主窗口上添加一個QGraphicsView控件,用于繪制溫度計。

在MainWindow類的構造函數中添加以下代碼:

QGraphicsView *view = new QGraphicsView(this);
view->setGeometry(20, 50, 200, 200);

創建一個QGraphicsScene對象,并將其設置為QGraphicsView的場景。

在MainWindow類的構造函數中添加以下代碼:

QGraphicsScene *scene = new QGraphicsScene(this);
view->setScene(scene);

在QGraphicsScene中添加一個QGraphicsRectItem對象,用于表示溫度計的外框。

在MainWindow類的構造函數中添加以下代碼:

QGraphicsRectItem *frame = new QGraphicsRectItem(0, 0, 200, 200);
frame->setPen(QPen(Qt::black));
frame->setBrush(QBrush(Qt::white));
scene->addItem(frame);

在QGraphicsScene中添加一個QGraphicsEllipseItem對象,用于表示溫度計的中心點。

在MainWindow類的構造函數中添加以下代碼:

QGraphicsEllipseItem *center = new QGraphicsEllipseItem(90, 90, 20, 20);
center->setPen(QPen(Qt::black));
center->setBrush(QBrush(Qt::black));
scene->addItem(center);

在QGraphicsScene中添加一些QGraphicsLineItem對象,用于表示溫度計的刻度線。

在MainWindow類的構造函數中添加以下代碼:

for (int i = -45; i <= 225; i += 45) {
    QLineF line(100 + 80 * cos(i * M_PI / 180),
                100 - 80 * sin(i * M_PI / 180),
                100 + 100 * cos(i * M_PI / 180),
                100 - 100 * sin(i * M_PI / 180));
    QGraphicsLineItem *tick = new QGraphicsLineItem(line);
    tick->setPen(QPen(Qt::black));
    scene->addItem(tick);
}

在QGraphicsScene中添加一個QGraphicsPolygonItem對象,用于表示溫度計的指針。

在MainWindow類的構造函數中添加以下代碼:

QPointF points[3] = { QPointF(100, 100),
                      QPointF(95, 90),
                      QPointF(105, 90) };
QGraphicsPolygonItem *pointer = new QGraphicsPolygonItem(QPolygonF(points, 3));
pointer->setPen(QPen(Qt::black));
pointer->setBrush(QBrush(Qt::red));
pointer->setTransformOriginPoint(100, 100);
scene->addItem(pointer);

通過QGraphicsTransform對象,將溫度計的指針進行旋轉,以顯示當前溫度值。

在MainWindow類中添加以下私有成員變量:

QGraphicsTransform *pointerTransform;

在MainWindow類的構造函數中添加以下代碼:

pointerTransform = new QGraphicsTransform(pointer);
pointer->setTransform(pointerTransform);

在MainWindow類中添加以下槽函數:

void MainWindow::updateTemp(int temp) {
    ui->tempLabel->setText(QString("Temp: %1℃").arg(temp));
    pointerTransform->setRotation(-45 + temp * 270 / 100);
}

在主窗口的槽函數中更新溫度值,并更新溫度計的指針的旋轉角度。

在MainWindow類中添加以下信號:

signals:
    void tempChanged(int temp);

在MainWindow類的構造函數中添加以下代碼:

connect(this, SIGNAL(tempChanged(int)), this, SLOT(updateTemp(int)));

在MainWindow類中添加以下槽函數:

void MainWindow::on_tempSlider_valueChanged(int value)
{
    emit tempChanged(value);
}

在主窗口上添加一個QSlider控件,并將其范圍設置為0-100,在MainWindow類中添加以下信號槽連接:

connect(ui->tempSlider, SIGNAL(valueChanged(int)), this, SLOT(on_tempSlider_valueChanged(int)));

以上就是關于“如何用Qt畫一個溫度計”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

qt
AI

章丘市| 龙山县| 拉孜县| 阆中市| 渭源县| 徐水县| 卢湾区| 深泽县| 竹北市| 荣昌县| 博兴县| 宜黄县| 兰西县| 谢通门县| 星座| 海南省| 曲阳县| 赫章县| 抚松县| 漳州市| 汝州市| 屯门区| 柘荣县| 北京市| 南召县| 宜宾县| 满城县| 龙井市| 城固县| 新绛县| 华安县| 新邵县| 兴文县| 抚州市| 荆州市| 永城市| 灵丘县| 嘉峪关市| 华坪县| 巩义市| 永康市|