RedPanda-CPP/RedPandaIDE/widgets/codecompletionpopup.h

146 lines
5.0 KiB
C
Raw Normal View History

2021-12-26 23:18:28 +08:00
/*
* Copyright (C) 2020-2022 Roy Qu (royqh1979@gmail.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
* (at your option) 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 <https://www.gnu.org/licenses/>.
*/
2021-08-29 00:48:23 +08:00
#ifndef CODECOMPLETIONPOPUP_H
#define CODECOMPLETIONPOPUP_H
2021-08-23 21:50:53 +08:00
2021-08-24 09:59:44 +08:00
#include <QListView>
2021-08-23 21:50:53 +08:00
#include <QWidget>
2021-08-24 15:05:10 +08:00
#include "parser/cppparser.h"
2021-08-29 00:48:23 +08:00
#include "codecompletionlistview.h"
2021-08-28 09:01:40 +08:00
class ColorSchemeItem;
2021-08-25 08:48:33 +08:00
class CodeCompletionListModel : public QAbstractListModel {
Q_OBJECT
public:
2021-08-29 00:48:23 +08:00
explicit CodeCompletionListModel(const StatementList* statements,QObject *parent = nullptr);
2021-08-25 08:48:33 +08:00
int rowCount(const QModelIndex &parent) const override;
QVariant data(const QModelIndex &index, int role) const override;
void notifyUpdated();
2021-08-28 09:01:40 +08:00
const ColorCallback &colorCallback() const;
void setColorCallback(const ColorCallback &newColorCallback);
2021-08-25 08:48:33 +08:00
private:
const StatementList* mStatements;
2021-08-28 09:01:40 +08:00
ColorCallback mColorCallback;
2021-08-25 08:48:33 +08:00
};
2021-08-29 00:48:23 +08:00
class CodeCompletionPopup : public QWidget
2021-08-23 21:50:53 +08:00
{
Q_OBJECT
public:
2021-08-29 00:48:23 +08:00
explicit CodeCompletionPopup(QWidget *parent = nullptr);
~CodeCompletionPopup();
2021-08-23 21:50:53 +08:00
2021-08-24 09:59:44 +08:00
void setKeypressedCallback(const KeyPressedCallback &newKeypressedCallback);
2021-12-04 10:02:07 +08:00
void prepareSearch(const QString& preWord,
const QStringList & ownerExpression,
const QString& memberOperator,
const QStringList& memberExpression,
const QString& filename,
int line);
2021-12-04 18:38:54 +08:00
bool search(const QString& memberPhrase, bool autoHideOnSingleResult);
2021-08-25 00:20:07 +08:00
2021-08-26 17:48:23 +08:00
PStatement selectedStatement();
2021-08-24 09:59:44 +08:00
2021-08-25 23:53:35 +08:00
const PCppParser &parser() const;
void setParser(const PCppParser &newParser);
int showCount() const;
void setShowCount(int newShowCount);
bool onlyGlobals() const;
void setOnlyGlobals(bool newOnlyGlobals);
bool recordUsage() const;
void setRecordUsage(bool newRecordUsage);
bool showKeywords() const;
void setShowKeywords(bool newShowKeywords);
2021-09-30 21:25:48 +08:00
bool showCodeSnippets() const;
void setShowCodeSnippets(bool newShowCodeIns);
2021-08-25 23:53:35 +08:00
bool ignoreCase() const;
void setIgnoreCase(bool newIgnoreCase);
bool sortByScope() const;
void setSortByScope(bool newSortByScope);
bool useCppKeyword() const;
void setUseCppKeyword(bool newUseCppKeyword);
const PStatement &currentStatement() const;
void setCurrentStatement(const PStatement &newCurrentStatement);
const std::shared_ptr<QHash<StatementKind, std::shared_ptr<ColorSchemeItem> > >& colors() const;
void setColors(const std::shared_ptr<QHash<StatementKind, std::shared_ptr<ColorSchemeItem> > > &newColors);
2021-12-04 10:02:07 +08:00
const QString &memberPhrase() const;
const QList<PCodeSnippet> &codeSnippets() const;
void setCodeSnippets(const QList<PCodeSnippet> &newCodeSnippets);
2021-08-24 15:05:10 +08:00
private:
void addChildren(PStatement scopeStatement, const QString& fileName,
int line);
void addStatement(PStatement statement, const QString& fileName, int line);
void filterList(const QString& member);
2021-12-04 10:02:07 +08:00
void getCompletionFor(
const QStringList& ownerExpression,
const QString& memberOperator,
const QStringList& memberExpression,
const QString& fileName,
int line);
2021-12-04 18:38:54 +08:00
void getCompletionListForPreWord(const QString& preWord);
void addKeyword(const QString& keyword);
2021-08-24 15:05:10 +08:00
bool isIncluded(const QString& fileName);
2021-08-23 21:50:53 +08:00
private:
2021-08-24 09:59:44 +08:00
CodeCompletionListView * mListView;
2021-08-25 08:48:33 +08:00
CodeCompletionListModel* mModel;
2021-09-30 21:25:48 +08:00
QList<PCodeSnippet> mCodeSnippets; //(Code template list)
2021-08-24 15:05:10 +08:00
//QList<PStatement> mCodeInsStatements; //temporary (user code template) statements created when show code suggestion
2021-08-25 08:48:33 +08:00
StatementList mFullCompletionStatementList;
StatementList mCompletionStatementList;
2021-08-24 15:05:10 +08:00
QSet<QString> mIncludedFiles;
QSet<QString> mUsings;
QSet<QString> mAddedStatements;
2021-12-04 10:02:07 +08:00
QString mMemberPhrase;
QString mMemberOperator;
2022-01-04 16:50:54 +08:00
QMutex mMutex;
std::shared_ptr<QHash<StatementKind, std::shared_ptr<ColorSchemeItem> > > mColors;
2021-08-25 23:53:35 +08:00
PCppParser mParser;
PStatement mCurrentStatement;
int mShowCount;
bool mOnlyGlobals;
2021-08-24 15:05:10 +08:00
bool mRecordUsage;
bool mShowKeywords;
2021-09-30 21:25:48 +08:00
bool mShowCodeSnippets;
2021-08-24 15:05:10 +08:00
bool mIgnoreCase;
bool mSortByScope;
bool mUseCppKeyword;
2021-08-25 00:20:07 +08:00
// QWidget interface
protected:
2021-08-26 17:48:23 +08:00
void showEvent(QShowEvent *event) override;
2021-08-25 00:20:07 +08:00
void hideEvent(QHideEvent *event) override;
// QObject interface
public:
bool event(QEvent *event) override;
2021-12-04 10:02:07 +08:00
const QString &memberOperator() const;
2021-08-23 21:50:53 +08:00
};
2021-08-29 00:48:23 +08:00
#endif // CODECOMPLETIONPOPUP_H