]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/XFormsView.h
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / XFormsView.h
index cd2d8877eaeedd3d72774e381e5ef4120189f07b..d0647277f8e2a39e5bcaa34ae8a4d9104a659e75 100644 (file)
@@ -1,24 +1,24 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- *
- *           LyX, The Document Processor
+/**
+ * \file XFormsView.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
+ * \author unknown
  *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS.
+ */
 
 #ifndef LyXView_H
 #define LyXView_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-#include FORMS_H_LOCATION
+#include "forms_fwd.h"
 
 #include "frontends/LyXView.h"
+#include <X11/Xlib.h> // for Pixmap
+
+class XMiniBuffer;
 
 /**
  * XFormsView - xforms implementation of LyXView
@@ -32,37 +32,57 @@ public:
 
        ~XFormsView();
 
-        /**
-         * show - display the top-level window
-         * @param xpos requested x position (or 0)
-         * @param xpos requested y position (or 0)
-         * @param title window title
-         */
-       void show(int xpos, int ypos, string const & t = string("LyX"));
+       /**
+        * show - display the top-level window
+        * @param xpos requested x position (or 0)
+        * @param xpos requested y position (or 0)
+        * @param title window title
+        */
+       void show(int xpos, int ypos, std::string const & t = std::string("LyX"));
+
        /// get the xforms main form
        FL_FORM * getForm() const;
        /// redraw the main form.
        virtual void redraw();
-       ///
-       virtual void prohibitInput() const;
-       ///
-       virtual void allowInput() const;
+       /// show busy cursor
+       virtual void busy(bool) const;
 
        /// callback for close event from window manager
        static int atCloseMainFormCB(FL_FORM *, void *);
 
+       /// display a status message
+       virtual void message(std::string const & str);
+
+       /// clear back to normal status message
+       virtual void clearMessage();
+
 private:
        /**
         * setWindowTitle - set title of window
         * @param t main window title
         * @param it iconified (short) title
         */
-       virtual void setWindowTitle(string const & t, string const & it); 
+       virtual void setWindowTitle(std::string const & t, std::string const & it);
+
+       /// update the minibuffer state message
+       void show_view_state();
+
        /// makes the main form.
        void create_form_form_main(int width, int height);
+       /// the minibuffer
+       boost::scoped_ptr<XMiniBuffer> minibuffer_;
+       ///
+       boost::signals::connection view_state_con;
+       ///
+       boost::signals::connection focus_con;
+       ///
+       boost::signals::connection redraw_con;
+
        /// the main form.
-       boost::scoped_ptr<FL_FORM> form_;
+       FL_FORM * form_;
+       /// Passed to the window manager to give a pretty little symbol ;-)
+       Pixmap icon_pixmap_;
+       ///
+       Pixmap icon_mask_;
 };
 #endif