#ifndef CODECOMPLETIONPOPUP_H #define CODECOMPLETIONPOPUP_H #include #include #include "parser/cppparser.h" #include "codecompletionlistview.h" class ColorSchemeItem; class CodeCompletionListModel : public QAbstractListModel { Q_OBJECT public: explicit CodeCompletionListModel(const StatementList* statements,QObject *parent = nullptr); int rowCount(const QModelIndex &parent) const override; QVariant data(const QModelIndex &index, int role) const override; void notifyUpdated(); const ColorCallback &colorCallback() const; void setColorCallback(const ColorCallback &newColorCallback); private: const StatementList* mStatements; ColorCallback mColorCallback; }; class CodeCompletionPopup : public QWidget { Q_OBJECT public: explicit CodeCompletionPopup(QWidget *parent = nullptr); ~CodeCompletionPopup(); void setKeypressedCallback(const KeyPressedCallback &newKeypressedCallback); void prepareSearch(const QString& preWord, const QStringList & ownerExpression, const QString& memberOperator, const QStringList& memberExpression, const QString& filename, int line); bool search(const QString& memberPhrase, bool autoHideOnSingleResult); PStatement selectedStatement(); 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); bool showCodeSnippets() const; void setShowCodeSnippets(bool newShowCodeIns); bool ignoreCase() const; void setIgnoreCase(bool newIgnoreCase); bool sortByScope() const; void setSortByScope(bool newSortByScope); bool useCppKeyword() const; void setUseCppKeyword(bool newUseCppKeyword); const PStatement ¤tStatement() const; void setCurrentStatement(const PStatement &newCurrentStatement); const std::shared_ptr > >& colors() const; void setColors(const std::shared_ptr > > &newColors); const QString &memberPhrase() const; const QList &codeSnippets() const; void setCodeSnippets(const QList &newCodeSnippets); private: void addChildren(PStatement scopeStatement, const QString& fileName, int line); void addStatement(PStatement statement, const QString& fileName, int line); void filterList(const QString& member); void getCompletionFor( const QStringList& ownerExpression, const QString& memberOperator, const QStringList& memberExpression, const QString& fileName, int line); void getCompletionListForPreWord(const QString& preWord); void addKeyword(const QString& keyword); bool isIncluded(const QString& fileName); private: CodeCompletionListView * mListView; CodeCompletionListModel* mModel; QList mCodeSnippets; //(Code template list) //QList mCodeInsStatements; //temporary (user code template) statements created when show code suggestion StatementList mFullCompletionStatementList; StatementList mCompletionStatementList; QSet mIncludedFiles; QSet mUsings; QSet mAddedStatements; QString mMemberPhrase; QString mMemberOperator; QRecursiveMutex mMutex; std::shared_ptr > > mColors; PCppParser mParser; PStatement mCurrentStatement; int mShowCount; bool mOnlyGlobals; bool mRecordUsage; bool mShowKeywords; bool mShowCodeSnippets; bool mIgnoreCase; bool mSortByScope; bool mUseCppKeyword; // QWidget interface protected: void showEvent(QShowEvent *event) override; void hideEvent(QHideEvent *event) override; // QObject interface public: bool event(QEvent *event) override; const QString &memberOperator() const; }; #endif // CODECOMPLETIONPOPUP_H