当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
26 Star 71 Fork 20

Surface-pro / Android日志分析工具
暂停

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
taganalyse.h 1.39 KB
一键复制 编辑 原始数据 按行查看 历史
Surface-pro 提交于 2017-08-14 20:16 . V3.5.3版本更新
#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
C++
1
https://gitee.com/surface-pro/androidrizhifenxigongju.git
git@gitee.com:surface-pro/androidrizhifenxigongju.git
surface-pro
androidrizhifenxigongju
Android日志分析工具
master

搜索帮助