]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Application.h
hopefully fix tex2lyx linking.
[lyx.git] / src / frontends / Application.h
index 622d7dc33a0f4c481b05b3d6066685bc0486ee1b..7fcfa03e6bbcefba7bf05f4ee5b2a7e451996878 100644 (file)
 #ifndef LYX_APPLICATION_H
 #define LYX_APPLICATION_H
 
-#include "lyxfunc.h"
-#include "lyxserver.h"
-#include "lyxsocket.h"
-
-#include <boost/scoped_ptr.hpp>
+#include <boost/function.hpp>
 
 #include <string>
 
+namespace lyx {
+
 class BufferView;
 class LyXView;
+class LColor_color;
+struct RGBColor;
 
-namespace lyx {
 namespace frontend {
 
 class Clipboard;
+class FontLoader;
 class Gui;
 class Selection;
 
-
 /// The main application class
 /**
 There should be only one instance of this class. No Qt object
 initialisation should be done before the instanciation of this class.
 
 \todo The work areas handling could be moved to a base virtual class
-comon to all frontends.
+common to all frontends.
 */
 class Application
 {
@@ -46,53 +45,98 @@ public:
        ///
        virtual ~Application() {}
 
+       /// Start the main event loop, after executing the given batch
+       /// commands.
        int start(std::string const & batch);
        ///
        virtual Gui & gui() = 0;
        ///
        virtual int const exec() = 0;
-       ///
+
+       /// Quit running LyX.
+       /**
+       * This may either quit directly or record the exit status
+       * and only stop the event loop.
+       */
        virtual void exit(int status) = 0;
 
+       /**
+       * Synchronise all pending events.
+       */
+       virtual void syncEvents() = 0;
        ///
        virtual Clipboard & clipboard() = 0;
        ///
        virtual Selection & selection() = 0;
-
-       ///
-       LyXFunc & lyxFunc();
-       LyXFunc const & lyxFunc() const;
-       ///
-       LyXServer & server();
-       LyXServer const & server() const;
        ///
-       LyXServerSocket & socket();
-       LyXServerSocket const & socket() const;
-       ///
-       void setBufferView(BufferView * buffer_view);
+       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.
+       * It returns false on failure and sets r, g, b to 0.
+       */
+       virtual bool getRgbColor(LColor_color col, RGBColor & rgbcol) = 0;
+
+       /** Eg, passing LColor::black returns "000000",
+       *      passing LColor::white returns "ffffff".
+       */
+       virtual std::string const hexName(LColor_color col) = 0;
+
+       /**
+       * update an altered GUI color
+       */
+       virtual void updateColor(LColor_color col) = 0;
+
+       /**
+       * add a callback for socket read notification
+       * @param fd socket descriptor (file/socket/etc)
+       */
+       virtual void registerSocketCallback(
+               int fd, boost::function<void()> func) = 0;
+
+       /**
+       * remove a I/O read callback
+       * @param fd socket descriptor (file/socket/etc)
+       */
+       virtual void unregisterSocketCallback(int fd) = 0;
+
+       /// Create the main window with given geometry settings.
+       LyXView & createView(unsigned int width, unsigned int height,
+               int posx, int posy, bool maximize);
+       
+       /// 
+       LyXView const & currentView() const;
+
+       /// 
+       LyXView & currentView();
 
-protected:
        ///
-       BufferView * buffer_view_;
-
-       // FIXME: lyxfunc_ should be private. But the actual construction is done in
-       // GuiApplication for now.
-
-       /// our function handler
-       boost::scoped_ptr<LyXFunc> lyxfunc_;
+       void setCurrentView(LyXView & current_view);
 
 private:
-       ///
-       boost::scoped_ptr<LyXServer> lyx_server_;
-       ///
-       boost::scoped_ptr<LyXServerSocket> lyx_socket_;
+       /// This LyXView is the one receiving Clipboard and Selection
+       /// Events
+       LyXView * current_view_;
 
 }; // Application
 
 } // namespace frontend
-} // namespace lyx
 
-extern lyx::frontend::Application * theApp;
+extern frontend::Application * theApp;
+frontend::Application * createApplication(int & argc, char * argv[]);
+
+
+} // namespace lyx
 
 
 #endif // LYX_APPLICATION_H