1 Star 0 Fork 1

wangliangfmail / ASTAutoAddLog

forked from 水月洞天 / ASTAutoAddLog 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
mainwindow.h 2.03 KB
一键复制 编辑 原始数据 按行查看 历史
水月洞天 提交于 2021-06-15 11:36 . 项目初始化
/*
* Copyright (C) 2019 ~ 2019 Deepin Technology Co., Ltd.
*
* Author: zccrs <zccrs@live.com>
*
* Maintainer: zccrs <zhangjide@deepin.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QtWidgets>
namespace Ui {
class MainWindow;
}
struct FunctionInfo{
QString funcName;
QStringList argNameList;
uint start;
uint end;
};
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
public slots:
void onOpenRootFloder();
void onSourceFileClick(const QModelIndex &index);
void onRun();
void onExit();
private:
void createTreeNode(const QString &root, const QString &dir);
void createFilePathNode(const QString &root, const QString &filepath);
int fileCount(const QString &dir);
QStringList getCheckedFiles(QStandardItem *item);
QList<FunctionInfo> getFuncInfo(const QString &filepath);
void openFloder(const QString &dir);
QByteArray readFile(const QString &filepath);
void insertFile(QByteArray &source, int line, const QByteArray &content);
void insertFile(QByteArray &source, FunctionInfo info);
void writeFile(QByteArray &source, const QString &filepath);
void backupRootDirectory();
void prependDebugLink(const QString &filepath);
private:
Ui::MainWindow *ui;
QStandardItemModel *m_treeModel;
QStandardItemModel *m_FuncModel;
};
#endif // MAINWINDOW_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wangliangfmail/astauto-add-log.git
git@gitee.com:wangliangfmail/astauto-add-log.git
wangliangfmail
astauto-add-log
ASTAutoAddLog
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891