diff --git a/GX_CodeGen.pro b/GX_CodeGen.pro index baec473f2d6b82d60195c39a4f77f5fc84c4b53a..f349d32a0e29b9bc0ade8c82806a4c734ecd15ff 100644 --- a/GX_CodeGen.pro +++ b/GX_CodeGen.pro @@ -2,6 +2,9 @@ QT += core gui greaterThan(QT_MAJOR_VERSION, 4): QT += widgets +TARGET = gx-codegen +TEMPLATE = app + CONFIG += c++11 # You can make your code fail to compile if it uses deprecated APIs. @@ -18,11 +21,6 @@ HEADERS += \ FORMS += \ mainwindow.ui -# Default rules for deployment. -qnx: target.path = /tmp/$${TARGET}/bin -else: unix:!android: target.path = /opt/$${TARGET}/bin -!isEmpty(target.path): INSTALLS += target - RESOURCES += \ rsc.qrc @@ -30,3 +28,17 @@ DISTFILES += \ logo.rc RC_FILE += logo.rc + +unix:!macx { + gx_codegen.files += $$_PRO_FILE_PWD_/gx-codegen + gx_codegen.path = /usr/bin + INSTALLS += gx_codegen + + gx_codegen_icon.files += $$_PRO_FILE_PWD_/gx-codegen.png + gx_codegen_icon.path = /usr/share/icons/hicolor/128x128/apps + INSTALLS += gx_codegen_icon + + gx_codegen_desktop.files += $$_PRO_FILE_PWD_/gx-codegen.desktop + gx_codegen_desktop.path = /usr/share/applications + INSTALLS += gx_codegen_desktop +} diff --git a/README.md b/README.md index 56b6e802294aa05e8c251621b42be859f2937aca..f5bc53e6214021e548bc5147886bb63988ce0fb1 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,25 @@ GX芯片代码生成器,Qt编写,用于方便的配置各个线程的相关 #### 安装教程 -待完善 +##### Arch Linux + +Arch Linux 可以通过 [AUR gx-codegen-git](https://aur.archlinux.org/packages/gx-codegen-git) 或[自建源](https://github.com/taotieren/aur-repo)安装 + +```bash +yay -Syu gx-codegen +``` +##### Linux 源码编译 + +```bash +git clone https://gitee.com/gxchip/GX_CodeGen.git +cd GX_CodeGen + +# 依赖 `qt5` +# 参考 [AUR gx-codegen-git](https://aur.archlinux.org/packages/gx-codegen-git) 中的编译 +qmake +make install +make uninstall +``` #### 使用说明 diff --git a/gx-codegen.desktop b/gx-codegen.desktop new file mode 100644 index 0000000000000000000000000000000000000000..3f81113d12b5a232b2e48dfeb552f6466d787fea --- /dev/null +++ b/gx-codegen.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Name=gx-codegen +Comment=GX (感芯科技)芯片代码生成器,Qt编写,用于方便的配置各个线程的相关主频及栈空间参数,生成对应的lds文件与.h文件 +Exec=gx-codegen +Icon=gx-codegen.png +Terminal=false +StartupNotify=false +Categories=Development;Utility; diff --git a/gx-codegen.png b/gx-codegen.png new file mode 100644 index 0000000000000000000000000000000000000000..4afe3bb3cad5d3a8ed2970a470d611af4ee955d1 Binary files /dev/null and b/gx-codegen.png differ diff --git a/main.cpp b/main.cpp index 9326e48bd8e2c2c7c29a7d854f08ad4efe5485f3..3ff784662125f8154b2b9f0536548395f3314ead 100644 --- a/main.cpp +++ b/main.cpp @@ -1,43 +1,41 @@ #include "mainwindow.h" #include +#include +#include #include #include -#include -#include -quint32 program_version = 0x01000101; //1.1.1 +quint32 program_version = 0x01000101; // 1.1.1 -QString loadFontFamilyFromFiles(const QString &fontFileName) +QString loadFontFamilyFromFiles(const QString& fontFileName) { QString font = ""; QFile fontFile(fontFileName); - if(!fontFile.open(QIODevice::ReadOnly)) - { - qDebug()<<"Open font file error"; + if (!fontFile.open(QIODevice::ReadOnly)) { + qDebug() << "Open font file error"; return font; } int loadedFontID = QFontDatabase::addApplicationFontFromData(fontFile.readAll()); QStringList loadedFontFamilies = QFontDatabase::applicationFontFamilies(loadedFontID); - if(!loadedFontFamilies.empty()) - { + if (!loadedFontFamilies.empty()) { font = loadedFontFamilies.at(0); } fontFile.close(); return font; } -int main(int argc, char *argv[]) +int main(int argc, char* argv[]) { QApplication a(argc, argv); MainWindow w; -// QString strFont0 = loadFontFamilyFromFiles("fonts\\FangZhengHeiTiJianTi.ttf"); -// qDebug() << "strFont0 is: " << strFont0; -// a.setFont(strFont0); -// QFont font; -// font.setFamily(strFont0); -// a.setFont(font); -// qApp->setFont(font); + // QString strFont0 = loadFontFamilyFromFiles("fonts\\FangZhengHeiTiJianTi.ttf"); + // qDebug() << "strFont0 is: " << strFont0; + // a.setFont(strFont0); + // QFont font; + // font.setFamily(strFont0); + // a.setFont(font); + // qApp->setFont(font); w.show(); return a.exec(); } diff --git a/mainwindow.cpp b/mainwindow.cpp index 29675c254fc8f4ce6f56fe9d621d43e7b9a5941d..39c1d0ebde42e8cb2211c56ba3a2609a36f80ae9 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1,19 +1,26 @@ #include "mainwindow.h" #include "ui_mainwindow.h" -#include -#include #include -#include -#include +#include +#include #include -#include -#include +#include +#include #include -#include #include +#include #include +#include +#include +#if defined(Q_OS_WIN) +#include +#elif defined(Q_OS_LINUX) +#include +#elif defined(Q_OS_DARWIN) +#include +#endif -MainWindow::MainWindow(QWidget *parent) +MainWindow::MainWindow(QWidget* parent) : QMainWindow(parent) , ui(new Ui::MainWindow) { @@ -155,17 +162,15 @@ MainWindow::MainWindow(QWidget *parent) remain_main_freq[2] = ui->lineEdit_main_freq2; remain_main_freq[3] = ui->lineEdit_main_freq3; - for(int i=0; i < 64; i++) - { + for (int i = 0; i < 64; i++) { connect(line_edit_space[i], SIGNAL(editingFinished()), this, SLOT(refresh_DataSize())); - connect(line_edit_space[i], SIGNAL(textChanged(const QString &)), this, SLOT(refresh_DataSize_all(const QString &))); + connect(line_edit_space[i], SIGNAL(textChanged(const QString&)), this, SLOT(refresh_DataSize_all(const QString&))); } - for(int i=0; i < 16; i++) - { - connect(combo_box_freq[i*4], SIGNAL(currentIndexChanged(int)), this, SLOT(comboBox_freq_group_0_currentIndexChanged(int))); - connect(combo_box_freq[i*4+1], SIGNAL(currentIndexChanged(int)), this, SLOT(comboBox_freq_group_1_currentIndexChanged(int))); - connect(combo_box_freq[i*4+2], SIGNAL(currentIndexChanged(int)), this, SLOT(comboBox_freq_group_2_currentIndexChanged(int))); - connect(combo_box_freq[i*4+3], SIGNAL(currentIndexChanged(int)), this, SLOT(comboBox_freq_group_3_currentIndexChanged(int))); + for (int i = 0; i < 16; i++) { + connect(combo_box_freq[i * 4], SIGNAL(currentIndexChanged(int)), this, SLOT(comboBox_freq_group_0_currentIndexChanged(int))); + connect(combo_box_freq[i * 4 + 1], SIGNAL(currentIndexChanged(int)), this, SLOT(comboBox_freq_group_1_currentIndexChanged(int))); + connect(combo_box_freq[i * 4 + 2], SIGNAL(currentIndexChanged(int)), this, SLOT(comboBox_freq_group_2_currentIndexChanged(int))); + connect(combo_box_freq[i * 4 + 3], SIGNAL(currentIndexChanged(int)), this, SLOT(comboBox_freq_group_3_currentIndexChanged(int))); } refresh_DataSize(); @@ -177,28 +182,20 @@ MainWindow::MainWindow(QWidget *parent) readTxt("thread_config.h"); } - -void MainWindow::readTxt(QString file) +void MainWindow::readTxt(QString) { -#ifdef Q_OS_DARWIN - qDebug() << QDir::homePath()+"/DeskTop/"+ file; - QFile in_file(QDir::homePath()+"/DeskTop/"+ file); -#else - qDebug() << file; - QFile in_file(file); -#endif - if(!in_file.exists()) - { + QString configFilePath = QStandardPaths::writableLocation(QStandardPaths::DesktopLocation) + "/thread_config.h"; + + QFile in_file(configFilePath); + if (!in_file.exists()) { return; } - if(!in_file.open(QIODevice::ReadOnly | QIODevice::Text)) - { + if (!in_file.open(QIODevice::ReadOnly | QIODevice::Text)) { return; } QTextStream infile(&in_file); - QString freq[9] = - { + QString freq[9] = { "0x0", "0x100", "0x200", @@ -209,8 +206,7 @@ void MainWindow::readTxt(QString file) "0x700", "0x800" }; - QString rate[9] = - { + QString rate[9] = { "1/4", "1/8", "1/16", @@ -240,21 +236,19 @@ void MainWindow::readTxt(QString file) int data_space_value; int common_data_space_value; int clock_source_sel = 0; - uint32_t threadx_start[64] = {0}; - uint32_t freq_number[64] = {0}; + uint32_t threadx_start[64] = { 0 }; + uint32_t freq_number[64] = { 0 }; bool threadx_valid[64]; int stack_i = 0; int freq_i = 0; int valid_i = 0; - while (!infile.atEnd()) - { + while (!infile.atEnd()) { QString s = infile.readLine(); - if(s.contains(str2)) - { + if (s.contains(str2)) { QString str_temp = str1 + QString::number(freq_i) + str2; int xxx = s.indexOf(str_temp); - if (xxx != -1)//"ROTHD_THREADx_FREQCFG_VALUE" + if (xxx != -1) //"ROTHD_THREADx_FREQCFG_VALUE" { bool ok; xxx += str_temp.length(); @@ -262,85 +256,66 @@ void MainWindow::readTxt(QString file) freq_number[freq_i] = s.mid(xxx).toUInt(&ok, 16); } freq_i++; - } - else if(s.contains(str4)) - { - QString str_temp = str1+ QString::number(stack_i) + str4; + } else if (s.contains(str4)) { + QString str_temp = str1 + QString::number(stack_i) + str4; int xxx = s.indexOf(str_temp); - if (xxx != -1)//"ROTHD_THREADx_STACKCFG_VALUE" + if (xxx != -1) //"ROTHD_THREADx_STACKCFG_VALUE" { xxx += str_temp.length(); xxx += 1; threadx_start[stack_i] = s.mid(xxx).toUInt(); } stack_i++; - } - else if(s.contains(str3)) - { - if(s.contains(str1 + QString::number(valid_i) + "_VALID")) - { + } else if (s.contains(str3)) { + if (s.contains(str1 + QString::number(valid_i) + "_VALID")) { threadx_valid[valid_i] = true; - } - else if(s.contains(str1 + QString::number(valid_i) + "_INVALID")) - { + } else if (s.contains(str1 + QString::number(valid_i) + "_INVALID")) { threadx_valid[valid_i] = false; } valid_i++; - } - else if(s.contains(str5)) - { + } else if (s.contains(str5)) { int xxx = s.indexOf(str5); - if (xxx != -1)//"ROTHD_CODE_RAM_VALUE" + if (xxx != -1) //"ROTHD_CODE_RAM_VALUE" { xxx += str5.length(); xxx += 1; code_value = s.mid(xxx).toUInt(); } - } - else if(s.contains(str6)) - { + } else if (s.contains(str6)) { int xxx = s.indexOf(str6); - if (xxx != -1)//"ROTHD_CODE_RAM_VALUE" + if (xxx != -1) //"ROTHD_CODE_RAM_VALUE" { xxx += str6.length(); xxx += 1; data_value = s.mid(xxx).toUInt(); } - } - else if(s.contains(str7)) - { + } else if (s.contains(str7)) { int xxx = s.indexOf(str7); - if (xxx != -1)//"ROTHD_CODE_SPACE_VALUE" + if (xxx != -1) //"ROTHD_CODE_SPACE_VALUE" { xxx += str7.length(); xxx += 1; code_space_value = s.mid(xxx).toUInt(); } - } - else if(s.contains(str8)) - { + } else if (s.contains(str8)) { int xxx = s.indexOf(str8); - if (xxx != -1)//"ROTHD_DATA_SPACE_VALUE" + if (xxx != -1) //"ROTHD_DATA_SPACE_VALUE" { xxx += str8.length(); xxx += 1; data_space_value = s.mid(xxx).toUInt(); } - } - else if(s.contains(str9)) - { + } else if (s.contains(str9)) { int xxx = s.indexOf(str9); - if (xxx != -1)//"ROTHD_COMMON_DATA_SPACE_VALUE" + if (xxx != -1) //"ROTHD_COMMON_DATA_SPACE_VALUE" { xxx += str9.length(); xxx += 1; common_data_space_value = s.mid(xxx).toUInt(); } - } - else if(s.contains(str10)) - { + } else if (s.contains(str10)) { int xxx = s.indexOf(str10); - if (xxx != -1)//"ROTHD_COLCK_SOURCE_SEL" + if (xxx != -1) //"ROTHD_COLCK_SOURCE_SEL" { xxx += str10.length(); xxx += 1; @@ -357,45 +332,39 @@ void MainWindow::readTxt(QString file) qDebug() << data_space_value; qDebug() << common_data_space_value; qDebug() << clock_source_sel; - for(int i=0; i < 64; i++) - { - qDebug() << threadx_start[i] << "|0x" << QString::number(freq_number[i],16) << "|" << threadx_valid[i]; + for (int i = 0; i < 64; i++) { + qDebug() << threadx_start[i] << "|0x" << QString::number(freq_number[i], 16) << "|" << threadx_valid[i]; } - if(code_value == 32*1024) + if (code_value == 32 * 1024) ui->comboBox_size->setCurrentIndex(0); - else if(code_value == 64*1024) + else if (code_value == 64 * 1024) ui->comboBox_size->setCurrentIndex(1); - else if(code_value == 96*1024) + else if (code_value == 96 * 1024) ui->comboBox_size->setCurrentIndex(2); ui->comboBox_timerSource->setCurrentIndex(clock_source_sel); - QVector data_stack_size; - for(int i=0; i < 64; i++) - { - if(freq_number[i] == 0xf0fff000) + for (int i = 0; i < 64; i++) { + if (freq_number[i] == 0xf0fff000) combo_box_freq[i]->setCurrentIndex(0); - else - { - int temp = ((freq_number[i]&0xF0000000)>>28) + 1; - qDebug() << QString::number((freq_number[i]&0xF0000000)>>28,16) << ":" << temp; + else { + int temp = ((freq_number[i] & 0xF0000000) >> 28) + 1; + qDebug() << QString::number((freq_number[i] & 0xF0000000) >> 28, 16) << ":" << temp; combo_box_freq[i]->setCurrentIndex(temp); } - if(i < 63) - line_edit_space[i]->setText(QString::number(threadx_start[i] - threadx_start[i+1],10)); + if (i < 63) + line_edit_space[i]->setText(QString::number(threadx_start[i] - threadx_start[i + 1], 10)); } - line_edit_space[63]->setText(QString::number(threadx_start[63]-common_data_space_value,10)); + line_edit_space[63]->setText(QString::number(threadx_start[63] - common_data_space_value, 10)); refresh_DataSize(); comboBox_freq_group_0_currentIndexChanged(0); comboBox_freq_group_1_currentIndexChanged(0); comboBox_freq_group_2_currentIndexChanged(0); comboBox_freq_group_3_currentIndexChanged(0); - - } MainWindow::~MainWindow() @@ -403,42 +372,41 @@ MainWindow::~MainWindow() delete ui; } -void MainWindow::refresh_DataSize_all(const QString &text) +void MainWindow::refresh_DataSize_all(const QString&) { int size_sum = 0; - for(int i=0; i < 64; i++) - { - int temp = line_edit_space[i]->text().toInt(nullptr,10); + for (int i = 0; i < 64; i++) { + int temp = line_edit_space[i]->text().toInt(nullptr, 10); size_sum += temp; } int data_space_index = ui->comboBox_size->currentIndex(); - ui->lineEdit_remain_data_size->setText(tr("%1").arg(data_space_size[data_space_index]-size_sum)); + ui->lineEdit_remain_data_size->setText(tr("%1").arg(data_space_size[data_space_index] - size_sum)); } -//刷新dpi +// 刷新dpi void MainWindow::refreshDPI() { - //计算dpi + // 计算dpi QList screens = QApplication::screens(); QScreen* screen = screens[0]; qreal dpi = screen->logicalDotsPerInch(); - //计算dpi对应的缩放比例 - double objectRate = dpi/96.0; + // 计算dpi对应的缩放比例 + double objectRate = dpi / 96.0; changeObjectSize(*this, objectRate); - qDebug()<<"width "<(o.children().at(i)); + for (int i = 0; i < o.children().size(); ++i) { + QWidget* pWidget = qobject_cast(o.children().at(i)); if (pWidget != nullptr) { qDebug() << pWidget->width() << pWidget->height(); - //pWidget->resize(pWidget->width()*objectRate, pWidget->height()*objectRate); - pWidget->setGeometry(pWidget->x()*objectRate,pWidget->y()*objectRate, - pWidget->width()*objectRate, pWidget->height()*objectRate); - changeObjectSize(*(o.children().at(i)),objectRate); + // pWidget->resize(pWidget->width()*objectRate, pWidget->height()*objectRate); + pWidget->setGeometry(pWidget->x() * objectRate, pWidget->y() * objectRate, + pWidget->width() * objectRate, pWidget->height() * objectRate); + changeObjectSize(*(o.children().at(i)), objectRate); } } } @@ -446,7 +414,7 @@ void MainWindow::changeObjectSize(const QObject &o, double objectRate) void MainWindow::on_pushButton_clicked() { - double freq_sum[4] = {0,0,0,0}; + double freq_sum[4] = { 0, 0, 0, 0 }; int size_sum = 0; refresh_DataSize(); @@ -455,86 +423,69 @@ void MainWindow::on_pushButton_clicked() comboBox_freq_group_2_currentIndexChanged(0); comboBox_freq_group_3_currentIndexChanged(0); - - for(int i=0; i < 64; i++) - { - int temp = line_edit_space[i]->text().toInt(nullptr,10); - if(temp % 4 != 0) - { - temp = temp + 4 - temp%4; - //line_edit_space[i]->setText(tr("%1").arg(temp)); + for (int i = 0; i < 64; i++) { + int temp = line_edit_space[i]->text().toInt(nullptr, 10); + if (temp % 4 != 0) { + temp = temp + 4 - temp % 4; + // line_edit_space[i]->setText(tr("%1").arg(temp)); } size_sum += temp; } - for(int i=0; i < 16; i++) - { - if(combo_box_freq[i*4]->currentIndex() != 0) - freq_sum[0] += 1.0 / pow(2.0, (combo_box_freq[i*4]->currentIndex()+1)); - if(combo_box_freq[i*4+1]->currentIndex() != 0) - freq_sum[1] += 1.0 / pow(2.0, (combo_box_freq[i*4+1]->currentIndex()+1)); - if(combo_box_freq[i*4+2]->currentIndex() != 0) - freq_sum[2] += 1.0 / pow(2.0, (combo_box_freq[i*4+2]->currentIndex()+1)); - if(combo_box_freq[i*4+3]->currentIndex() != 0) - freq_sum[3] += 1.0 / pow(2.0, (combo_box_freq[i*4+3]->currentIndex()+1)); + for (int i = 0; i < 16; i++) { + if (combo_box_freq[i * 4]->currentIndex() != 0) + freq_sum[0] += 1.0 / pow(2.0, (combo_box_freq[i * 4]->currentIndex() + 1)); + if (combo_box_freq[i * 4 + 1]->currentIndex() != 0) + freq_sum[1] += 1.0 / pow(2.0, (combo_box_freq[i * 4 + 1]->currentIndex() + 1)); + if (combo_box_freq[i * 4 + 2]->currentIndex() != 0) + freq_sum[2] += 1.0 / pow(2.0, (combo_box_freq[i * 4 + 2]->currentIndex() + 1)); + if (combo_box_freq[i * 4 + 3]->currentIndex() != 0) + freq_sum[3] += 1.0 / pow(2.0, (combo_box_freq[i * 4 + 3]->currentIndex() + 1)); } int data_space_index = ui->comboBox_size->currentIndex(); qDebug() << size_sum; - if(size_sum > data_space_size[data_space_index]) - { - QMessageBox::warning(this,QString::fromLocal8Bit("生成错误"),QString::fromLocal8Bit("线程栈空间总和大于数据空间"),QMessageBox::Ok); + if (size_sum > data_space_size[data_space_index]) { + QMessageBox::warning(this, QString::fromLocal8Bit("生成错误"), QString::fromLocal8Bit("线程栈空间总和大于数据空间"), QMessageBox::Ok); return; } - for(int i=0; i < 4; i++) - { + for (int i = 0; i < 4; i++) { qDebug() << freq_sum[i]; - if(freq_sum[i] > 0.25) - { - QMessageBox::warning(this,QString::fromLocal8Bit("生成错误"),QString::fromLocal8Bit("线程组")+tr("%1").arg(i)+QString::fromLocal8Bit("频率总和大于1/4"),QMessageBox::Ok); + if (freq_sum[i] > 0.25) { + QMessageBox::warning(this, QString::fromLocal8Bit("生成错误"), QString::fromLocal8Bit("线程组") + tr("%1").arg(i) + QString::fromLocal8Bit("频率总和大于1/4"), QMessageBox::Ok); return; } } -#ifdef Q_OS_DARWIN - if(generate_Code("thread_config.h")) - QMessageBox::information(this,QString::fromLocal8Bit("成功"),QString::fromLocal8Bit("生成成功: 桌面/thread_config.h"),QMessageBox::Ok); - else - QMessageBox::information(this,QString::fromLocal8Bit("错误"),QString::fromLocal8Bit("生成失败: 桌面/thread_config.h"),QMessageBox::Ok); -#else - if(generate_Code("thread_config.h")) - QMessageBox::information(this,QString::fromLocal8Bit("成功"),QString::fromLocal8Bit("生成成功"),QMessageBox::Ok); + + if (generate_Code("thread_config.h")) + QMessageBox::information(this, QString::fromLocal8Bit("成功"), QString::fromLocal8Bit("生成成功"), QMessageBox::Ok); else - QMessageBox::information(this,QString::fromLocal8Bit("错误"),QString::fromLocal8Bit("生成失败"),QMessageBox::Ok); -#endif + QMessageBox::information(this, QString::fromLocal8Bit("错误"), QString::fromLocal8Bit("生成失败"), QMessageBox::Ok); } uint32_t MainWindow::reverseBits(uint32_t n) { uint32_t result = 0; - result |= (n & 0x0001)<<9; - result |= (n & 0x0002)<<7; - result |= (n & 0x0004)<<5; - result |= (n & 0x0008)<<3; - result |= (n & 0x0010)<<1; - result |= (n & 0x0020)>>1; - result |= (n & 0x0040)>>3; - result |= (n & 0x0080)>>5; - result |= (n & 0x0100)>>7; - result |= (n & 0x0200)>>9; + result |= (n & 0x0001) << 9; + result |= (n & 0x0002) << 7; + result |= (n & 0x0004) << 5; + result |= (n & 0x0008) << 3; + result |= (n & 0x0010) << 1; + result |= (n & 0x0020) >> 1; + result |= (n & 0x0040) >> 3; + result |= (n & 0x0080) >> 5; + result |= (n & 0x0100) >> 7; + result |= (n & 0x0200) >> 9; return result; } -bool MainWindow::generate_Code(QString filename) +bool MainWindow::generate_Code(QString) { -#ifdef Q_OS_DARWIN - qDebug() << QDir::homePath()+"/DeskTop/"+ filename; - QFile code_file(QDir::homePath()+"/DeskTop/"+ filename); -#else - qDebug() << filename; - QFile code_file(filename); -#endif + QString configFilePath = QStandardPaths::writableLocation(QStandardPaths::DesktopLocation) + "/thread_config.h"; + QString ldsFilePath = QStandardPaths::writableLocation(QStandardPaths::DesktopLocation) + "/MC3172.lds"; + + QFile code_file(configFilePath); code_file.open(QIODevice::Text | QIODevice::WriteOnly | QIODevice::Truncate); - if(!code_file.isOpen()) - { + if (!code_file.isOpen()) { return false; } QTextStream out(&code_file); @@ -542,62 +493,50 @@ bool MainWindow::generate_Code(QString filename) int code_size = code_space_size[data_space_index]; int data_size = data_space_size[data_space_index]; - QVector main_freq_values(64,0xf0fff000); - for(int group = 0; group < 4; group++) - { + QVector main_freq_values(64, 0xf0fff000); + for (int group = 0; group < 4; group++) { { QList sorted_index; QVector main_freqs; QVector main_freq_indexs; sorted_index.push_front(0); - for(int i = 0; i < 16; i++) - { + for (int i = 0; i < 16; i++) { double temp = 0; - if(combo_box_freq[i*4+group]->currentIndex() != 0) - temp = 1.0 / pow(2.0, (combo_box_freq[i*4+group]->currentIndex()+1)); + if (combo_box_freq[i * 4 + group]->currentIndex() != 0) + temp = 1.0 / pow(2.0, (combo_box_freq[i * 4 + group]->currentIndex() + 1)); main_freqs.push_back(temp); - main_freq_indexs.push_back(combo_box_freq[i*4+group]->currentIndex()); + main_freq_indexs.push_back(combo_box_freq[i * 4 + group]->currentIndex()); } qDebug() << main_freqs; - for(int i = 1; i < 16; i++) - { + for (int i = 1; i < 16; i++) { qDebug() << sorted_index; - for(int j=0; j <= i; j++) - { - if(j==i) - { + for (int j = 0; j <= i; j++) { + if (j == i) { sorted_index.push_back(i); break; } - if(main_freqs[i] > main_freqs[sorted_index[j]]) - { + if (main_freqs[i] > main_freqs[sorted_index[j]]) { qDebug() << j << i << sorted_index; - sorted_index.insert(j,i); + sorted_index.insert(j, i); break; } } } qDebug() << sorted_index; uint32_t alreay_use = 0; - for(int i=0; i < 16; i++) - { + for (int i = 0; i < 16; i++) { int index = sorted_index[i]; - if(main_freq_indexs[index] != 0) - { - if(i > 0) - { - int last_index = sorted_index[i-1]; - alreay_use = alreay_use + (uint32_t)(main_freqs[last_index]*1024*4); - main_freq_values[index*4+group] = (main_freq_indexs[index]-1)*0x10000000 + ((reverseBits(alreay_use))<<12); - } - else - { - main_freq_values[index*4+group] = (main_freq_indexs[index]-1)*0x10000000; + if (main_freq_indexs[index] != 0) { + if (i > 0) { + int last_index = sorted_index[i - 1]; + alreay_use = alreay_use + (uint32_t)(main_freqs[last_index] * 1024 * 4); + main_freq_values[index * 4 + group] = (main_freq_indexs[index] - 1) * 0x10000000 + ((reverseBits(alreay_use)) << 12); + } else { + main_freq_values[index * 4 + group] = (main_freq_indexs[index] - 1) * 0x10000000; } - qDebug() << group << "|" << i << "|" << index << "|" << tr("%1").arg(main_freq_values[index*4+group],4,16); - } - else + qDebug() << group << "|" << i << "|" << index << "|" << tr("%1").arg(main_freq_values[index * 4 + group], 4, 16); + } else break; } } @@ -605,46 +544,45 @@ bool MainWindow::generate_Code(QString filename) QVector thread_space_stacks; int thread_data_sum = 0; - thread_space_stacks.push_back(data_size+DATA_RESERVE_SPACE-64); - for(int i=1; i < 64; i++) - { - if(combo_box_freq[i-1]->currentIndex() != 0) - { - int temp = line_edit_space[i-1]->text().toInt(nullptr,10); - if(temp % 4 != 0) - { - temp = temp + 4 - temp%4; - //line_edit_space[i]->setText(tr("%1").arg(temp)); + thread_space_stacks.push_back(data_size + DATA_RESERVE_SPACE - 64); + for (int i = 1; i < 64; i++) { + if (combo_box_freq[i - 1]->currentIndex() != 0) { + int temp = line_edit_space[i - 1]->text().toInt(nullptr, 10); + if (temp % 4 != 0) { + temp = temp + 4 - temp % 4; + // line_edit_space[i]->setText(tr("%1").arg(temp)); } thread_data_sum += temp; - if(i > 0) - { - thread_space_stacks.push_back(thread_space_stacks[i-1]-temp); + if (i > 0) { + thread_space_stacks.push_back(thread_space_stacks[i - 1] - temp); } - } - else - { - thread_space_stacks.push_back(thread_space_stacks[i-1]); + } else { + thread_space_stacks.push_back(thread_space_stacks[i - 1]); } } int remain_data_size = data_size - thread_data_sum; - out << "#define ROTHD_CODE_RAM_VALUE " << code_size + RESERVE_SPACE << endl; - out << "#define ROTHD_DATA_RAM_VALUE " << data_size + DATA_RESERVE_SPACE << endl << endl; - - out << "#define ROTHD_CODE_SPACE_VALUE " << code_size << endl; - out << "#define ROTHD_DATA_SPACE_VALUE " << data_size + DATA_RESERVE_SPACE << endl; - out << "#define ROTHD_COMMON_DATA_SPACE_VALUE " << remain_data_size << endl; - out << "#define ROTHD_COLCK_SOURCE_SEL " << ui->comboBox_timerSource->currentIndex() << endl << endl << endl; - for(int i=0; i < 64; i++) - { - out << "#define ROTHD_THREAD" << i << "_FREQCFG_VALUE 0x" << QString::number(main_freq_values[i],16) << endl; - if(main_freq_values[i] != 0xffff) - out << "#define ROTHD_THREAD" << i << "_VALID" << endl; + out << "#define ROTHD_CODE_RAM_VALUE " << code_size + RESERVE_SPACE << Qt::endl; + out << "#define ROTHD_DATA_RAM_VALUE " << data_size + DATA_RESERVE_SPACE << Qt::endl + << Qt::endl; + + out << "#define ROTHD_CODE_SPACE_VALUE " << code_size << Qt::endl; + out << "#define ROTHD_DATA_SPACE_VALUE " << data_size + DATA_RESERVE_SPACE << Qt::endl; + out << "#define ROTHD_COMMON_DATA_SPACE_VALUE " << remain_data_size << Qt::endl; + out << "#define ROTHD_COLCK_SOURCE_SEL " << ui->comboBox_timerSource->currentIndex() << Qt::endl + << Qt::endl + << Qt::endl; + + for (int i = 0; i < 64; i++) { + out << "#define ROTHD_THREAD" << i << "_FREQCFG_VALUE 0x" << QString::number(main_freq_values[i], 16) << Qt::endl; + if (main_freq_values[i] != 0xffff) + out << "#define ROTHD_THREAD" << i << "_VALID" << Qt::endl; else - out << "#define ROTHD_THREAD" << i << "_INVALID" << endl; - out << "#define ROTHD_THREAD" << i << "_STACKCFG_VALUE " << thread_space_stacks[i] << endl << endl; + out << "#define ROTHD_THREAD" << i << "_INVALID" << Qt::endl; + out << "#define ROTHD_THREAD" << i << "_STACKCFG_VALUE " << thread_space_stacks[i] << Qt::endl + << Qt::endl; } + out.flush(); code_file.close(); @@ -652,18 +590,14 @@ bool MainWindow::generate_Code(QString filename) lds_file.open(QIODevice::Text | QIODevice::ReadOnly); QString read_input = QString::fromUtf8(lds_file.readAll()); lds_file.close(); -#ifdef Q_OS_DARWIN - qDebug() << QDir::homePath()+"/DeskTop/"+ "MC3172.lds"; - QFile lds_out_file(QDir::homePath()+"/DeskTop/"+ "MC3172.lds"); -#else - QFile lds_out_file("MC3172.lds"); -#endif + + QFile lds_out_file(ldsFilePath); lds_out_file.open(QIODevice::Text | QIODevice::WriteOnly | QIODevice::Truncate); - if(!lds_out_file.isOpen()) + if (!lds_out_file.isOpen()) return false; QTextStream lds_out(&lds_out_file); - read_input.replace("dEfInE_cOdE_SpACE",QString::number(code_size+RESERVE_SPACE-16,10)); - read_input.replace("dEfInE_DaTa_SpACE",QString::number(remain_data_size,10)); + read_input.replace("dEfInE_cOdE_SpACE", QString::number(code_size + RESERVE_SPACE - 16, 10)); + read_input.replace("dEfInE_DaTa_SpACE", QString::number(remain_data_size, 10)); lds_out_file.write(read_input.toUtf8()); lds_out_file.flush(); lds_out_file.close(); @@ -671,137 +605,110 @@ bool MainWindow::generate_Code(QString filename) return true; } - void MainWindow::refresh_DataSize() { int size_sum = 0; - for(int i=0; i < 64; i++) - { - int temp = line_edit_space[i]->text().toInt(nullptr,10); - if(temp % 4 != 0) - { - temp = temp + 4 - temp%4; - //line_edit_space[i]->setText(tr("%1").arg(temp)); + for (int i = 0; i < 64; i++) { + int temp = line_edit_space[i]->text().toInt(nullptr, 10); + if (temp % 4 != 0) { + temp = temp + 4 - temp % 4; + // line_edit_space[i]->setText(tr("%1").arg(temp)); } size_sum += temp; } int data_space_index = ui->comboBox_size->currentIndex(); qDebug() << size_sum; - if(size_sum > data_space_size[data_space_index]) - { - QMessageBox::warning(this,QString::fromLocal8Bit("错误"),QString::fromLocal8Bit("线程栈空间总和大于数据空间"),QMessageBox::Ok); + if (size_sum > data_space_size[data_space_index]) { + QMessageBox::warning(this, QString::fromLocal8Bit("错误"), QString::fromLocal8Bit("线程栈空间总和大于数据空间"), QMessageBox::Ok); return; } - ui->lineEdit_remain_data_size->setText(tr("%1").arg(data_space_size[data_space_index]-size_sum)); + ui->lineEdit_remain_data_size->setText(tr("%1").arg(data_space_size[data_space_index] - size_sum)); } - -void MainWindow::comboBox_freq_group_0_currentIndexChanged(int index) +void MainWindow::comboBox_freq_group_0_currentIndexChanged(int) { double freq_sum = 0; - for(int i=0; i < 16; i++) - { - if(combo_box_freq[i*4]->currentIndex() != 0) - { - freq_sum += 1.0 / pow(2.0, (combo_box_freq[i*4]->currentIndex()+1)); - line_edit_space[i*4]->setEnabled(true); + for (int i = 0; i < 16; i++) { + if (combo_box_freq[i * 4]->currentIndex() != 0) { + freq_sum += 1.0 / pow(2.0, (combo_box_freq[i * 4]->currentIndex() + 1)); + line_edit_space[i * 4]->setEnabled(true); + } else { + line_edit_space[i * 4]->setText(""); + line_edit_space[i * 4]->setEnabled(false); } - else - { - line_edit_space[i*4]->setText(""); - line_edit_space[i*4]->setEnabled(false); - } - } - if(freq_sum > 0.25) - { - QMessageBox::warning(this,QString::fromLocal8Bit("错误"),QString::fromLocal8Bit("线程组")+tr("%1").arg(0)+QString::fromLocal8Bit("频率总和大于1/4"),QMessageBox::Ok); + if (freq_sum > 0.25) { + QMessageBox::warning(this, QString::fromLocal8Bit("错误"), QString::fromLocal8Bit("线程组") + tr("%1").arg(0) + QString::fromLocal8Bit("频率总和大于1/4"), QMessageBox::Ok); return; } - ui->lineEdit_main_freq0->setText(QString::number((0.25-freq_sum)*100,'g')+"%"); + ui->lineEdit_main_freq0->setText(QString::number((0.25 - freq_sum) * 100, 'g') + "%"); } -void MainWindow::comboBox_freq_group_1_currentIndexChanged(int index) +void MainWindow::comboBox_freq_group_1_currentIndexChanged(int) { double freq_sum = 0; - for(int i=0; i < 16; i++) - { - if(combo_box_freq[i*4+1]->currentIndex() != 0) - { - freq_sum += 1.0 / pow(2.0, (combo_box_freq[i*4+1]->currentIndex()+1)); - line_edit_space[i*4+1]->setEnabled(true); - } - else - { - line_edit_space[i*4+1]->setText(""); - line_edit_space[i*4+1]->setEnabled(false); + for (int i = 0; i < 16; i++) { + if (combo_box_freq[i * 4 + 1]->currentIndex() != 0) { + freq_sum += 1.0 / pow(2.0, (combo_box_freq[i * 4 + 1]->currentIndex() + 1)); + line_edit_space[i * 4 + 1]->setEnabled(true); + } else { + line_edit_space[i * 4 + 1]->setText(""); + line_edit_space[i * 4 + 1]->setEnabled(false); } } - if(freq_sum > 0.25) - { - QMessageBox::warning(this,QString::fromLocal8Bit("错误"),QString::fromLocal8Bit("线程组")+tr("%1").arg(1)+QString::fromLocal8Bit("频率总和大于1/4"),QMessageBox::Ok); + if (freq_sum > 0.25) { + QMessageBox::warning(this, QString::fromLocal8Bit("错误"), QString::fromLocal8Bit("线程组") + tr("%1").arg(1) + QString::fromLocal8Bit("频率总和大于1/4"), QMessageBox::Ok); return; } - ui->lineEdit_main_freq1->setText(QString::number((0.25-freq_sum)*100,'g')+"%"); + ui->lineEdit_main_freq1->setText(QString::number((0.25 - freq_sum) * 100, 'g') + "%"); refresh_DataSize(); } -void MainWindow::comboBox_freq_group_2_currentIndexChanged(int index) +void MainWindow::comboBox_freq_group_2_currentIndexChanged(int) { double freq_sum = 0; - for(int i=0; i < 16; i++) - { - if(combo_box_freq[i*4+2]->currentIndex() != 0) - { - freq_sum += 1.0 / pow(2.0, (combo_box_freq[i*4+2]->currentIndex()+1)); - line_edit_space[i*4+2]->setEnabled(true); - } - else - { - line_edit_space[i*4+2]->setText(""); - line_edit_space[i*4+2]->setEnabled(false); + for (int i = 0; i < 16; i++) { + if (combo_box_freq[i * 4 + 2]->currentIndex() != 0) { + freq_sum += 1.0 / pow(2.0, (combo_box_freq[i * 4 + 2]->currentIndex() + 1)); + line_edit_space[i * 4 + 2]->setEnabled(true); + } else { + line_edit_space[i * 4 + 2]->setText(""); + line_edit_space[i * 4 + 2]->setEnabled(false); } } - if(freq_sum > 0.25) - { - QMessageBox::warning(this,QString::fromLocal8Bit("错误"),QString::fromLocal8Bit("线程组")+tr("%1").arg(2)+QString::fromLocal8Bit("频率总和大于1/4"),QMessageBox::Ok); + if (freq_sum > 0.25) { + QMessageBox::warning(this, QString::fromLocal8Bit("错误"), QString::fromLocal8Bit("线程组") + tr("%1").arg(2) + QString::fromLocal8Bit("频率总和大于1/4"), QMessageBox::Ok); return; } - ui->lineEdit_main_freq2->setText(QString::number((0.25-freq_sum)*100,'g')+"%"); + ui->lineEdit_main_freq2->setText(QString::number((0.25 - freq_sum) * 100, 'g') + "%"); refresh_DataSize(); } -void MainWindow::comboBox_freq_group_3_currentIndexChanged(int index) +void MainWindow::comboBox_freq_group_3_currentIndexChanged(int) { double freq_sum = 0; - for(int i=0; i < 16; i++) - { - if(combo_box_freq[i*4+3]->currentIndex() != 0) - { - freq_sum += 1.0 / pow(2.0, (combo_box_freq[i*4+3]->currentIndex()+1)); - line_edit_space[i*4+3]->setEnabled(true); - } - else - { - line_edit_space[i*4+3]->setText(""); - line_edit_space[i*4+3]->setEnabled(false); + for (int i = 0; i < 16; i++) { + if (combo_box_freq[i * 4 + 3]->currentIndex() != 0) { + freq_sum += 1.0 / pow(2.0, (combo_box_freq[i * 4 + 3]->currentIndex() + 1)); + line_edit_space[i * 4 + 3]->setEnabled(true); + } else { + line_edit_space[i * 4 + 3]->setText(""); + line_edit_space[i * 4 + 3]->setEnabled(false); } } - if(freq_sum > 0.25) - { - QMessageBox::warning(this,QString::fromLocal8Bit("错误"),QString::fromLocal8Bit("线程组")+tr("%1").arg(3)+QString::fromLocal8Bit("频率总和大于1/4"),QMessageBox::Ok); + if (freq_sum > 0.25) { + QMessageBox::warning(this, QString::fromLocal8Bit("错误"), QString::fromLocal8Bit("线程组") + tr("%1").arg(3) + QString::fromLocal8Bit("频率总和大于1/4"), QMessageBox::Ok); return; } - ui->lineEdit_main_freq3->setText(QString::number((0.25-freq_sum)*100,'g')+"%"); + ui->lineEdit_main_freq3->setText(QString::number((0.25 - freq_sum) * 100, 'g') + "%"); refresh_DataSize(); } -void MainWindow::on_comboBox_size_currentIndexChanged(int index) +void MainWindow::on_comboBox_size_currentIndexChanged(int) { refresh_DataSize(); } - diff --git a/mainwindow.h b/mainwindow.h index 067047d320f0642d16f0578ff22d6345a9b9a96a..3bc3de7565a4496373037714f39a07fdd57f9d3f 100644 --- a/mainwindow.h +++ b/mainwindow.h @@ -1,45 +1,39 @@ #ifndef MAINWINDOW_H #define MAINWINDOW_H -#include -#include #include -#include -#include +#include #include -#include -#include #include -#include +#include #include +#include +#include +#include +#include -namespace GX_LINK -{ - namespace SpaceMap - { - enum : int - { - code32_data96 = 0, - code64_data64 = 1, - code96_data32 = 2, - }; - } - namespace FreqInverse - { - enum : int - { - EMPTY = 0, - FREQ4 = 1, - FREQ8 = 2, - FREQ16 = 3, - FREQ32 = 4, - FREQ64 = 5, - FREQ128 = 6, - FREQ256 = 7, - FREQ512 = 8, - FREQ1024 = 9, - }; - } +namespace GX_LINK { +namespace SpaceMap { + enum : int { + code32_data96 = 0, + code64_data64 = 1, + code96_data32 = 2, + }; +} +namespace FreqInverse { + enum : int { + EMPTY = 0, + FREQ4 = 1, + FREQ8 = 2, + FREQ16 = 3, + FREQ32 = 4, + FREQ64 = 5, + FREQ128 = 6, + FREQ256 = 7, + FREQ512 = 8, + FREQ1024 = 9, + }; +} } @@ -49,19 +43,20 @@ namespace GX_LINK #define DATA_RESERVE_SPACE 192 QT_BEGIN_NAMESPACE -namespace Ui { class MainWindow; } +namespace Ui { +class MainWindow; +} QT_END_NAMESPACE -class MainWindow : public QMainWindow -{ +class MainWindow : public QMainWindow { Q_OBJECT public: - MainWindow(QWidget *parent = nullptr); + MainWindow(QWidget* parent = nullptr); ~MainWindow(); private slots: - void refresh_DataSize_all(const QString &text); + void refresh_DataSize_all(const QString& text); void on_pushButton_clicked(); void refresh_DataSize(); void comboBox_freq_group_0_currentIndexChanged(int index); @@ -75,13 +70,13 @@ private: uint32_t reverseBits(uint32_t n); bool generate_Code(QString filename); void refreshDPI(); - void changeObjectSize(const QObject &o, double objectRate); - Ui::MainWindow *ui; - QLineEdit * remain_main_freq[4]; - QComboBox * combo_box_freq[64]; - QLineEdit * line_edit_space[64]; + void changeObjectSize(const QObject& o, double objectRate); + Ui::MainWindow* ui; + QLineEdit* remain_main_freq[4]; + QComboBox* combo_box_freq[64]; + QLineEdit* line_edit_space[64]; - int code_space_size[3] = {32*1024-RESERVE_SPACE, 64*1024-RESERVE_SPACE, 96*1024-RESERVE_SPACE}; - int data_space_size[3] = {96*1024-DATA_RESERVE_SPACE, 64*1024-DATA_RESERVE_SPACE, 32*1024-DATA_RESERVE_SPACE}; + int code_space_size[3] = { 32 * 1024 - RESERVE_SPACE, 64 * 1024 - RESERVE_SPACE, 96 * 1024 - RESERVE_SPACE }; + int data_space_size[3] = { 96 * 1024 - DATA_RESERVE_SPACE, 64 * 1024 - DATA_RESERVE_SPACE, 32 * 1024 - DATA_RESERVE_SPACE }; }; #endif // MAINWINDOW_H diff --git a/mainwindow.ui b/mainwindow.ui index 2fa41c75f8953dc425d9b272fd2719e7b11741a2..682690cd98f6950c0367b10c0accdcb397626367 100644 --- a/mainwindow.ui +++ b/mainwindow.ui @@ -1,11954 +1,11953 @@ - MainWindow - - - - 0 - 0 - 1446 - 819 - - - - 配置代码生成工具 V1.0 - - - - :/favicon.ico:/favicon.ico - - - + MainWindow + - - 290 - 50 - 201 - 22 - + + 0 + 0 + 1446 + 819 + - - 1 + + 配置代码生成工具 V1.0 - - - 32K代码存储器 + 96K数据存储器 - - - - - 64K代码存储器 + 64K数据存储器 - - - - - 96K代码存储器 + 32K数据存储器 - - - - - - - -10 - 0 - 1160 - 41 - - - - - 0 - 0 - - - - - 20 - 75 - true - - - - - - - 配置代码生成工具 V1.0 - - - Qt::AlignCenter - - - Group1 - - - - - - 790 - 10 - 251 - 41 - - - - - 16 - 75 - true - - - - 厦门感芯科技有限公司 - - - - - - 1140 - 50 - 131 - 22 - - - - - 外部无源晶振 - - - - - 外部有源晶振 - - - - - 内部高速RC振荡器 - - - - - 内部低速RC振荡器 - - - - - - - 90 - 40 - 181 - 41 - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - 128K BYTE 存储器分配 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - 1030 - 40 - 91 - 41 - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - 时钟源选择 - - - - - - 638 - 760 - 171 - 51 - - - - - 80 - 0 - - - - - 16 - - - - - - - 生成代码 - - - - - - 10 - 84 - 1431 - 671 - + + :/favicon.ico:/favicon.ico - - - 80 - 0 - - - - - 24 - - - - - QWidget#Group1{border: 2px solid rgb(189, 189, 189);} - - + + + + + 290 + 50 + 201 + 22 + + + + 1 + - - - - 0 - 0 - - - - - 14 - - - 线程组0 - - - Qt::AlignCenter + 32K代码存储器 + 96K数据存储器 - - - - Qt::Horizontal + + 64K代码存储器 + 64K数据存储器 - - - - - - - - - 0 - 0 - - - - - 11 - 75 - true - - - - 剩余主频资源 - - - Qt::AlignCenter - - - - - - - false - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - - - - - - - 32767 - - - Qt::AlignCenter - - - true - - - - - - - - - - - - 0 - 0 - - - - Qt::Horizontal - - - - 70 - 20 - - - - - - - - - 0 - 0 - - - - - 11 - 75 - true - - - - 线程频率 - - - Qt::AlignCenter - - - - - - - - 0 - 0 - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 40 - 20 - - - - - - - - - 0 - 0 - - - - - 120 - 0 - - - - - 11 - 75 - true - - - - 线程栈空间byte - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - 0 + + 96K代码存储器 + 32K数据存储器 - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程0 </span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 32767 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - + + + + + -10 + 0 + 1160 + 41 + + + + + 0 + 0 + + + + + 20 + 75 + true + + + + + + + 配置代码生成工具 V1.0 + + + Qt::AlignCenter + + + Group1 + + + + + + 790 + 10 + 251 + 41 + + + + + 16 + 75 + true + + + + 厦门感芯科技有限公司 + + + + + + 1140 + 50 + 131 + 22 + + - - - 0 + + 外部无源晶振 - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程4 </span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - 0 + + 外部有源晶振 - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程8 </span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - 0 + + 内部高速RC振荡器 - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程12</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Minimum - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - 0 + + 内部低速RC振荡器 - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程16</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - + + + + + 90 + 40 + 181 + 41 + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + 128K BYTE 存储器分配 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + 1030 + 40 + 91 + 41 + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + 时钟源选择 + + + + + + 638 + 760 + 171 + 51 + + + + + 80 + 0 + + + + + 16 + + + + + + + 生成代码 + + + + + + 10 + 84 + 1431 + 671 + + + + + 80 + 0 + + + - 0 + 24 - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> + + + QWidget#Group1{border: 2px solid rgb(189, 189, 189);} + + + + + + + 0 + 0 + + + + + 14 + + + + 线程组0 + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + + + + + + + + 0 + 0 + + + + + 11 + 75 + true + + + + 剩余主频资源 + + + Qt::AlignCenter + + + + + + + false + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + + + + + + + 32767 + + + Qt::AlignCenter + + + true + + + + + + + + + + + + 0 + 0 + + + + Qt::Horizontal + + + + 70 + 20 + + + + + + + + + 0 + 0 + + + + + 11 + 75 + true + + + + 线程频率 + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 40 + 20 + + + + + + + + + 0 + 0 + + + + + 120 + 0 + + + + + 11 + 75 + true + + + + 线程栈空间byte + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程20</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程0 </span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 32767 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程24</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程4 </span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程28</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程8 </span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程32</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程12</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Minimum + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程36</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程16</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程40</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程20</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程44</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程24</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程48</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程28</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程52</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程56</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程60</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - - - - - 80 - 0 - - - - QWidget#Group2{border: 2px solid rgb(189, 189, 189);} - - - - - - - 0 - 0 - - - - - 14 - - - - 线程组1 - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - - - - - - - - 0 - 0 - - - - - 11 - 75 - true - - - - 剩余主频资源 - - - Qt::AlignCenter - - - - - - - false - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - - - - - - - 32767 - - - Qt::AlignCenter - - - true - - - - - - - - - - - - 0 - 0 - - - - Qt::Horizontal - - - - 70 - 20 - - - - - - - - - 0 - 0 - - - - - 11 - 75 - true - - - - 线程频率 - - - Qt::AlignCenter - - - - - - - - 0 - 0 - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 40 - 20 - - - - - - - - - 0 - 0 - - - - - 120 - 0 - - - - - 11 - 75 - true - - - - 线程栈空间byte - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程1 </span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程32</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程5 </span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程9 </span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程13</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程17</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程21</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程25</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程36</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程29</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程40</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程33</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程44</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程37</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程48</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程41</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程52</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程45</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程56</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程49</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程60</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + + + + + 80 + 0 + + + + QWidget#Group2{border: 2px solid rgb(189, 189, 189);} + + + + + + + 0 + 0 + + + + + 14 + + + + 线程组1 + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + + + + + + + + 0 + 0 + + + + + 11 + 75 + true + + + + 剩余主频资源 + + + Qt::AlignCenter + + + + + + + false + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + + + + + + + 32767 + + + Qt::AlignCenter + + + true + + + + + + + + + + + + 0 + 0 + + + + Qt::Horizontal + + + + 70 + 20 + + + + + + + + + 0 + 0 + + + + + 11 + 75 + true + + + + 线程频率 + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 40 + 20 + + + + + + + + + 0 + 0 + + + + + 120 + 0 + + + + + 11 + 75 + true + + + + 线程栈空间byte + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程53</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程1 </span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程57</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程5 </span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程61</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - - - - - 80 - 0 - - - - QWidget#Group3{border: 2px solid rgb(189, 189, 189);} - - - - - - - 0 - 0 - - - - - 14 - - - - 线程组2 - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - - - - - - - - 0 - 0 - - - - - 11 - 75 - true - - - - 剩余主频资源 - - - Qt::AlignCenter - - - - - - - false - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - - - - - - - 32767 - - - Qt::AlignCenter - - - true - - - - - - - - - - - - 0 - 0 - - - - Qt::Horizontal - - - - 70 - 20 - - - - - - - - - 0 - 0 - - - - - 11 - 75 - true - - - - 线程频率 - - - Qt::AlignCenter - - - - - - - - 0 - 0 - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 40 - 20 - - - - - - - - - 0 - 0 - - - - - 120 - 0 - - - - - 11 - 75 - true - - - - 线程栈空间byte - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程9 </span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程2 </span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程13</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程6 </span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程17</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程10</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程21</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程14</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程25</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程18</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程29</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程22</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程33</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程26</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程37</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程30</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程41</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程34</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程45</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程38</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程49</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程42</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程53</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程46</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程57</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程50</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程61</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + + + + + 80 + 0 + + + + QWidget#Group3{border: 2px solid rgb(189, 189, 189);} + + + + + + + 0 + 0 + + + + + 14 + + + + 线程组2 + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + + + + + + + + 0 + 0 + + + + + 11 + 75 + true + + + + 剩余主频资源 + + + Qt::AlignCenter + + + + + + + false + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + + + + + + + 32767 + + + Qt::AlignCenter + + + true + + + + + + + + + + + + 0 + 0 + + + + Qt::Horizontal + + + + 70 + 20 + + + + + + + + + 0 + 0 + + + + + 11 + 75 + true + + + + 线程频率 + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 40 + 20 + + + + + + + + + 0 + 0 + + + + + 120 + 0 + + + + + 11 + 75 + true + + + + 线程栈空间byte + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程54</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程2 </span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程58</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程6 </span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程62</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - - - - - 80 - 0 - - - - QWidget#Group4_2{border: 2px solid rgb(189, 189, 189);} - - - - - - - 0 - 0 - - - - - 14 - - - - 线程组3 - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - - - - - - - - 0 - 0 - - - - - 11 - 75 - true - - - - 剩余主频资源 - - - Qt::AlignCenter - - - - - - - false - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - - - - - - - 32767 - - - Qt::AlignCenter - - - true - - - - - - - - - - - - 0 - 0 - - - - Qt::Horizontal - - - - 70 - 20 - - - - - - - - - 0 - 0 - - - - - 11 - 75 - true - - - - 线程频率 - - - Qt::AlignCenter - - - - - - - - 0 - 0 - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 40 - 20 - - - - - - - - - 0 - 0 - - - - - 120 - 0 - - - - - 11 - 75 - true - - - - 线程栈空间byte - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程10</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程14</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程3 </span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程18</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程7 </span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程22</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程11</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程26</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程15</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程30</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程19</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程34</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程23</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程38</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程27</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程42</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程31</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程46</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程35</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程50</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程39</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程54</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程43</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程58</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程47</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程62</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + + + + + 80 + 0 + + + + QWidget#Group4_2{border: 2px solid rgb(189, 189, 189);} + + + + + + + 0 + 0 + + + + + 14 + + + + 线程组3 + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + + + + + + + + 0 + 0 + + + + + 11 + 75 + true + + + + 剩余主频资源 + + + Qt::AlignCenter + + + + + + + false + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + + + + + + + 32767 + + + Qt::AlignCenter + + + true + + + + + + + + + + + + 0 + 0 + + + + Qt::Horizontal + + + + 70 + 20 + + + + + + + + + 0 + 0 + + + + + 11 + 75 + true + + + + 线程频率 + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 40 + 20 + + + + + + + + + 0 + 0 + + + + + 120 + 0 + + + + + 11 + 75 + true + + + + 线程栈空间byte + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程51</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程3 </span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程55</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程7 </span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程59</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - 0 - - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程11</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程63</span></p></body></html> - - - Qt::AlignCenter - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - 0 - - - - 空闲 - - - - - 1/4 主频 - - - - - 1/8 主频 - - - - - 1/16 主频 - - - - - 1/32 主频 - - - - - 1/64 主频 - - - - - 1/128 主频 - - - - - 1/256 主频 - - - - - 1/512 主频 - - - - - 1/1024 主频 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 30 - 20 - - - - - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - 0 - - - 6 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程15</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程19</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程23</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程27</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程31</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程35</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程39</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程43</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程47</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程51</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程55</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程59</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'SimSun'; font-size:12pt; font-weight:600; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:11pt;">线程63</span></p></body></html> + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 10 + 20 + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + 0 + + + + 空闲 + + + + + 1/4 主频 + + + + + 1/8 主频 + + + + + 1/16 主频 + + + + + 1/32 主频 + + + + + 1/64 主频 + + + + + 1/128 主频 + + + + + 1/256 主频 + + + + + 1/512 主频 + + + + + 1/1024 主频 + + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 30 + 20 + + + + + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + 0 + + + 6 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + - - - - - - false - - - - 720 - 50 - 167 - 21 - - - - - 0 - 0 - - - - - 80 - 0 - - - - - 11 - - - - Qt::LeftToRight - - - - - - - - - 32767 - - - Qt::AlignCenter - - - true - - - - - - 520 - 40 - 181 - 41 - - - - - 0 - 0 - - - - - 12 - 75 - true - - - - 可用全局数据空间 - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - + + + false + + + + 720 + 50 + 167 + 21 + + + + + 0 + 0 + + + + + 80 + 0 + + + + + 11 + + + + Qt::LeftToRight + + + + + + + + + 32767 + + + Qt::AlignCenter + + + true + + + + + + 520 + 40 + 181 + 41 + + + + + 0 + 0 + + + + + 12 + 75 + true + + + + 可用全局数据空间 + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + - - - - - + + + + diff --git a/rsc.qrc b/rsc.qrc index 395f29318e1ace8b2bbbc1251904c275f58cec5a..903f2759953212e9c7d02a6c439ffaccdaaed4da 100644 --- a/rsc.qrc +++ b/rsc.qrc @@ -1,3 +1,4 @@ + MC3172.lds