aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/texteditor/generichighlighter/highlightersettingspage.h
diff options
context:
space:
mode:
authorLeandro Melo <leandro.melo@nokia.com>2010-06-11 12:13:52 +0200
committerLeandro Melo <leandro.melo@nokia.com>2010-06-11 13:02:53 +0200
commitce80ee4f5e14eae425fd99c570885ac3e39814c6 (patch)
tree2a24fdf6ce09d3597a9fb08f84f66c09b32b7b91 /src/plugins/texteditor/generichighlighter/highlightersettingspage.h
parent90cb7df5be0fe0105a70273b84c2fa400294c9ad (diff)
Generic highlighter: Interface for automatic download of available definitions. Refactorings and changes in related parts of the code.
Diffstat (limited to 'src/plugins/texteditor/generichighlighter/highlightersettingspage.h')
-rw-r--r--src/plugins/texteditor/generichighlighter/highlightersettingspage.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/plugins/texteditor/generichighlighter/highlightersettingspage.h b/src/plugins/texteditor/generichighlighter/highlightersettingspage.h
index 0edef5fa07..262f3d78cc 100644
--- a/src/plugins/texteditor/generichighlighter/highlightersettingspage.h
+++ b/src/plugins/texteditor/generichighlighter/highlightersettingspage.h
@@ -32,8 +32,16 @@
#include "texteditoroptionspage.h"
+QT_BEGIN_NAMESPACE
+template <class> class QList;
+QT_END_NAMESPACE
+
namespace TextEditor {
+namespace Internal {
+class HighlightDefinitionMetaData;
+}
+
class HighlighterSettings;
class HighlighterSettingsPage : public TextEditorOptionsPage
@@ -58,6 +66,10 @@ signals:
private slots:
void resetDefinitionsLocation();
+ void requestAvailableDefinitionsMetaData();
+ void manageDefinitions(const QList<Internal::HighlightDefinitionMetaData> &metaData);
+ void showError();
+ void ignoreDownloadReply();
private:
void settingsFromUI();