]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Application.h
Embedding: add embedCB checkboxes to IncludeUi and ExternalUi
[lyx.git] / src / frontends / Application.h
index 858bf3e77d5e1c9a5654ef01df363adc091ca34e..826b9a3e2ae5b43d61b02823c2ef83fd3ca1c09f 100644 (file)
 
 #include <boost/function.hpp>
 
-#include <vector>
-
 
 namespace lyx {
 
 class BufferView;
-struct RGBColor;
 class Buffer;
+class FuncRequest;
+class FuncStatus;
 class Inset;
+class MenuBackend;
+struct RGBColor;
 
 namespace frontend {
 
@@ -149,21 +150,18 @@ class Application
 {
 public:
        ///
-       Application() : current_view_(0) {}
+       Application() {}
        ///
        virtual ~Application() {}
 
        ///
-       virtual int createRegisteredView() = 0;
-       ///
-       virtual bool unregisterView(int id) = 0;
-       ///
-       virtual bool closeAllViews() = 0;
+       virtual FuncStatus getStatus(FuncRequest const & cmd) = 0;
+       /// dispatch command.
+       /// \return true if the \c FuncRequest has been dispatched.
+       virtual bool dispatch(FuncRequest const & cmd) = 0;
 
        ///
-       virtual LyXView & view(int id) const = 0;
-       ///
-       std::vector<int> const & viewIds() { return view_ids_; }
+       virtual void resetGui() = 0;
 
        ///
        virtual void hideDialogs(std::string const & name, Inset * inset) const = 0;
@@ -182,22 +180,6 @@ public:
        */
        virtual void exit(int status) = 0;
 
-       /**
-       * Synchronise all pending events.
-       */
-       virtual void syncEvents() = 0;
-       ///
-       virtual FontLoader & fontLoader() = 0;
-
-       /// return a suitable serif font name.
-       virtual std::string const romanFontName() = 0;
-
-       /// return a suitable sans serif font name.
-       virtual std::string const sansFontName() = 0;
-
-       /// return a suitable monospaced font name.
-       virtual std::string const typewriterFontName() = 0;
-
        /**
        * Given col, fills r, g, b in the range 0-255.
        * The function returns true if successful.
@@ -228,23 +210,9 @@ public:
        */
        virtual void unregisterSocketCallback(int fd) = 0;
 
-       /// Create the main window with given geometry settings.
-       /// \param geometry_arg: only for Windows platform.
-       virtual LyXView & createView(std::string const & geometry_arg) = 0;
-
-       ///
-       LyXView const * currentView() const { return current_view_; }
-       ///
-       LyXView * currentView() { return current_view_; }
-       ///
-       void setCurrentView(LyXView & view) { current_view_ = &view; }
-
-protected:
-       /// This LyXView is the one receiving Clipboard and Selection
-       /// events
-       LyXView * current_view_;
        ///
-       std::vector<int> view_ids_;
+       virtual MenuBackend const & menuBackend() const = 0;
+       virtual MenuBackend & menuBackend() = 0;
 };
 
 } // namespace frontend