/** * \file GuiView.C * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author Lars Gullik Bjønnes * \author John Levon * \author Abdelrazak Younes * * Full author contact details are available in file CREDITS. */ #undef QT3_SUPPORT #include #include "BufferView.h" #include "lyx_cb.h" #include "lyxrc.h" #include "lyx_main.h" #include "session.h" #include "lyxfunc.h" #include "MenuBackend.h" #include "funcrequest.h" #include "funcrequest.h" #include "debug.h" #include "frontends/Toolbars.h" #include "support/filetools.h" #include "support/convert.h" #include #include "GuiView.h" #include "GuiImplementation.h" #include "QLMenubar.h" #include "FontLoader.h" #include "QCommandBuffer.h" #include "qt_helpers.h" #include #include #include #include #include #include //#include //#include #include "support/lstrings.h" using std::string; using std::endl; namespace lyx { using support::subst; using support::libFileSearch; namespace frontend { namespace { int const statusbar_timer_value = 3000; } // namespace anon GuiView::GuiView(Gui & owner) : QMainWindow(), LyXView(owner), commandbuffer_(0) { mainWidget_ = this; // setToolButtonStyle(Qt::ToolButtonIconOnly); // setIconSize(QSize(12,12)); // bufferview_.reset(new BufferView(this, width, height)); #ifndef Q_WS_MACX // assign an icon to main form. We do not do it under Qt/Mac, // since the icon is provided in the application bundle. string const iconname = libFileSearch("images", "lyx", "xpm"); if (!iconname.empty()) setWindowIcon(QPixmap(toqstr(iconname))); #endif } GuiView::~GuiView() { } void GuiView::init() { menubar_.reset(new QLMenubar(this, menubackend)); QObject::connect(menuBar(), SIGNAL(triggered(QAction *)), this, SLOT(updateMenu(QAction *))); getToolbars().init(); statusBar()->setSizeGripEnabled(false); view_state_changed.connect(boost::bind(&GuiView::update_view_state, this)); QObject::connect(&statusbar_timer_, SIGNAL(timeout()), this, SLOT(update_view_state_qt())); // make sure the buttons are disabled if needed updateToolbars(); LyXView::init(); } void GuiView::updateMenu(QAction * /*action*/) { menubar_->update(); } void GuiView::setWindowTitle(string const & t, string const & it) { QMainWindow::setWindowTitle(toqstr(t)); QMainWindow::setWindowIconText(toqstr(it)); } void GuiView::addCommandBuffer(QToolBar * toolbar) { commandbuffer_ = new QCommandBuffer(this, *controlcommand_); focus_command_buffer.connect(boost::bind(&GuiView::focus_command_widget, this)); toolbar->addWidget(commandbuffer_); } void GuiView::message(string const & str) { statusBar()->showMessage(toqstr(str)); statusbar_timer_.stop(); statusbar_timer_.start(statusbar_timer_value); } void GuiView::clearMessage() { update_view_state_qt(); } void GuiView::focus_command_widget() { if (commandbuffer_) commandbuffer_->focus_command(); } void GuiView::update_view_state_qt() { statusBar()->showMessage(toqstr(getLyXFunc().viewStatusMessage())); statusbar_timer_.stop(); } void GuiView::update_view_state() { // let the user see the explicit message if (statusbar_timer_.isActive()) return; statusBar()->showMessage(toqstr(getLyXFunc().viewStatusMessage())); } void GuiView::activated(FuncRequest const & func) { getLyXFunc().dispatch(func); } bool GuiView::hasFocus() const { return qApp->activeWindow() == this; } void GuiView::updateFloatingGeometry() { if (!isMaximized()) floatingGeometry_ = QRect(x(), y(), width(), height()); } void GuiView::resizeEvent(QResizeEvent *) { updateFloatingGeometry(); } void GuiView::moveEvent(QMoveEvent *) { updateFloatingGeometry(); } void GuiView::closeEvent(QCloseEvent *) { // FIXME: // change the ifdef to 'geometry = normalGeometry();' only // when Trolltech has fixed the broken normalGeometry on X11: // http://www.trolltech.com/developer/task-tracker/index_html?id=119684+&method=entry // Then also the moveEvent, resizeEvent, and the // code for floatingGeometry_ can be removed; // adjust lyx_gui::start #ifdef Q_OS_WIN32 QRect geometry = normalGeometry(); #else updateFloatingGeometry(); QRect geometry = floatingGeometry_; #endif // save windows size and position Session & session = LyX::ref().session(); session.saveSessionInfo("WindowWidth", convert(geometry.width())); session.saveSessionInfo("WindowHeight", convert(geometry.height())); session.saveSessionInfo("WindowIsMaximized", (isMaximized() ? "yes" : "no")); if (lyxrc.geometry_xysaved) { session.saveSessionInfo("WindowPosX", convert(geometry.x())); session.saveSessionInfo("WindowPosY", convert(geometry.y())); } // trigger LFUN_LYX_QUIT instead of quit directly // since LFUN_LYX_QUIT may have more cleanup stuff getLyXFunc().dispatch(FuncRequest(LFUN_LYX_QUIT)); } void GuiView::show() { QMainWindow::setWindowTitle(qt_("LyX")); QMainWindow::show(); updateFloatingGeometry(); } void GuiView::busy(bool yes) const { if (yes) QApplication::setOverrideCursor(Qt::WaitCursor); else QApplication::restoreOverrideCursor(); } QMainWindow* GuiView::mainWidget() { return mainWidget_; } QMainWindow* GuiView::mainWidget_ = 0; } // namespace frontend } // namespace lyx #include "GuiView_moc.cpp"