溫馨提示×

溫馨提示×

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

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

Qt怎么編寫氣體安全管理系統(tǒng)

發(fā)布時間:2021-12-15 09:59:08 來源:億速云 閱讀:165 作者:iii 欄目:互聯(lián)網(wǎng)科技

這篇文章主要講解了“Qt怎么編寫氣體安全管理系統(tǒng)”,文中的講解內(nèi)容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Qt怎么編寫氣體安全管理系統(tǒng)”吧!

一、前言

在各種軟件系統(tǒng)中,數(shù)據(jù)打印也是常用的功能之一,一般來說會對查詢的數(shù)據(jù)結(jié)果導出到excel,還會對查詢的數(shù)據(jù)結(jié)果直接打印,在Qt中提供了打印機類QPrinter,在printsupport組件中,可以將文本內(nèi)容傳入QTextDocument,然后調(diào)用QTextDocument的print方法來打印數(shù)據(jù),QTextDocument支持html格式的文本,這樣拓展性就很大了,我們所知道的表格邊框顏色等,都是可以用html的語法來表示,不過貌似支持的html內(nèi)容不是很多,只是部分,樣式也是支持部分,但是也已經(jīng)夠用,常用的表格、邊框、顏色、邊距、字體等,都具備,那就ok了。

在上一篇文章中導出數(shù)據(jù)使用的xml格式的數(shù)據(jù),而導出pdf使用的就是打印類中的打印到pdf文件,用的就是html格式的數(shù)據(jù),同理,打印數(shù)據(jù)也是用這種格式,和導出到pdf唯一的區(qū)別就是導出到pdf設(shè)置輸出格式為PDF,printer.setOutputFormat(QPrinter::PdfFormat); 然后設(shè)置輸出文件保存位置printer.setOutputFileName(fileName);其實組織的內(nèi)容是完全一樣的,據(jù)說新版的qt打算封裝一個獨立的QtPdf模塊,不知道下一個版本會不會放出來,這樣就可以跨平臺的操作編輯pdf文件了。

二、功能特點

  1. 采集數(shù)據(jù)端口,支持串口端口+網(wǎng)絡端口,串口支持自由設(shè)置串口號+波特率,網(wǎng)絡支持自由設(shè)置IP地址+通訊端口,每個端口支持采集周期,默認1秒鐘一個地址,支持設(shè)置通訊超時次數(shù),默認3次,支持最大重連時間,用于重新讀取離線的設(shè)備。

  2. 控制器信息,能夠添加控制器名稱,選擇控制器地址+控制器型號,設(shè)置該控制器下面的探測器數(shù)量。

  3. 探測器信息,能夠添加位號,可自由選擇探測器型號,氣體種類,氣體符號,高報值,低報值,緩沖值,清零值,是否啟用,報警聲音,背景地圖,存儲周期,數(shù)值換算小數(shù)點位數(shù),報警延時時間,報警的類型(HH,LL,HL)等。

  4. 控制器型號+探測器型號+氣體種類+氣體符號,均可自由配置。

  5. 地圖支持導入和刪除,所有的探測器對應地圖位置可自由拖動保存。

  6. 端口信息+控制器信息+探測器信息,支持導入導出+導出到excel+打印。

  7. 運行記錄+報警記錄+用戶記錄,支持多條件組合查詢,比如時間段+控制器+探測器等,所有記錄支持導出到excel+打印。

  8. 導出到excel的記錄支持所有excel+wps等表格文件版本,不依賴excel等軟件。

  9. 可刪除指定時間范圍內(nèi)的數(shù)據(jù),支持自動清理早期數(shù)據(jù),設(shè)置最大保存記錄數(shù)。

  10. 支持報警短信轉(zhuǎn)發(fā),支持多個接收手機號碼,可設(shè)定發(fā)送間隔,比如即時發(fā)送或者6個小時發(fā)送一次所有的報警信息,短信內(nèi)容過長,自動拆分多條短信。

  11. 支持報警郵件轉(zhuǎn)發(fā),支持多個接收郵箱,可設(shè)定發(fā)送間隔,比如即時發(fā)送或者6個小時發(fā)送一次所有的報警信息,支持附件發(fā)送。

  12. 高報顏色+低報顏色+正常顏色+0值顏色+曲線背景+曲線顏色等,都可以自由選擇。

  13. 軟件的中文標題+英文標題+logo路徑+版權(quán)所有都可以自由設(shè)置。

  14. 提供開關(guān)設(shè)置開機運行+報警聲音+自動登錄+記住密碼等。

  15. 報警聲音可設(shè)置播放次數(shù),界面提供17種皮膚文件選擇。

  16. 支持云端數(shù)據(jù)同步,可設(shè)置云端數(shù)據(jù)庫的信息,比如數(shù)據(jù)庫名稱,用戶名+密碼等。

  17. 支持網(wǎng)絡轉(zhuǎn)發(fā)和網(wǎng)絡接收,網(wǎng)絡接收開啟后,軟件從udp接收數(shù)據(jù)進行解析。網(wǎng)絡轉(zhuǎn)發(fā)支持多個目標IP,這樣就實現(xiàn)了本地采集的軟件,自由將數(shù)據(jù)轉(zhuǎn)到客戶端,隨時查看探測器數(shù)據(jù)。

  18. 自動記住用戶最后停留的界面+其他信息,重啟后自動應用。

  19. 報警自動切換到對應的地圖,探測器按鈕閃爍。

  20. 雙擊探測器圖標,可以進行回控。

  21. 支持用戶權(quán)限管理,管理員+操作員兩大類,用戶登錄+用戶退出,可以記住密碼和自動登錄,超過三次報錯提示并關(guān)閉程序。

  22. 支持四種監(jiān)控模式,設(shè)備面板監(jiān)控+地圖監(jiān)控+表格數(shù)據(jù)監(jiān)控+曲線數(shù)據(jù)監(jiān)控,可自由切換,四種同步應用。

  23. 支持報警繼電器聯(lián)動,一個位號可以跨串口聯(lián)動多個模塊和繼電器號,支持多對多。

  24. 本地數(shù)據(jù)存儲支持sqlite+mysql,支持遠程數(shù)據(jù)同步到云端數(shù)據(jù)庫。自動重連。

  25. 本地設(shè)備采集到的數(shù)據(jù)實時上傳到云端,以便手機APP或者web等其他方式提取。

  26. 支持兩種數(shù)據(jù)源,一種是串口和網(wǎng)絡通過協(xié)議采集設(shè)備數(shù)據(jù),一種是數(shù)據(jù)庫采集。數(shù)據(jù)庫采集模式可以作為通用的系統(tǒng)使用。

  27. 自帶設(shè)備模擬工具,支持16個設(shè)備數(shù)據(jù)模擬,同時還帶數(shù)據(jù)庫數(shù)據(jù)模擬,以便在沒有設(shè)備的時候測試數(shù)據(jù)。

  28. 默認通信協(xié)議采用modbus協(xié)議,后期增加mqtt等物聯(lián)網(wǎng)協(xié)議的支持,做成通用系統(tǒng)。

  29. 支持所有windows操作系統(tǒng)+linux操作系統(tǒng)和其他操作系統(tǒng)。

三、效果圖

Qt怎么編寫氣體安全管理系統(tǒng)

四、核心代碼

#include "printapi.h"
#include "qmutex.h"
#include "qprintpreviewdialog.h"
#include "qtextdocument.h"
#include "qtextobject.h"

QScopedPointer<printapi> PrintAPI::self;
PrintAPI *PrintAPI::Instance()
{
    if (self.isNull()) {
        static QMutex mutex;
        QMutexLocker locker(&amp;mutex);
        if (self.isNull()) {
            self.reset(new PrintAPI);
        }
    }

    return self.data();
}

PrintAPI::PrintAPI(QObject *parent) : QObject(parent)
{
}

void PrintAPI::print(const QString &amp;title, const QString &amp;subTitle, const QList<qstring> &amp;columnNames,
                     const QList<int> &amp;columnWidths, const QStringList &amp;content, bool landscape, bool check,
                     int checkColumn, const QString &amp;checkType, const QString &amp;checkValue, const QPrinter::PageSize &amp;pageSize)
{
    //計算行數(shù)列數(shù)
    int columnCount = columnNames.count();
    int rowCount = content.count();

    //清空原有數(shù)據(jù),確保每次都是新的數(shù)據(jù)
    html.clear();

    //表格開始
    html.append("<table border="0.5" cellspacing="0" cellpadding="3">");

    //標題占一行,居中顯示
    if (title.length() &gt; 0) {
        html.append(QString("<tbody><tr><td align="center"  colspan="%1">").arg(columnCount));
        html.append(title);
        html.append("</td></tr>");
    }

    //副標題占一行,左對齊顯示
    if (subTitle.length() &gt; 0) {
        html.append(QString("<tr><td align="left"  colspan="%1">").arg(columnCount));
        html.append(subTitle);
        html.append("</td></tr>");
    }

    //循環(huán)寫入字段名,字段名占一行,居中顯示
    if (columnCount &gt; 0) {
        html.append("<tr>");

        for (int i = 0; i &lt; columnCount; i++) {
            html.append(QString("<td width="%1" bgcolor="lightgray" align="center" >").arg(columnWidths.at(i)));
            html.append(columnNames.at(i));
            html.append("</td>");
        }

        html.append("</tr>");
    }

    //循環(huán)一行行構(gòu)建數(shù)據(jù)
    for (int i = 0; i &lt; rowCount; i++) {
        QStringList value = content.at(i).split(";");
        html.append("<tr>");

        //過濾內(nèi)容,如果啟用了過濾數(shù)據(jù),則將符合條件的數(shù)據(jù)突出顏色顯示
        bool existCheck = false;

        if (check) {
            if (checkType == "==") {
                if (value.at(checkColumn) == checkValue) {
                    existCheck = true;
                }
            } else if (checkType == "&gt;") {
                if (value.at(checkColumn) &gt; checkValue) {
                    existCheck = true;
                }
            } else if (checkType == "&gt;=") {
                if (value.at(checkColumn) &gt;= checkValue) {
                    existCheck = true;
                }
            } else if (checkType == "&lt;") {
                if (value.at(checkColumn) &lt; checkValue) {
                    existCheck = true;
                }
            } else if (checkType == "&lt;=") {
                if (value.at(checkColumn) &lt;= checkValue) {
                    existCheck = true;
                }
            } else if (checkType == "!=") {
                if (value.at(checkColumn) != checkValue) {
                    existCheck = true;
                }
            }
        }

        if (existCheck) {
            for (int j = 0; j &lt; columnCount; j++) {
                html.append(QString("<td width="%1" align="center" ><font color="red">").arg(columnWidths.at(j)));
                html.append(value.at(j));
                html.append("</font></td>");
            }
        } else {
            for (int j = 0; j &lt; columnCount; j++) {
                html.append(QString("<td width="%1" align="center" >").arg(columnWidths.at(j)));
                html.append(value.at(j));
                html.append("</td>");
            }
        }

        html.append("</tr>");
    }

    html.append("</tbody></table>");

    //調(diào)用打印機打印
    QPrinter printer;
    //設(shè)置輸出格式
    printer.setOutputFormat(QPrinter::NativeFormat);
    //設(shè)置紙張規(guī)格
    printer.setPageSize(pageSize);

    //設(shè)置橫向縱向及頁邊距
    if (landscape) {
        printer.setOrientation(QPrinter::Landscape);
        printer.setPageMargins(10, 10, 10, 10, QPrinter::Millimeter);
    } else {
        printer.setOrientation(QPrinter::Portrait);
        printer.setPageMargins(10, 10, 10, 11, QPrinter::Millimeter);
    }

    QPrintPreviewDialog preview(&amp;printer);
    preview.setStyleSheet("QToolButton{background:none;margin:2px;padding:0px;border-width:0px;border-radius:0px;}QLineEdit{border-width:0px;}");
    preview.setWindowTitle("打印預覽");
    preview.setWindowFlags(Qt::WindowStaysOnTopHint);
    connect(&amp;preview, SIGNAL(paintRequested(QPrinter *)), this, SLOT(printView(QPrinter *)));
    preview.showMaximized();
    preview.exec();
}

void PrintAPI::print(const QString &amp;title, const QList<qstring> &amp;columnNames, const QList<int> &amp;columnWidths,
                     const QStringList &amp;subTitle1, const QStringList &amp;subTitle2,
                     const QStringList &amp;content, bool landscape, bool check,
                     int checkColumn, const QString &amp;checkType, const QString &amp;checkValue, const QPrinter::PageSize &amp;pageSize)
{
    //計算列數(shù)
    int columnCount = columnNames.count();

    //清空原有數(shù)據(jù),確保每次都是新的數(shù)據(jù)
    html.clear();

    //表格開始
    html.append("<table border="0.5" cellspacing="0" cellpadding="3">");

    //標題占一行,居中顯示
    if (title.length() &gt; 0) {
        html.append(QString("<tbody><tr><td align="center"  colspan="%1">")
                    .arg(columnCount));
        html.append(title);
        html.append("</td></tr>");
    }

    //循環(huán)添加副標題/字段名/內(nèi)容
    int count = content.count();

    for (int i = 0; i &lt; count; i++) {
        //加個空行隔開
        html.append(QString("<tr><td colspan="%1">").arg(columnCount));
        html.append("</td></tr>");

        //副標題1
        if (subTitle1.count() &gt; 0 &amp;&amp; subTitle1.count() &gt; i) {
            if (subTitle1.at(i).length() &gt; 0) {
                html.append(QString("<tr><td align="left"  colspan="%1">")
                            .arg(columnCount));
                html.append(subTitle1.at(i));
                html.append("</td></tr>");
            }
        }

        //副標題2
        if (subTitle2.count() &gt; 0 &amp;&amp; subTitle2.count() &gt; i) {
            if (subTitle2.at(i).length() &gt; 0) {
                html.append(QString("<tr><td align="left"  colspan="%1">")
                            .arg(columnCount));
                html.append(subTitle2.at(i));
                html.append("</td></tr>");
            }
        }

        //逐個添加字段名稱
        if (columnCount &gt; 0) {
            html.append("<tr>");

            for (int i = 0; i &lt; columnCount; i++) {
                html.append(QString("<td width="%1" bgcolor="lightgray" align="center" >")
                            .arg(columnWidths.at(i)));
                html.append(columnNames.at(i));
                html.append("</td>");
            }

            html.append("</tr>");
        }

        QStringList list = content.at(i).split(";");

        //逐個添加數(shù)據(jù)
        int rowCount = list.count();

        for (int j = 0; j &lt; rowCount; j++) {
            html.append("<tr>");

            QString temp = list.at(j);
            QStringList value = temp.split("|");
            int valueCount = value.count();

            //過濾內(nèi)容,如果啟用了過濾數(shù)據(jù),則將符合條件的數(shù)據(jù)突出顏色顯示
            bool existCheck = false;

            if (check) {
                if (checkType == "==") {
                    if (value.at(checkColumn) == checkValue) {
                        existCheck = true;
                    }
                } else if (checkType == "&gt;") {
                    if (value.at(checkColumn) &gt; checkValue) {
                        existCheck = true;
                    }
                } else if (checkType == "&gt;=") {
                    if (value.at(checkColumn) &gt;= checkValue) {
                        existCheck = true;
                    }
                } else if (checkType == "&lt;") {
                    if (value.at(checkColumn) &lt; checkValue) {
                        existCheck = true;
                    }
                } else if (checkType == "&lt;=") {
                    if (value.at(checkColumn) &lt;= checkValue) {
                        existCheck = true;
                    }
                } else if (checkType == "!=") {
                    if (value.at(checkColumn) != checkValue) {
                        existCheck = true;
                    }
                }
            }

            if (existCheck) {
                for (int k = 0; k &lt; valueCount - 1; k++) {
                    html.append(QString("<td width="%1" align="center" ><font color="red">").arg(columnWidths.at(k)));
                    html.append(value.at(k));
                    html.append("</font></td>");
                }
            } else {
                for (int k = 0; k &lt; valueCount; k++) {
                    html.append(QString("<td width="%1" align="center" >").arg(columnWidths.at(k)));
                    html.append(value.at(k));
                    html.append("</td>");
                }
            }

            html.append("</tr>");
        }
    }

    html.append("</tbody></table>");

    //調(diào)用打印機打印
    QPrinter printer;
    //設(shè)置輸出格式
    printer.setOutputFormat(QPrinter::NativeFormat);
    //設(shè)置紙張規(guī)格
    printer.setPageSize(pageSize);

    //設(shè)置橫向縱向及頁邊距
    if (landscape) {
        printer.setOrientation(QPrinter::Landscape);
        printer.setPageMargins(10, 10, 10, 10, QPrinter::Millimeter);
    } else {
        printer.setOrientation(QPrinter::Portrait);
        printer.setPageMargins(10, 10, 10, 11, QPrinter::Millimeter);
    }

    QPrintPreviewDialog preview(&amp;printer);
    preview.setStyleSheet("QToolButton{background:none;margin:2px;padding:0px;border-width:0px;border-radius:0px;}QLineEdit{border-width:0px;}");
    preview.setWindowTitle("打印預覽");
    preview.setWindowFlags(Qt::WindowStaysOnTopHint);
    connect(&amp;preview, SIGNAL(paintRequested(QPrinter *)), this, SLOT(printView(QPrinter *)));
    preview.showMaximized();
    preview.exec();
}

void PrintAPI::printView(QPrinter *printer)
{
    QTextDocument textDocument;
    textDocument.setHtml(html.join(""));
    textDocument.setPageSize(printer-&gt;pageRect().size());
    textDocument.print(printer);
}

```</int></qstring></int></qstring></printapi>

感謝各位的閱讀,以上就是“Qt怎么編寫氣體安全管理系統(tǒng)”的內(nèi)容了,經(jīng)過本文的學習后,相信大家對Qt怎么編寫氣體安全管理系統(tǒng)這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!

向AI問一下細節(jié)

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

qt
AI