]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/gtk/GView.C
make it compile again
[lyx.git] / src / frontends / gtk / GView.C
index 9eaa217c0972757d40e84516dff391d7447c1520..dae159db6a2f9c853f5bc74e0eb1be3a54e95f16 100644 (file)
  */
 
 #include <config.h>
-#include <gtkmm.h>
+
+// Too hard to make concept checks work with this file
+#ifdef _GLIBCXX_CONCEPT_CHECKS
+#undef _GLIBCXX_CONCEPT_CHECKS
+#endif
+#ifdef _GLIBCPP_CONCEPT_CHECKS
+#undef _GLIBCPP_CONCEPT_CHECKS
+#endif
 
 #include "GView.h"
-#include "MenuBackend.h"
-#include "support/filetools.h"
 #include "GMenubar.h"
 #include "GToolbar.h"
+#include "GMiniBuffer.h"
+
 #include "BufferView.h"
-#include "XWorkArea.h"
 #include "lyx_cb.h"
-#include "GMiniBuffer.h"
+#include "lyxrc.h"
+#include "lyx_main.h"
+#include "session.h"
 #include "lyxfunc.h"
+#include "MenuBackend.h"
+#include "funcrequest.h"
+
+#include "frontends/Toolbars.h"
+#include "frontends/WorkArea.h"
+
+#include "support/filetools.h"
+#include "support/convert.h"
+
 #include <boost/bind.hpp>
 
+#include <vector>
+
 using std::string;
 
+namespace lyx {
+namespace frontend {
 
-BufferView * current_view;
+namespace {
+
+void add_el(Gtk::Box::BoxList & list, Gtk::Box & box, bool shrink)
+{
+       Gtk::PackOptions const packing =
+               shrink ? Gtk::PACK_SHRINK : Gtk::PACK_EXPAND_WIDGET;
+       list.push_back(Gtk::Box_Helpers::Element(box, packing));
+}
 
-GView * GView::view_ = 0;
+} // namespace anon
 
 
-GView::GView()
+GView::GView() : LyXView()
 {
-       view_ = this;
-       vbox_.reset(new Gtk::VBox);
-       add(*vbox_.get());
+       // The physical store for the boxes making up the layout.
+       box_store_.push_back(BoxPtr(new Gtk::VBox));
+       box_store_.push_back(BoxPtr(new Gtk::HBox));
+       box_store_.push_back(BoxPtr(new Gtk::VBox));
+       box_store_.push_back(BoxPtr(new Gtk::HBox));
+       box_store_.push_back(BoxPtr(new Gtk::HBox));
+       box_store_.push_back(BoxPtr(new Gtk::HBox));
+
+       // Lay them out correctly.
+       add(top_box_);
+
+       Gtk::Box::BoxList & layout1 = top_box_.children();
+       add_el(layout1, *box_store_[0], true);
+       add_el(layout1, *box_store_[1], false);
+       add_el(layout1, *box_store_[2], true);
+
+       Gtk::Box::BoxList & layout2 = box_store_[1]->children();
+       add_el(layout2, *box_store_[3], true);
+       add_el(layout2, *box_store_[4], false);
+       add_el(layout2, *box_store_[5], true);
+
+       // Define accessors to the various Boxes.
+       box_map_[Top]    = box_store_[0];
+       box_map_[Bottom] = box_store_[2];
+       box_map_[Left]   = box_store_[3];
+       box_map_[Center] = box_store_[4];
+       box_map_[Right]  = box_store_[5];
+
+       // Make all Boxes visible.
+       top_box_.show_all();
+
+       // Define the components making up the window.
        menubar_.reset(new GMenubar(this, menubackend));
-       toolbar_.reset(new GToolbar(this, 0, 0));
-       toolbar_->init();
-       bufferview_.reset(new BufferView(this, 0, 0, 300, 300));
-       ::current_view = bufferview_.get();
+       getToolbars().init();
        minibuffer_.reset(new GMiniBuffer(this, *controlcommand_));
-       vbox_->show();
+
        focus_command_buffer.connect(
                boost::bind(&GMiniBuffer::editMode, minibuffer_.get()));
-       view_state_changed.connect(boost::bind(&GView::showViewState, this));
-       signal_focus_in_event().connect(SigC::slot(*this, &GView::onFocusIn));
-       set_default_size(500, 550);
+       signal_focus_in_event().connect(sigc::mem_fun(*this, &GView::onFocusIn));
+       //
+       int width = 750;
+       int height = 550;
+       // first try lyxrc
+       if (lyxrc.geometry_width != 0 && lyxrc.geometry_height != 0 ) {
+               width = lyxrc.geometry_width;
+               height = lyxrc.geometry_height;
+       }
+       // if lyxrc returns (0,0), then use session info
+       else {
+               string val = LyX::ref().session().loadSessionInfo("WindowWidth");
+               if (val != "")
+                       width = convert<unsigned int>(val);
+               val = LyX::ref().session().loadSessionInfo("WindowHeight");
+               if (val != "")
+                       height = convert<unsigned int>(val);
+       }
+       set_default_size(width, height);
        // Make sure the buttons are disabled if needed.
-       updateToolbar();
+       //updateToolbars();
        string const iconName =
-               lyx::support::LibFileSearch("images", "lyx", "xpm");
+               support::libFileSearch("images", "lyx", "xpm");
        if (!iconName.empty())
                set_icon_from_file(iconName);
 }
 
 
 GView::~GView()
+{}
+
+
+Gtk::Box & GView::getBox(Position pos)
 {
+       return *box_map_[pos];
 }
 
 
 bool GView::on_delete_event(GdkEventAny * /*event*/)
 {
-       QuitLyX();
+       // save windows size and position
+       Gtk::Requisition req = workArea_->size_request();
+       LyX::ref().session().saveSessionInfo("WindowWidth", convert<string>(req.width));
+       LyX::ref().session().saveSessionInfo("WindowHeight", convert<string>(req.height));
+       // trigger LFUN_LYX_QUIT instead of quit directly
+       // since LFUN_LYX_QUIT may have more cleanup stuff
+       //
+       getLyXFunc().dispatch(FuncRequest(LFUN_LYX_QUIT));
        return true;
 }
 
@@ -78,7 +160,9 @@ bool GView::onFocusIn(GdkEventFocus * /*event*/)
 
 void GView::prohibitInput() const
 {
-       view()->hideCursor();
+       // FIXME: Why is prohibitInput const?
+       // FIXME: hideCursor is protected
+       //const_cast<GView*>(this)->workArea()->hideCursor();
        const_cast<GView*>(this)->set_sensitive(false);
 }
 
@@ -89,28 +173,30 @@ void GView::allowInput() const
 }
 
 
-void GView::message(string const & msg)
+void GView::message(docstring const & msg)
 {
-       minibuffer_->message(msg);
+       minibuffer_->message(lyx::to_utf8(msg));
 }
 
 
-void GView::showViewState()
+void GView::updateStatusBar()
 {
-       message(getLyXFunc().viewStatusMessage());
+       message(lyx::from_utf8(getLyXFunc().viewStatusMessage()));
 }
 
 
-void GView::setWindowTitle(string const & t, string const & /*it*/)
+void GView::setWindowTitle(docstring const & t, docstring const & /*it*/)
 {
-       set_title(Glib::locale_to_utf8(t));
+       set_title(lyx::to_utf8(t));
 }
 
 
 void GView::busy(bool yes) const
 {
-       if (yes ) {
-               view()->hideCursor();
+       // FIXME: Why is busy const?
+       if (yes) {
+               // FIXME: hideCursor is protected
+               //const_cast<GView*>(this)->workArea()->hideCursor();
                Gdk::Cursor cursor(Gdk::WATCH);
                const_cast<GView *>(this)->get_window()->set_cursor(cursor);
                const_cast<GView *>(this)->set_sensitive(false);
@@ -123,5 +209,21 @@ void GView::busy(bool yes) const
 
 void GView::clearMessage()
 {
-       message(getLyXFunc().viewStatusMessage());
+       message(lyx::from_utf8(getLyXFunc().viewStatusMessage()));
 }
+
+
+bool GView::hasFocus() const
+{
+       // No real implementation needed for now
+       return true;
+}
+
+
+Toolbars::ToolbarPtr GView::makeToolbar(ToolbarBackend::Toolbar const & tbb)
+{
+       return make_toolbar(tbb, *this);
+}
+
+} // namespace frontend
+} // namespace lyx