代码拉取完成,页面将自动刷新
#ifndef TAGANALYSE_H
#define TAGANALYSE_H
#include <QDialog>
#include <QStringList>
#include <QMessageBox>
#include <QVBoxLayout>
#include <QHBoxLayout>
#include <QLabel>
#include <QPushButton>
#include <QFont>
#include <QList>
#include <QDebug>
#include <QProgressBar>
namespace Ui {
class TagAnalyse;
}
class TagAnalyse : public QDialog
{
Q_OBJECT
public:
explicit TagAnalyse(QWidget *parent = 0);
~TagAnalyse();
public:
void transParams(QStringList tagList,QStringList numList); //向该对话框传入参数
void show(); //开始显示分析后的图
void updateDisp(QStringList tagList,QStringList numList); //更新数据显示
private:
void updateLayout(QStringList tagList,QStringList numList); //更新显示
void getOrderList(); //获取按数量排序后的数据表
private slots:
void orderASCIISlot(); //按ASCII码排序并显示
void orderNumSlot(); //按数量排序并显示
private:
Ui::TagAnalyse *ui;
QWidget *mWidget; //全局布局控件容器
QStringList tagList; //Tag表
QStringList numList; //数量表
QStringList orderTagList; //按数量排序后的Tag表
QStringList orderNumList; //按数量排序后的数量表
int totalNum; //总Tag数
};
#endif // TAGANALYSE_H
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。