当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
logviewer.h 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
SSSSSSSan 提交于 2022-02-27 04:26 . logViewer换控件
#ifndef LOGVIEWER_H
#define LOGVIEWER_H
#include <QDialog>
#include <QString>
#include <QStringList>
#include <QtWidgets>
#include <vector>
using namespace std;
struct rectangle
{
int x;
int y=0;
int w;
int h;
};
struct logHTTP
{
int tid;
QStringList log;
};
namespace Ui {
class logViewer;
}
class logViewer : public QDialog
{
Q_OBJECT
public:
explicit logViewer(QWidget *parent = nullptr);
~logViewer();
//vector<QTextEdit*> logTextEdit;
vector<QPlainTextEdit*> logTextEdit;
vector<QJsonArray*> logJson;
vector<logHTTP*> stlogHTTP;
public slots:
void moveLogViewer(QPoint e,QPoint mainPoint);
void log(int module,QString str,int mod);
private slots:
void resizeEvent(QResizeEvent *event);
bool eventFilter(QObject *obj, QEvent *event);
void showEvent(QShowEvent *event);
private:
Ui::logViewer *ui;
void logUpdate(int c);
/*显示控制*/
int editNowChoose=1;
void chooseEdit(int num);
};
#endif // LOGVIEWER_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化