summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/Controllers/HighlightEditorController.h')
-rw-r--r--Swift/Controllers/HighlightEditorController.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/Swift/Controllers/HighlightEditorController.h b/Swift/Controllers/HighlightEditorController.h
deleted file mode 100644
index a699751..0000000
--- a/Swift/Controllers/HighlightEditorController.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Copyright (c) 2012 Maciej Niedzielski
- * Licensed under the simplified BSD license.
- * See Documentation/Licenses/BSD-simplified.txt for more information.
- */
-
-/*
- * Copyright (c) 2014-2016 Isode Limited.
- * All rights reserved.
- * See the COPYING file for more information.
- */
-
-#pragma once
-
-#include <memory>
-#include <string>
-
-#include <Swift/Controllers/UIEvents/UIEvent.h>
-
-namespace Swift {
-
- class UIEventStream;
-
- class HighlightEditorWindowFactory;
- class HighlightEditorWindow;
-
- class HighlightManager;
- class ContactSuggester;
-
- class HighlightEditorController {
- public:
- HighlightEditorController(UIEventStream* uiEventStream, HighlightEditorWindowFactory* highlightEditorWindowFactory, HighlightManager* highlightManager);
- ~HighlightEditorController();
-
- HighlightManager* getHighlightManager() const { return highlightManager_; }
- void setContactSuggester(ContactSuggester *suggester) { contactSuggester_ = suggester; }
-
- private:
- void handleUIEvent(std::shared_ptr<UIEvent> event);
- void handleContactSuggestionsRequested(const std::string& text);
-
- private:
- HighlightEditorWindowFactory* highlightEditorWindowFactory_;
- HighlightEditorWindow* highlightEditorWindow_;
- HighlightManager* highlightManager_;
- ContactSuggester* contactSuggester_;
- };
-
-}