2021-09-03 16:39:20 +08:00
|
|
|
#ifndef CPPREFACTER_H
|
|
|
|
#define CPPREFACTER_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include "parser/parserutils.h"
|
|
|
|
#include "widgets/searchresultview.h"
|
|
|
|
#include "parser/cppparser.h"
|
|
|
|
|
|
|
|
class Editor;
|
|
|
|
class BufferCoord;
|
2021-11-05 10:44:23 +08:00
|
|
|
class Project;
|
2021-09-03 16:39:20 +08:00
|
|
|
class CppRefacter : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit CppRefacter(QObject *parent = nullptr);
|
|
|
|
|
|
|
|
bool findOccurence(Editor * editor, const BufferCoord& pos);
|
2021-11-05 10:44:23 +08:00
|
|
|
bool findOccurence(const QString& statementFullname, SearchFileScope scope);
|
2021-10-04 11:07:35 +08:00
|
|
|
|
|
|
|
void renameSymbol(Editor* editor, const BufferCoord& pos, const QString& word, const QString& newWord);
|
2021-09-03 16:39:20 +08:00
|
|
|
signals:
|
|
|
|
private:
|
2021-11-05 10:44:23 +08:00
|
|
|
void doFindOccurenceInEditor(PStatement statement, Editor* editor, const PCppParser& parser);
|
|
|
|
void doFindOccurenceInProject(PStatement statement, std::shared_ptr<Project> project, const PCppParser& parser);
|
2021-09-03 16:39:20 +08:00
|
|
|
PSearchResultTreeItem findOccurenceInFile(
|
|
|
|
const QString& filename,
|
|
|
|
const PStatement& statement,
|
|
|
|
const PCppParser& parser);
|
2021-10-04 11:07:35 +08:00
|
|
|
void renameSymbolInFile(
|
|
|
|
const QString& filename,
|
|
|
|
const PStatement& statement,
|
|
|
|
const QString& newWord,
|
|
|
|
const PCppParser& parser);
|
2021-09-03 16:39:20 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CPPREFACTER_H
|