2006-03-05 17:24:44 +00:00
|
|
|
|
/**
|
2007-04-26 03:53:02 +00:00
|
|
|
|
* \file GuiView.cpp
|
2006-03-05 17:24:44 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
2006-06-20 08:39:16 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
2006-03-05 17:24:44 +00:00
|
|
|
|
* \author John Levon
|
|
|
|
|
* \author Abdelrazak Younes
|
2006-11-27 23:35:43 +00:00
|
|
|
|
* \author Peter K<EFBFBD>mmel
|
2006-03-05 17:24:44 +00:00
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2006-07-13 16:37:55 +00:00
|
|
|
|
#include "GuiView.h"
|
2006-10-26 13:29:10 +00:00
|
|
|
|
|
|
|
|
|
#include "GuiImplementation.h"
|
|
|
|
|
#include "GuiWorkArea.h"
|
2007-08-31 05:53:55 +00:00
|
|
|
|
#include "GuiKeySymbol.h"
|
|
|
|
|
#include "GuiMenubar.h"
|
|
|
|
|
#include "GuiToolbar.h"
|
2007-10-01 20:45:50 +00:00
|
|
|
|
#include "GuiToolbars.h"
|
2007-11-12 23:23:19 +00:00
|
|
|
|
#include "Dialogs.h"
|
|
|
|
|
#include "Gui.h"
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
#include "qt_helpers.h"
|
|
|
|
|
|
2006-10-24 15:01:07 +00:00
|
|
|
|
#include "frontends/Application.h"
|
2007-08-21 07:33:46 +00:00
|
|
|
|
#include "frontends/Dialogs.h"
|
2006-10-24 15:01:07 +00:00
|
|
|
|
#include "frontends/Gui.h"
|
|
|
|
|
|
|
|
|
|
#include "support/filetools.h"
|
|
|
|
|
#include "support/convert.h"
|
|
|
|
|
#include "support/lstrings.h"
|
2007-08-14 13:14:47 +00:00
|
|
|
|
#include "support/os.h"
|
2006-10-24 15:01:07 +00:00
|
|
|
|
|
2007-11-12 23:23:19 +00:00
|
|
|
|
#include "buffer_funcs.h"
|
2007-08-14 13:14:47 +00:00
|
|
|
|
#include "Buffer.h"
|
2007-11-12 23:23:19 +00:00
|
|
|
|
#include "BufferList.h"
|
2007-10-01 20:45:50 +00:00
|
|
|
|
#include "BufferParams.h"
|
2006-10-24 15:01:07 +00:00
|
|
|
|
#include "BufferView.h"
|
2007-10-11 09:59:01 +00:00
|
|
|
|
#include "Cursor.h"
|
2006-10-24 15:01:07 +00:00
|
|
|
|
#include "debug.h"
|
2007-11-12 23:23:19 +00:00
|
|
|
|
#include "ErrorList.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
|
#include "FuncRequest.h"
|
2007-11-12 23:23:19 +00:00
|
|
|
|
#include "gettext.h"
|
|
|
|
|
#include "Intl.h"
|
2007-10-01 20:45:50 +00:00
|
|
|
|
#include "Layout.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
|
#include "LyXFunc.h"
|
2007-11-12 23:23:19 +00:00
|
|
|
|
#include "LyX.h"
|
2007-08-14 13:14:47 +00:00
|
|
|
|
#include "LyXRC.h"
|
2006-10-24 15:01:07 +00:00
|
|
|
|
#include "MenuBackend.h"
|
2007-10-01 20:45:50 +00:00
|
|
|
|
#include "Paragraph.h"
|
2007-11-07 23:25:08 +00:00
|
|
|
|
#include "TextClass.h"
|
2007-11-12 23:23:19 +00:00
|
|
|
|
#include "Text.h"
|
2007-10-15 22:43:55 +00:00
|
|
|
|
#include "ToolbarBackend.h"
|
2007-08-21 07:33:46 +00:00
|
|
|
|
#include "version.h"
|
2006-10-24 15:01:07 +00:00
|
|
|
|
|
2007-11-12 23:23:19 +00:00
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
|
#include "support/filetools.h" // OnlyFilename()
|
|
|
|
|
#include "support/Timeout.h"
|
|
|
|
|
|
2006-10-22 14:37:32 +00:00
|
|
|
|
#include <QAction>
|
2006-03-05 17:24:44 +00:00
|
|
|
|
#include <QApplication>
|
2006-10-22 14:37:32 +00:00
|
|
|
|
#include <QCloseEvent>
|
2007-08-14 13:14:47 +00:00
|
|
|
|
#include <QDesktopWidget>
|
|
|
|
|
#include <QDragEnterEvent>
|
|
|
|
|
#include <QDropEvent>
|
|
|
|
|
#include <QList>
|
2007-09-28 23:26:59 +00:00
|
|
|
|
#include <QMenu>
|
2007-08-21 07:33:46 +00:00
|
|
|
|
#include <QPainter>
|
2006-03-05 17:24:44 +00:00
|
|
|
|
#include <QPixmap>
|
2007-08-14 13:14:47 +00:00
|
|
|
|
#include <QPushButton>
|
2007-11-15 12:58:44 +00:00
|
|
|
|
#include <QSettings>
|
|
|
|
|
#include <QShowEvent>
|
2007-11-11 10:09:48 +00:00
|
|
|
|
#include <QSplitter>
|
2007-08-21 07:33:46 +00:00
|
|
|
|
#include <QStackedWidget>
|
2006-03-05 17:24:44 +00:00
|
|
|
|
#include <QStatusBar>
|
|
|
|
|
#include <QToolBar>
|
2007-08-14 13:14:47 +00:00
|
|
|
|
#include <QUrl>
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2007-11-12 23:23:19 +00:00
|
|
|
|
#include <boost/bind.hpp>
|
2007-10-18 09:24:16 +00:00
|
|
|
|
#include <boost/current_function.hpp>
|
|
|
|
|
|
2007-11-12 23:23:19 +00:00
|
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
|
# include <sys/time.h>
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
|
# include <unistd.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
using std::endl;
|
2006-10-24 15:01:07 +00:00
|
|
|
|
using std::string;
|
|
|
|
|
using std::vector;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2007-10-03 18:56:37 +00:00
|
|
|
|
extern bool quitting;
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
namespace frontend {
|
|
|
|
|
|
2007-11-12 23:23:19 +00:00
|
|
|
|
using support::bformat;
|
|
|
|
|
using support::FileName;
|
|
|
|
|
using support::makeDisplayPath;
|
|
|
|
|
using support::onlyFilename;
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
int const statusbar_timer_value = 3000;
|
|
|
|
|
|
2007-08-31 05:53:55 +00:00
|
|
|
|
class BackgroundWidget : public QWidget
|
2006-10-31 14:12:46 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
2007-08-21 07:33:46 +00:00
|
|
|
|
BackgroundWidget(QString const & file, QString const & text)
|
2007-06-11 14:53:36 +00:00
|
|
|
|
{
|
2007-08-21 07:33:46 +00:00
|
|
|
|
splash_ = new QPixmap(file);
|
|
|
|
|
if (!splash_) {
|
|
|
|
|
lyxerr << "could not load splash screen: '" << fromqstr(file) << "'" << endl;
|
|
|
|
|
return;
|
2007-06-11 14:53:36 +00:00
|
|
|
|
}
|
2007-08-21 07:33:46 +00:00
|
|
|
|
|
|
|
|
|
QPainter pain(splash_);
|
|
|
|
|
pain.setPen(QColor(255, 255, 0));
|
|
|
|
|
QFont font;
|
|
|
|
|
// The font used to display the version info
|
|
|
|
|
font.setStyleHint(QFont::SansSerif);
|
|
|
|
|
font.setWeight(QFont::Bold);
|
2007-10-28 18:51:54 +00:00
|
|
|
|
font.setPointSize(convert<int>(lyxrc.font_sizes[FONT_SIZE_LARGE]));
|
2007-08-21 07:33:46 +00:00
|
|
|
|
pain.setFont(font);
|
|
|
|
|
pain.drawText(260, 270, text);
|
2007-06-11 14:53:36 +00:00
|
|
|
|
}
|
2007-02-01 18:48:58 +00:00
|
|
|
|
|
2007-08-31 05:53:55 +00:00
|
|
|
|
void paintEvent(QPaintEvent *)
|
2006-10-31 14:12:46 +00:00
|
|
|
|
{
|
2007-08-21 07:33:46 +00:00
|
|
|
|
if (!splash_)
|
|
|
|
|
return;
|
2007-06-11 14:53:36 +00:00
|
|
|
|
|
2007-08-21 07:33:46 +00:00
|
|
|
|
int x = (width() - splash_->width()) / 2;
|
|
|
|
|
int y = (height() - splash_->height()) / 2;
|
|
|
|
|
QPainter pain(this);
|
|
|
|
|
pain.drawPixmap(x, y, *splash_);
|
2007-02-01 18:48:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-08-21 07:33:46 +00:00
|
|
|
|
private:
|
|
|
|
|
QPixmap * splash_;
|
2006-10-31 14:12:46 +00:00
|
|
|
|
};
|
|
|
|
|
|
2007-11-12 22:15:51 +00:00
|
|
|
|
} // namespace anon
|
2007-08-23 08:56:13 +00:00
|
|
|
|
|
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
struct GuiView::GuiViewPrivate
|
2006-10-31 14:12:46 +00:00
|
|
|
|
{
|
2007-11-11 10:09:48 +00:00
|
|
|
|
GuiViewPrivate()
|
|
|
|
|
: current_work_area_(0), posx_offset(0), posy_offset(0)
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
~GuiViewPrivate()
|
|
|
|
|
{
|
|
|
|
|
delete splitter_;
|
|
|
|
|
delete bg_widget_;
|
|
|
|
|
delete stack_widget_;
|
|
|
|
|
delete menubar_;
|
|
|
|
|
delete toolbars_;
|
|
|
|
|
}
|
2006-11-27 23:35:43 +00:00
|
|
|
|
|
2006-11-29 10:04:35 +00:00
|
|
|
|
unsigned int smallIconSize;
|
|
|
|
|
unsigned int normalIconSize;
|
|
|
|
|
unsigned int bigIconSize;
|
|
|
|
|
// static needed by "New Window"
|
|
|
|
|
static unsigned int lastIconSize;
|
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
QMenu * toolBarPopup(GuiView * parent)
|
2006-11-29 10:04:35 +00:00
|
|
|
|
{
|
2007-05-28 22:27:45 +00:00
|
|
|
|
// FIXME: translation
|
2007-08-31 05:53:55 +00:00
|
|
|
|
QMenu * menu = new QMenu(parent);
|
|
|
|
|
QActionGroup * iconSizeGroup = new QActionGroup(parent);
|
2006-11-29 10:04:35 +00:00
|
|
|
|
|
2007-08-31 05:53:55 +00:00
|
|
|
|
QAction * smallIcons = new QAction(iconSizeGroup);
|
2007-01-27 14:42:45 +00:00
|
|
|
|
smallIcons->setText(qt_("Small-sized icons"));
|
2006-11-29 10:04:35 +00:00
|
|
|
|
smallIcons->setCheckable(true);
|
2007-11-12 23:23:19 +00:00
|
|
|
|
QObject::connect(smallIcons, SIGNAL(triggered()),
|
|
|
|
|
parent, SLOT(smallSizedIcons()));
|
2006-11-29 10:04:35 +00:00
|
|
|
|
menu->addAction(smallIcons);
|
|
|
|
|
|
2007-08-31 05:53:55 +00:00
|
|
|
|
QAction * normalIcons = new QAction(iconSizeGroup);
|
2007-01-27 14:42:45 +00:00
|
|
|
|
normalIcons->setText(qt_("Normal-sized icons"));
|
2006-11-29 10:04:35 +00:00
|
|
|
|
normalIcons->setCheckable(true);
|
2007-11-12 23:23:19 +00:00
|
|
|
|
QObject::connect(normalIcons, SIGNAL(triggered()),
|
|
|
|
|
parent, SLOT(normalSizedIcons()));
|
2006-11-29 10:04:35 +00:00
|
|
|
|
menu->addAction(normalIcons);
|
|
|
|
|
|
2007-08-31 05:53:55 +00:00
|
|
|
|
QAction * bigIcons = new QAction(iconSizeGroup);
|
2007-01-27 14:42:45 +00:00
|
|
|
|
bigIcons->setText(qt_("Big-sized icons"));
|
2006-11-29 10:04:35 +00:00
|
|
|
|
bigIcons->setCheckable(true);
|
2007-11-12 23:23:19 +00:00
|
|
|
|
QObject::connect(bigIcons, SIGNAL(triggered()),
|
|
|
|
|
parent, SLOT(bigSizedIcons()));
|
2006-11-29 10:04:35 +00:00
|
|
|
|
menu->addAction(bigIcons);
|
|
|
|
|
|
2006-11-29 21:52:56 +00:00
|
|
|
|
unsigned int cur = parent->iconSize().width();
|
2006-11-29 10:04:35 +00:00
|
|
|
|
if ( cur == parent->d.smallIconSize)
|
|
|
|
|
smallIcons->setChecked(true);
|
|
|
|
|
else if (cur == parent->d.normalIconSize)
|
|
|
|
|
normalIcons->setChecked(true);
|
|
|
|
|
else if (cur == parent->d.bigIconSize)
|
|
|
|
|
bigIcons->setChecked(true);
|
|
|
|
|
|
|
|
|
|
return menu;
|
|
|
|
|
}
|
2007-08-21 07:33:46 +00:00
|
|
|
|
|
|
|
|
|
void initBackground()
|
|
|
|
|
{
|
|
|
|
|
LYXERR(Debug::GUI) << "show banner: " << lyxrc.show_banner << endl;
|
|
|
|
|
/// The text to be written on top of the pixmap
|
|
|
|
|
QString const text = lyx_version ? QString(lyx_version) : qt_("unknown version");
|
2007-10-17 18:28:45 +00:00
|
|
|
|
bg_widget_ = new BackgroundWidget(":/images/banner.png", text);
|
2007-08-21 07:33:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void setBackground()
|
|
|
|
|
{
|
|
|
|
|
stack_widget_->setCurrentWidget(bg_widget_);
|
|
|
|
|
bg_widget_->setUpdatesEnabled(true);
|
|
|
|
|
}
|
2007-11-11 10:09:48 +00:00
|
|
|
|
|
|
|
|
|
TabWorkArea * tabWorkArea(int i)
|
|
|
|
|
{
|
|
|
|
|
return dynamic_cast<TabWorkArea *>(splitter_->widget(i));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TabWorkArea * currentTabWorkArea()
|
|
|
|
|
{
|
|
|
|
|
if (splitter_->count() == 1)
|
|
|
|
|
// The first TabWorkArea is always the first one, if any.
|
|
|
|
|
return tabWorkArea(0);
|
|
|
|
|
|
|
|
|
|
TabWorkArea * tab_widget = 0;
|
|
|
|
|
for (int i = 0; i != splitter_->count(); ++i) {
|
|
|
|
|
QWidget * w = splitter_->widget(i);
|
|
|
|
|
if (!w->hasFocus())
|
|
|
|
|
continue;
|
|
|
|
|
tab_widget = dynamic_cast<TabWorkArea *>(w);
|
|
|
|
|
if (tab_widget)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return tab_widget;
|
|
|
|
|
}
|
2007-11-12 23:23:19 +00:00
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
///
|
|
|
|
|
string cur_title;
|
|
|
|
|
|
|
|
|
|
GuiWorkArea * current_work_area_;
|
|
|
|
|
int posx_offset;
|
|
|
|
|
int posy_offset;
|
|
|
|
|
|
|
|
|
|
QSplitter * splitter_;
|
|
|
|
|
QStackedWidget * stack_widget_;
|
|
|
|
|
BackgroundWidget * bg_widget_;
|
|
|
|
|
/// view's menubar
|
|
|
|
|
GuiMenubar * menubar_;
|
|
|
|
|
/// view's toolbars
|
|
|
|
|
GuiToolbars * toolbars_;
|
|
|
|
|
///
|
|
|
|
|
docstring current_layout;
|
2006-10-31 14:12:46 +00:00
|
|
|
|
};
|
|
|
|
|
|
2006-12-03 13:17:35 +00:00
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
unsigned int GuiView::GuiViewPrivate::lastIconSize = 0;
|
2006-11-27 23:35:43 +00:00
|
|
|
|
|
2006-12-03 13:17:35 +00:00
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
GuiView::GuiView(int id)
|
2007-11-12 23:23:19 +00:00
|
|
|
|
: QMainWindow(), LyXView(id),
|
|
|
|
|
d(*new GuiViewPrivate),
|
|
|
|
|
quitting_by_menu_(false),
|
|
|
|
|
autosave_timeout_(new Timeout(5000)),
|
|
|
|
|
dialogs_(new Dialogs(*this))
|
2006-03-05 17:24:44 +00:00
|
|
|
|
{
|
2007-11-12 23:23:19 +00:00
|
|
|
|
// Start autosave timer
|
|
|
|
|
if (lyxrc.autosave) {
|
|
|
|
|
autosave_timeout_->timeout.connect(boost::bind(&GuiView::autoSave, this));
|
|
|
|
|
autosave_timeout_->setTimeout(lyxrc.autosave * 1000);
|
|
|
|
|
autosave_timeout_->start();
|
|
|
|
|
}
|
|
|
|
|
|
2006-12-02 17:39:31 +00:00
|
|
|
|
// Qt bug? signal lastWindowClosed does not work
|
|
|
|
|
setAttribute(Qt::WA_QuitOnClose, false);
|
2006-12-03 13:09:57 +00:00
|
|
|
|
setAttribute(Qt::WA_DeleteOnClose, true);
|
2006-12-02 17:39:31 +00:00
|
|
|
|
|
2006-11-29 10:04:35 +00:00
|
|
|
|
// hardcode here the platform specific icon size
|
|
|
|
|
d.smallIconSize = 14; // scaling problems
|
|
|
|
|
d.normalIconSize = 20; // ok, default
|
|
|
|
|
d.bigIconSize = 26; // better for some math icons
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
|
|
#ifndef Q_WS_MACX
|
2007-08-30 20:09:12 +00:00
|
|
|
|
// assign an icon to main form. We do not do it under Qt/Mac,
|
|
|
|
|
// since the icon is provided in the application bundle.
|
2007-10-17 18:28:45 +00:00
|
|
|
|
setWindowIcon(QPixmap(":/images/lyx.png"));
|
2006-03-05 17:24:44 +00:00
|
|
|
|
#endif
|
2007-08-14 13:14:47 +00:00
|
|
|
|
|
2007-11-11 10:09:48 +00:00
|
|
|
|
|
|
|
|
|
d.splitter_ = new QSplitter;
|
2007-08-21 07:33:46 +00:00
|
|
|
|
|
|
|
|
|
d.initBackground();
|
2007-11-11 10:09:48 +00:00
|
|
|
|
LYXERR(Debug::GUI) << "stack widget!" << endl;
|
|
|
|
|
d.stack_widget_ = new QStackedWidget;
|
|
|
|
|
d.stack_widget_->addWidget(d.bg_widget_);
|
|
|
|
|
d.stack_widget_->addWidget(d.splitter_);
|
|
|
|
|
setCentralWidget(d.stack_widget_);
|
2007-08-21 07:33:46 +00:00
|
|
|
|
|
2007-08-14 13:14:47 +00:00
|
|
|
|
// For Drag&Drop.
|
|
|
|
|
setAcceptDrops(true);
|
2006-03-05 17:24:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
GuiView::~GuiView()
|
2006-03-05 17:24:44 +00:00
|
|
|
|
{
|
2007-11-12 23:23:19 +00:00
|
|
|
|
delete dialogs_;
|
|
|
|
|
delete autosave_timeout_;
|
2006-10-31 14:12:46 +00:00
|
|
|
|
delete &d;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2006-06-26 16:55:35 +00:00
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
void GuiView::close()
|
2006-10-23 16:29:24 +00:00
|
|
|
|
{
|
2006-12-12 01:39:50 +00:00
|
|
|
|
quitting_by_menu_ = true;
|
2007-11-11 10:09:48 +00:00
|
|
|
|
d.current_work_area_ = 0;
|
|
|
|
|
for (int i = 0; i != d.splitter_->count(); ++i) {
|
|
|
|
|
TabWorkArea * twa = d.tabWorkArea(i);
|
|
|
|
|
if (twa)
|
|
|
|
|
twa->closeAll();
|
|
|
|
|
}
|
2006-10-23 16:29:24 +00:00
|
|
|
|
QMainWindow::close();
|
2006-12-12 01:39:50 +00:00
|
|
|
|
quitting_by_menu_ = false;
|
2006-10-23 16:29:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2006-12-03 13:17:35 +00:00
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
void GuiView::setFocus()
|
2006-12-23 17:09:50 +00:00
|
|
|
|
{
|
2007-11-11 10:09:48 +00:00
|
|
|
|
if (d.current_work_area_)
|
|
|
|
|
d.current_work_area_->setFocus();
|
|
|
|
|
else
|
|
|
|
|
QWidget::setFocus();
|
2006-12-23 17:09:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
QMenu* GuiView::createPopupMenu()
|
2006-11-08 23:10:46 +00:00
|
|
|
|
{
|
2006-11-29 10:04:35 +00:00
|
|
|
|
return d.toolBarPopup(this);
|
2006-11-08 23:10:46 +00:00
|
|
|
|
}
|
2006-10-23 16:29:24 +00:00
|
|
|
|
|
2006-12-03 13:17:35 +00:00
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
void GuiView::init()
|
2006-06-26 16:55:35 +00:00
|
|
|
|
{
|
2007-10-01 20:45:50 +00:00
|
|
|
|
// GuiToolbars *must* be initialised before GuiMenubar.
|
|
|
|
|
d.toolbars_ = new GuiToolbars(*this);
|
|
|
|
|
// FIXME: GuiToolbars::init() cannot be integrated in the ctor
|
|
|
|
|
// because LyXFunc::getStatus() needs a properly initialized
|
|
|
|
|
// GuiToolbars object (for LFUN_TOOLBAR_TOGGLE).
|
|
|
|
|
d.toolbars_->init();
|
2007-08-31 05:53:55 +00:00
|
|
|
|
d.menubar_ = new GuiMenubar(this, menubackend);
|
2006-06-26 16:55:35 +00:00
|
|
|
|
|
2007-02-12 19:34:14 +00:00
|
|
|
|
statusBar()->setSizeGripEnabled(true);
|
2006-06-26 16:55:35 +00:00
|
|
|
|
|
2006-12-30 10:30:02 +00:00
|
|
|
|
QObject::connect(&statusbar_timer_, SIGNAL(timeout()),
|
2007-11-13 13:23:44 +00:00
|
|
|
|
this, SLOT(clearMessage()));
|
2006-06-26 16:55:35 +00:00
|
|
|
|
|
2007-11-11 10:09:48 +00:00
|
|
|
|
d.setBackground();
|
2006-09-29 23:10:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2006-12-03 10:05:41 +00:00
|
|
|
|
|
2007-11-15 12:58:44 +00:00
|
|
|
|
void GuiView::showEvent(QShowEvent * e)
|
|
|
|
|
{
|
|
|
|
|
if (lyxrc.allow_geometry_session) {
|
|
|
|
|
QSettings settings;
|
|
|
|
|
QString const key = "view-" + QString::number(id());
|
|
|
|
|
if (!restoreGeometry(settings.value(key + "/geometry").toByteArray()))
|
|
|
|
|
setGeometry(50, 50, 690, 510);
|
|
|
|
|
setIconSize(settings.value(key + "/icon_size").toSize());
|
|
|
|
|
} else
|
|
|
|
|
setGeometry(50, 50, 690, 510);
|
|
|
|
|
|
|
|
|
|
if (d.splitter_->count() == 0)
|
|
|
|
|
// No work area, switch to the background widget.
|
|
|
|
|
d.setBackground();
|
|
|
|
|
|
|
|
|
|
QMainWindow::showEvent(e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
void GuiView::closeEvent(QCloseEvent * close_event)
|
2006-12-02 17:39:31 +00:00
|
|
|
|
{
|
2006-12-12 01:39:50 +00:00
|
|
|
|
// we may have been called through the close window button
|
|
|
|
|
// which bypasses the LFUN machinery.
|
2007-02-14 13:39:11 +00:00
|
|
|
|
if (!quitting_by_menu_ && theApp()->gui().viewIds().size() == 1) {
|
2006-12-12 01:39:50 +00:00
|
|
|
|
if (!theBufferList().quitWriteAll()) {
|
|
|
|
|
close_event->ignore();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2007-02-14 13:39:11 +00:00
|
|
|
|
|
2007-07-17 09:21:52 +00:00
|
|
|
|
// Make sure that no LFUN use this close to be closed View.
|
|
|
|
|
theLyXFunc().setLyXView(0);
|
|
|
|
|
// Make sure the timer time out will not trigger a statusbar update.
|
|
|
|
|
statusbar_timer_.stop();
|
|
|
|
|
|
2007-11-15 12:58:44 +00:00
|
|
|
|
if (lyxrc.allow_geometry_session) {
|
|
|
|
|
QSettings settings;
|
|
|
|
|
QString const key = "view-" + QString::number(id());
|
|
|
|
|
settings.setValue(key + "/geometry", saveGeometry());
|
|
|
|
|
settings.setValue(key + "/icon_size", iconSize());
|
|
|
|
|
d.toolbars_->saveToolbarInfo();
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-14 13:39:11 +00:00
|
|
|
|
theApp()->gui().unregisterView(id());
|
|
|
|
|
if (!theApp()->gui().viewIds().empty()) {
|
|
|
|
|
// Just close the window and do nothing else if this is not the
|
|
|
|
|
// last window.
|
|
|
|
|
close_event->accept();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2007-08-19 10:48:16 +00:00
|
|
|
|
quitting = true;
|
|
|
|
|
|
2007-02-14 13:39:11 +00:00
|
|
|
|
// this is the place where we leave the frontend.
|
|
|
|
|
// it is the only point at which we start quitting.
|
2006-12-02 17:39:31 +00:00
|
|
|
|
close_event->accept();
|
2007-02-14 13:39:11 +00:00
|
|
|
|
// quit the event loop
|
|
|
|
|
qApp->quit();
|
2006-12-02 17:39:31 +00:00
|
|
|
|
}
|
2006-07-06 08:18:51 +00:00
|
|
|
|
|
2006-12-03 13:17:35 +00:00
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
void GuiView::dragEnterEvent(QDragEnterEvent * event)
|
2007-08-14 13:14:47 +00:00
|
|
|
|
{
|
|
|
|
|
if (event->mimeData()->hasUrls())
|
|
|
|
|
event->accept();
|
|
|
|
|
/// \todo Ask lyx-devel is this is enough:
|
|
|
|
|
/// if (event->mimeData()->hasFormat("text/plain"))
|
|
|
|
|
/// event->acceptProposedAction();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
void GuiView::dropEvent(QDropEvent* event)
|
2007-08-14 13:14:47 +00:00
|
|
|
|
{
|
|
|
|
|
QList<QUrl> files = event->mimeData()->urls();
|
|
|
|
|
if (files.isEmpty())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
LYXERR(Debug::GUI) << BOOST_CURRENT_FUNCTION
|
|
|
|
|
<< " got URLs!" << endl;
|
2007-08-31 05:53:55 +00:00
|
|
|
|
for (int i = 0; i != files.size(); ++i) {
|
2007-08-14 13:14:47 +00:00
|
|
|
|
string const file = support::os::internal_path(fromqstr(
|
|
|
|
|
files.at(i).toLocalFile()));
|
|
|
|
|
if (!file.empty())
|
|
|
|
|
dispatch(FuncRequest(LFUN_FILE_OPEN, file));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
void GuiView::message(docstring const & str)
|
2006-03-05 17:24:44 +00:00
|
|
|
|
{
|
2006-06-04 20:49:09 +00:00
|
|
|
|
statusBar()->showMessage(toqstr(str));
|
2006-03-05 17:24:44 +00:00
|
|
|
|
statusbar_timer_.stop();
|
|
|
|
|
statusbar_timer_.start(statusbar_timer_value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
void GuiView::smallSizedIcons()
|
2006-11-29 10:04:35 +00:00
|
|
|
|
{
|
2007-11-15 12:58:44 +00:00
|
|
|
|
setIconSize(QSize(d.smallIconSize, d.smallIconSize));
|
2006-11-29 10:04:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2006-12-03 13:17:35 +00:00
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
void GuiView::normalSizedIcons()
|
2006-11-29 10:04:35 +00:00
|
|
|
|
{
|
2007-11-15 12:58:44 +00:00
|
|
|
|
setIconSize(QSize(d.normalIconSize, d.normalIconSize));
|
2006-11-29 10:04:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2006-12-03 13:17:35 +00:00
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
void GuiView::bigSizedIcons()
|
2006-11-29 10:04:35 +00:00
|
|
|
|
{
|
2007-11-15 12:58:44 +00:00
|
|
|
|
setIconSize(QSize(d.bigIconSize, d.bigIconSize));
|
2006-11-29 10:04:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2007-11-13 13:23:44 +00:00
|
|
|
|
void GuiView::clearMessage()
|
2006-03-05 17:24:44 +00:00
|
|
|
|
{
|
2007-08-19 10:48:16 +00:00
|
|
|
|
if (!hasFocus())
|
|
|
|
|
return;
|
|
|
|
|
theLyXFunc().setLyXView(this);
|
2006-10-11 17:24:46 +00:00
|
|
|
|
statusBar()->showMessage(toqstr(theLyXFunc().viewStatusMessage()));
|
2006-03-05 17:24:44 +00:00
|
|
|
|
statusbar_timer_.stop();
|
|
|
|
|
}
|
|
|
|
|
|
2006-12-03 13:17:35 +00:00
|
|
|
|
|
2007-11-11 22:30:21 +00:00
|
|
|
|
void GuiView::updateWindowTitle(GuiWorkArea * wa)
|
|
|
|
|
{
|
|
|
|
|
if (wa != d.current_work_area_)
|
|
|
|
|
return;
|
|
|
|
|
setWindowTitle(qt_("LyX: ") + wa->windowTitle());
|
|
|
|
|
setWindowIconText(wa->windowIconText());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
void GuiView::on_currentWorkAreaChanged(GuiWorkArea * wa)
|
2006-10-31 14:12:46 +00:00
|
|
|
|
{
|
2007-08-21 07:33:46 +00:00
|
|
|
|
disconnectBuffer();
|
|
|
|
|
disconnectBufferView();
|
2007-10-06 15:48:58 +00:00
|
|
|
|
connectBufferView(wa->bufferView());
|
|
|
|
|
connectBuffer(wa->bufferView().buffer());
|
2007-11-11 22:30:21 +00:00
|
|
|
|
d.current_work_area_ = wa;
|
|
|
|
|
QObject::connect(wa, SIGNAL(titleChanged(GuiWorkArea *)),
|
|
|
|
|
this, SLOT(updateWindowTitle(GuiWorkArea *)));
|
|
|
|
|
updateWindowTitle(wa);
|
2007-08-21 07:33:46 +00:00
|
|
|
|
|
|
|
|
|
updateToc();
|
|
|
|
|
// Buffer-dependent dialogs should be updated or
|
|
|
|
|
// hidden. This should go here because some dialogs (eg ToC)
|
|
|
|
|
// require bv_->text.
|
2007-11-13 10:20:55 +00:00
|
|
|
|
dialogs_->updateBufferDependent(true);
|
2007-08-21 07:33:46 +00:00
|
|
|
|
updateToolbars();
|
2007-11-10 00:21:42 +00:00
|
|
|
|
updateLayoutChoice(false);
|
2007-08-21 07:33:46 +00:00
|
|
|
|
updateStatusBar();
|
2006-10-31 14:12:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
void GuiView::updateStatusBar()
|
2006-03-05 17:24:44 +00:00
|
|
|
|
{
|
|
|
|
|
// let the user see the explicit message
|
|
|
|
|
if (statusbar_timer_.isActive())
|
|
|
|
|
return;
|
|
|
|
|
|
2006-10-11 17:24:46 +00:00
|
|
|
|
statusBar()->showMessage(toqstr(theLyXFunc().viewStatusMessage()));
|
2006-03-05 17:24:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
bool GuiView::hasFocus() const
|
2006-03-05 17:24:44 +00:00
|
|
|
|
{
|
|
|
|
|
return qApp->activeWindow() == this;
|
|
|
|
|
}
|
|
|
|
|
|
2006-06-23 10:19:31 +00:00
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
bool GuiView::event(QEvent * e)
|
2006-12-20 21:28:05 +00:00
|
|
|
|
{
|
|
|
|
|
switch (e->type())
|
|
|
|
|
{
|
2007-08-15 08:29:10 +00:00
|
|
|
|
// Useful debug code:
|
|
|
|
|
//case QEvent::ActivationChange:
|
|
|
|
|
//case QEvent::WindowDeactivate:
|
|
|
|
|
//case QEvent::Paint:
|
|
|
|
|
//case QEvent::Enter:
|
|
|
|
|
//case QEvent::Leave:
|
|
|
|
|
//case QEvent::HoverEnter:
|
|
|
|
|
//case QEvent::HoverLeave:
|
|
|
|
|
//case QEvent::HoverMove:
|
|
|
|
|
//case QEvent::StatusTip:
|
|
|
|
|
//case QEvent::DragEnter:
|
|
|
|
|
//case QEvent::DragLeave:
|
|
|
|
|
//case QEvent::Drop:
|
|
|
|
|
// break;
|
|
|
|
|
|
2007-10-16 06:50:09 +00:00
|
|
|
|
case QEvent::WindowActivate: {
|
2007-10-04 15:46:58 +00:00
|
|
|
|
theApp()->setCurrentView(*this);
|
2007-11-11 10:09:48 +00:00
|
|
|
|
if (d.current_work_area_) {
|
|
|
|
|
BufferView & bv = d.current_work_area_->bufferView();
|
2007-10-03 07:17:58 +00:00
|
|
|
|
connectBufferView(bv);
|
|
|
|
|
connectBuffer(bv.buffer());
|
2007-10-03 08:03:01 +00:00
|
|
|
|
// The document structure, name and dialogs might have
|
|
|
|
|
// changed in another view.
|
2007-11-13 10:20:55 +00:00
|
|
|
|
dialogs_->updateBufferDependent(true);
|
2007-11-11 22:30:21 +00:00
|
|
|
|
} else {
|
|
|
|
|
setWindowTitle(qt_("LyX"));
|
|
|
|
|
setWindowIconText(qt_("LyX"));
|
2007-10-03 07:17:58 +00:00
|
|
|
|
}
|
2007-10-03 07:12:28 +00:00
|
|
|
|
return QMainWindow::event(e);
|
2007-10-16 06:50:09 +00:00
|
|
|
|
}
|
2007-08-15 08:29:10 +00:00
|
|
|
|
case QEvent::ShortcutOverride: {
|
2006-12-20 21:28:05 +00:00
|
|
|
|
QKeyEvent * ke = static_cast<QKeyEvent*>(e);
|
2007-11-11 10:09:48 +00:00
|
|
|
|
if (!d.current_work_area_) {
|
2007-08-21 07:33:46 +00:00
|
|
|
|
theLyXFunc().setLyXView(this);
|
2007-09-17 18:41:03 +00:00
|
|
|
|
KeySymbol sym;
|
|
|
|
|
setKeySymbol(&sym, ke);
|
2007-08-21 07:33:46 +00:00
|
|
|
|
theLyXFunc().processKeySym(sym, q_key_state(ke->modifiers()));
|
|
|
|
|
e->accept();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2006-12-22 16:13:19 +00:00
|
|
|
|
if (ke->key() == Qt::Key_Tab || ke->key() == Qt::Key_Backtab) {
|
2007-09-17 18:41:03 +00:00
|
|
|
|
KeySymbol sym;
|
|
|
|
|
setKeySymbol(&sym, ke);
|
2007-11-11 10:09:48 +00:00
|
|
|
|
d.current_work_area_->processKeySym(sym, NoModifier);
|
2006-12-20 21:28:05 +00:00
|
|
|
|
e->accept();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2007-08-15 08:29:10 +00:00
|
|
|
|
default:
|
|
|
|
|
return QMainWindow::event(e);
|
|
|
|
|
}
|
2006-12-20 21:28:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
bool GuiView::focusNextPrevChild(bool /*next*/)
|
2006-12-22 16:13:19 +00:00
|
|
|
|
{
|
2006-12-23 17:09:50 +00:00
|
|
|
|
setFocus();
|
2006-12-22 16:13:19 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
void GuiView::setBusy(bool yes)
|
2006-03-05 17:24:44 +00:00
|
|
|
|
{
|
2007-11-11 10:09:48 +00:00
|
|
|
|
if (d.current_work_area_) {
|
|
|
|
|
d.current_work_area_->setUpdatesEnabled(!yes);
|
2007-08-21 07:33:46 +00:00
|
|
|
|
if (yes)
|
2007-11-11 10:09:48 +00:00
|
|
|
|
d.current_work_area_->stopBlinkingCursor();
|
2007-08-21 07:33:46 +00:00
|
|
|
|
else
|
2007-11-11 10:09:48 +00:00
|
|
|
|
d.current_work_area_->startBlinkingCursor();
|
2007-08-21 07:33:46 +00:00
|
|
|
|
}
|
2006-10-26 13:29:10 +00:00
|
|
|
|
|
2007-08-21 07:33:46 +00:00
|
|
|
|
if (yes)
|
2006-06-04 20:49:09 +00:00
|
|
|
|
QApplication::setOverrideCursor(Qt::WaitCursor);
|
2007-08-21 07:33:46 +00:00
|
|
|
|
else
|
2006-03-05 17:24:44 +00:00
|
|
|
|
QApplication::restoreOverrideCursor();
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-10 11:03:21 +00:00
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
GuiToolbar * GuiView::makeToolbar(ToolbarInfo const & tbinfo, bool newline)
|
2006-09-10 11:03:21 +00:00
|
|
|
|
{
|
2007-08-31 05:53:55 +00:00
|
|
|
|
GuiToolbar * toolBar = new GuiToolbar(tbinfo, *this);
|
2006-09-10 11:03:21 +00:00
|
|
|
|
|
2007-04-21 17:38:43 +00:00
|
|
|
|
if (tbinfo.flags & ToolbarInfo::TOP) {
|
2007-01-31 02:39:46 +00:00
|
|
|
|
if (newline)
|
|
|
|
|
addToolBarBreak(Qt::TopToolBarArea);
|
2007-08-31 05:53:55 +00:00
|
|
|
|
addToolBar(Qt::TopToolBarArea, toolBar);
|
2006-09-10 11:03:21 +00:00
|
|
|
|
}
|
2007-01-29 14:23:05 +00:00
|
|
|
|
|
2007-04-21 17:38:43 +00:00
|
|
|
|
if (tbinfo.flags & ToolbarInfo::BOTTOM) {
|
2007-01-29 14:23:05 +00:00
|
|
|
|
// Qt < 4.2.2 cannot handle ToolBarBreak on non-TOP dock.
|
|
|
|
|
#if (QT_VERSION >= 0x040202)
|
2007-01-31 02:39:46 +00:00
|
|
|
|
if (newline)
|
|
|
|
|
addToolBarBreak(Qt::BottomToolBarArea);
|
2007-01-29 14:23:05 +00:00
|
|
|
|
#endif
|
2007-08-31 05:53:55 +00:00
|
|
|
|
addToolBar(Qt::BottomToolBarArea, toolBar);
|
2006-09-10 11:03:21 +00:00
|
|
|
|
}
|
2007-01-29 14:23:05 +00:00
|
|
|
|
|
2007-04-21 17:38:43 +00:00
|
|
|
|
if (tbinfo.flags & ToolbarInfo::LEFT) {
|
2007-01-29 14:23:05 +00:00
|
|
|
|
// Qt < 4.2.2 cannot handle ToolBarBreak on non-TOP dock.
|
|
|
|
|
#if (QT_VERSION >= 0x040202)
|
2007-01-31 02:39:46 +00:00
|
|
|
|
if (newline)
|
|
|
|
|
addToolBarBreak(Qt::LeftToolBarArea);
|
2007-01-29 14:23:05 +00:00
|
|
|
|
#endif
|
2007-08-31 05:53:55 +00:00
|
|
|
|
addToolBar(Qt::LeftToolBarArea, toolBar);
|
2006-09-10 11:03:21 +00:00
|
|
|
|
}
|
2007-01-29 14:23:05 +00:00
|
|
|
|
|
2007-04-21 17:38:43 +00:00
|
|
|
|
if (tbinfo.flags & ToolbarInfo::RIGHT) {
|
2007-01-29 14:23:05 +00:00
|
|
|
|
// Qt < 4.2.2 cannot handle ToolBarBreak on non-TOP dock.
|
|
|
|
|
#if (QT_VERSION >= 0x040202)
|
2007-01-31 02:39:46 +00:00
|
|
|
|
if (newline)
|
|
|
|
|
addToolBarBreak(Qt::RightToolBarArea);
|
2007-01-29 14:23:05 +00:00
|
|
|
|
#endif
|
2007-08-31 05:53:55 +00:00
|
|
|
|
addToolBar(Qt::RightToolBarArea, toolBar);
|
2006-09-10 11:03:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-04-21 17:38:43 +00:00
|
|
|
|
// The following does not work so I cannot restore to exact toolbar location
|
2007-01-27 20:54:17 +00:00
|
|
|
|
/*
|
2007-04-21 17:38:43 +00:00
|
|
|
|
ToolbarSection::ToolbarInfo & tbinfo = LyX::ref().session().toolbars().load(tbinfo.name);
|
2007-08-31 05:53:55 +00:00
|
|
|
|
toolBar->move(tbinfo.posx, tbinfo.posy);
|
2007-01-27 20:54:17 +00:00
|
|
|
|
*/
|
2007-01-29 14:23:05 +00:00
|
|
|
|
|
2007-09-19 22:37:22 +00:00
|
|
|
|
return toolBar;
|
2006-09-10 11:03:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-08-21 07:33:46 +00:00
|
|
|
|
|
2007-11-13 09:52:28 +00:00
|
|
|
|
GuiWorkArea * GuiView::workArea(Buffer & buffer)
|
2007-08-21 07:33:46 +00:00
|
|
|
|
{
|
2007-11-11 10:09:48 +00:00
|
|
|
|
for (int i = 0; i != d.splitter_->count(); ++i) {
|
|
|
|
|
GuiWorkArea * wa = d.tabWorkArea(i)->workArea(buffer);
|
|
|
|
|
if (wa)
|
|
|
|
|
return wa;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
2007-08-21 07:33:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-13 09:52:28 +00:00
|
|
|
|
GuiWorkArea * GuiView::addWorkArea(Buffer & buffer)
|
2007-08-21 07:33:46 +00:00
|
|
|
|
{
|
|
|
|
|
GuiWorkArea * wa = new GuiWorkArea(buffer, *this);
|
2007-08-24 22:15:20 +00:00
|
|
|
|
wa->setUpdatesEnabled(false);
|
2007-11-11 10:09:48 +00:00
|
|
|
|
|
|
|
|
|
// Automatically create a TabWorkArea if there are none yet.
|
|
|
|
|
if (!d.splitter_->count())
|
|
|
|
|
addTabWorkArea();
|
|
|
|
|
|
|
|
|
|
TabWorkArea * tab_widget = d.currentTabWorkArea();
|
2007-11-11 22:30:21 +00:00
|
|
|
|
tab_widget->addTab(wa, wa->windowTitle());
|
|
|
|
|
QObject::connect(wa, SIGNAL(titleChanged(GuiWorkArea *)),
|
|
|
|
|
tab_widget, SLOT(updateTabText(GuiWorkArea *)));
|
|
|
|
|
|
2007-11-06 08:32:25 +00:00
|
|
|
|
wa->bufferView().updateMetrics();
|
2007-11-11 10:09:48 +00:00
|
|
|
|
|
2007-08-23 08:56:13 +00:00
|
|
|
|
// Hide tabbar if there's only one tab.
|
2007-11-11 10:09:48 +00:00
|
|
|
|
tab_widget->showBar(tab_widget->count() > 1);
|
2007-08-21 07:33:46 +00:00
|
|
|
|
return wa;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-11 10:09:48 +00:00
|
|
|
|
void GuiView::addTabWorkArea()
|
|
|
|
|
{
|
|
|
|
|
TabWorkArea * twa = new TabWorkArea;
|
|
|
|
|
QObject::connect(twa, SIGNAL(currentWorkAreaChanged(GuiWorkArea *)),
|
|
|
|
|
this, SLOT(on_currentWorkAreaChanged(GuiWorkArea *)));
|
|
|
|
|
d.splitter_->addWidget(twa);
|
|
|
|
|
d.stack_widget_->setCurrentWidget(d.splitter_);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-13 09:52:28 +00:00
|
|
|
|
GuiWorkArea const * GuiView::currentWorkArea() const
|
2007-08-21 07:33:46 +00:00
|
|
|
|
{
|
2007-11-11 10:09:48 +00:00
|
|
|
|
return d.current_work_area_;
|
2007-08-21 07:33:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-13 09:52:28 +00:00
|
|
|
|
void GuiView::setCurrentWorkArea(GuiWorkArea * work_area)
|
2007-08-21 07:33:46 +00:00
|
|
|
|
{
|
|
|
|
|
BOOST_ASSERT(work_area);
|
|
|
|
|
|
|
|
|
|
// Changing work area can result from opening a file so
|
|
|
|
|
// update the toc in any case.
|
|
|
|
|
updateToc();
|
|
|
|
|
|
2007-10-16 06:50:09 +00:00
|
|
|
|
GuiWorkArea * wa = static_cast<GuiWorkArea *>(work_area);
|
2007-11-11 10:09:48 +00:00
|
|
|
|
d.current_work_area_ = wa;
|
|
|
|
|
for (int i = 0; i != d.splitter_->count(); ++i) {
|
|
|
|
|
if (d.tabWorkArea(i)->setCurrentWorkArea(wa))
|
|
|
|
|
return;
|
|
|
|
|
}
|
2007-08-21 07:33:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-13 09:52:28 +00:00
|
|
|
|
void GuiView::removeWorkArea(GuiWorkArea * work_area)
|
2007-08-21 07:33:46 +00:00
|
|
|
|
{
|
|
|
|
|
BOOST_ASSERT(work_area);
|
2007-11-11 10:09:48 +00:00
|
|
|
|
GuiWorkArea * gwa = static_cast<GuiWorkArea *>(work_area);
|
|
|
|
|
if (gwa == d.current_work_area_) {
|
2007-08-21 07:33:46 +00:00
|
|
|
|
disconnectBuffer();
|
|
|
|
|
disconnectBufferView();
|
2007-11-13 10:20:55 +00:00
|
|
|
|
dialogs_->hideBufferDependent();
|
2007-11-11 10:09:48 +00:00
|
|
|
|
d.current_work_area_ = 0;
|
2007-08-21 07:33:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// removing a work area often results from closing a file so
|
|
|
|
|
// update the toc in any case.
|
|
|
|
|
updateToc();
|
|
|
|
|
|
2007-11-11 10:09:48 +00:00
|
|
|
|
for (int i = 0; i != d.splitter_->count(); ++i) {
|
|
|
|
|
TabWorkArea * twa = d.tabWorkArea(i);
|
|
|
|
|
if (!twa->removeWorkArea(gwa))
|
|
|
|
|
// Not found in this tab group.
|
|
|
|
|
continue;
|
|
|
|
|
|
2007-11-13 09:52:28 +00:00
|
|
|
|
// We found and removed the GuiWorkArea.
|
2007-11-13 10:47:40 +00:00
|
|
|
|
if (!twa->count()) {
|
2007-11-11 10:09:48 +00:00
|
|
|
|
// No more WorkAreas in this tab group, so delete it.
|
|
|
|
|
delete twa;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2007-08-21 07:33:46 +00:00
|
|
|
|
|
2007-11-11 10:09:48 +00:00
|
|
|
|
if (d.current_work_area_)
|
2007-11-13 09:52:28 +00:00
|
|
|
|
// This means that we are not closing the current GuiWorkArea;
|
2007-11-11 10:09:48 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2007-11-13 09:52:28 +00:00
|
|
|
|
// Switch to the next GuiWorkArea in the found TabWorkArea.
|
2007-11-11 10:09:48 +00:00
|
|
|
|
d.current_work_area_ = twa->currentWorkArea();
|
|
|
|
|
break;
|
|
|
|
|
}
|
2007-10-07 08:05:02 +00:00
|
|
|
|
|
2007-11-11 10:09:48 +00:00
|
|
|
|
if (d.splitter_->count() == 0)
|
2007-08-21 07:33:46 +00:00
|
|
|
|
// No more work area, switch to the background widget.
|
|
|
|
|
d.setBackground();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-10 00:21:42 +00:00
|
|
|
|
void GuiView::updateLayoutChoice(bool force)
|
2007-10-01 20:45:50 +00:00
|
|
|
|
{
|
|
|
|
|
// Don't show any layouts without a buffer
|
|
|
|
|
if (!buffer()) {
|
|
|
|
|
d.toolbars_->clearLayoutList();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Update the layout display
|
2007-11-10 00:21:42 +00:00
|
|
|
|
if (d.toolbars_->updateLayoutList(buffer()->params().getTextClassPtr(), force)) {
|
2007-10-01 20:45:50 +00:00
|
|
|
|
d.current_layout = buffer()->params().getTextClass().defaultLayoutName();
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-11 10:09:48 +00:00
|
|
|
|
docstring const & layout = d.current_work_area_->bufferView().cursor().
|
2007-10-01 20:45:50 +00:00
|
|
|
|
innerParagraph().layout()->name();
|
|
|
|
|
|
|
|
|
|
if (layout != d.current_layout) {
|
|
|
|
|
d.toolbars_->setLayout(layout);
|
|
|
|
|
d.current_layout = layout;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
bool GuiView::isToolbarVisible(std::string const & id)
|
2007-10-01 20:45:50 +00:00
|
|
|
|
{
|
|
|
|
|
return d.toolbars_->visible(id);
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
void GuiView::updateToolbars()
|
2007-10-01 20:45:50 +00:00
|
|
|
|
{
|
2007-11-11 10:09:48 +00:00
|
|
|
|
if (d.current_work_area_) {
|
2007-10-01 20:45:50 +00:00
|
|
|
|
bool const math =
|
2007-11-11 10:09:48 +00:00
|
|
|
|
d.current_work_area_->bufferView().cursor().inMathed();
|
2007-10-01 20:45:50 +00:00
|
|
|
|
bool const table =
|
|
|
|
|
lyx::getStatus(FuncRequest(LFUN_LAYOUT_TABULAR)).enabled();
|
|
|
|
|
bool const review =
|
|
|
|
|
lyx::getStatus(FuncRequest(LFUN_CHANGES_TRACK)).enabled() &&
|
|
|
|
|
lyx::getStatus(FuncRequest(LFUN_CHANGES_TRACK)).onoff(true);
|
|
|
|
|
|
|
|
|
|
d.toolbars_->update(math, table, review);
|
|
|
|
|
} else
|
|
|
|
|
d.toolbars_->update(false, false, false);
|
|
|
|
|
|
|
|
|
|
// update read-only status of open dialogs.
|
2007-11-13 10:20:55 +00:00
|
|
|
|
dialogs_->checkStatus();
|
2007-10-01 20:45:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-12 23:23:19 +00:00
|
|
|
|
Buffer * GuiView::buffer()
|
|
|
|
|
{
|
2007-11-13 09:52:28 +00:00
|
|
|
|
if (d.current_work_area_)
|
|
|
|
|
return &d.current_work_area_->bufferView().buffer();
|
2007-11-12 23:23:19 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Buffer const * GuiView::buffer() const
|
|
|
|
|
{
|
2007-11-13 09:52:28 +00:00
|
|
|
|
if (d.current_work_area_)
|
|
|
|
|
return &d.current_work_area_->bufferView().buffer();
|
2007-11-12 23:23:19 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiView::setBuffer(Buffer * newBuffer)
|
|
|
|
|
{
|
|
|
|
|
BOOST_ASSERT(newBuffer);
|
|
|
|
|
setBusy(true);
|
|
|
|
|
|
2007-11-13 09:52:28 +00:00
|
|
|
|
GuiWorkArea * wa = workArea(*newBuffer);
|
2007-11-12 23:23:19 +00:00
|
|
|
|
if (wa == 0) {
|
|
|
|
|
updateLabels(*newBuffer->masterBuffer());
|
|
|
|
|
wa = addWorkArea(*newBuffer);
|
|
|
|
|
} else {
|
|
|
|
|
//Disconnect the old buffer...there's no new one.
|
|
|
|
|
disconnectBuffer();
|
|
|
|
|
}
|
|
|
|
|
connectBuffer(*newBuffer);
|
|
|
|
|
connectBufferView(wa->bufferView());
|
|
|
|
|
setCurrentWorkArea(wa);
|
|
|
|
|
|
|
|
|
|
setBusy(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Buffer * GuiView::loadLyXFile(FileName const & filename, bool tolastfiles)
|
|
|
|
|
{
|
|
|
|
|
setBusy(true);
|
|
|
|
|
|
|
|
|
|
Buffer * newBuffer = checkAndLoadLyXFile(filename);
|
|
|
|
|
|
|
|
|
|
if (!newBuffer) {
|
|
|
|
|
message(_("Document not loaded."));
|
|
|
|
|
updateStatusBar();
|
|
|
|
|
setBusy(false);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-13 09:52:28 +00:00
|
|
|
|
GuiWorkArea * wa = workArea(*newBuffer);
|
2007-11-12 23:23:19 +00:00
|
|
|
|
if (wa == 0)
|
|
|
|
|
wa = addWorkArea(*newBuffer);
|
|
|
|
|
|
|
|
|
|
// scroll to the position when the file was last closed
|
|
|
|
|
if (lyxrc.use_lastfilepos) {
|
|
|
|
|
LastFilePosSection::FilePos filepos =
|
|
|
|
|
LyX::ref().session().lastFilePos().load(filename);
|
|
|
|
|
// if successfully move to pit (returned par_id is not zero),
|
|
|
|
|
// update metrics and reset font
|
|
|
|
|
wa->bufferView().moveToPosition(filepos.pit, filepos.pos, 0, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (tolastfiles)
|
|
|
|
|
LyX::ref().session().lastFiles().add(filename);
|
|
|
|
|
|
|
|
|
|
setBusy(false);
|
|
|
|
|
return newBuffer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiView::connectBuffer(Buffer & buf)
|
|
|
|
|
{
|
|
|
|
|
buf.setGuiDelegate(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiView::disconnectBuffer()
|
|
|
|
|
{
|
2007-11-13 09:52:28 +00:00
|
|
|
|
if (d.current_work_area_)
|
|
|
|
|
d.current_work_area_->bufferView().setGuiDelegate(0);
|
2007-11-12 23:23:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiView::connectBufferView(BufferView & bv)
|
|
|
|
|
{
|
|
|
|
|
bv.setGuiDelegate(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiView::disconnectBufferView()
|
|
|
|
|
{
|
2007-11-13 09:52:28 +00:00
|
|
|
|
if (d.current_work_area_)
|
|
|
|
|
d.current_work_area_->bufferView().setGuiDelegate(0);
|
2007-11-12 23:23:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-13 09:52:28 +00:00
|
|
|
|
void GuiView::errors(string const & error_type)
|
2007-11-12 23:23:19 +00:00
|
|
|
|
{
|
|
|
|
|
ErrorList & el = buffer()->errorList(error_type);
|
|
|
|
|
if (!el.empty())
|
2007-11-13 10:20:55 +00:00
|
|
|
|
dialogs_->show("errorlist", error_type);
|
2007-11-12 23:23:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiView::showDialog(string const & name)
|
|
|
|
|
{
|
2007-11-13 10:20:55 +00:00
|
|
|
|
dialogs_->show(name);
|
2007-11-12 23:23:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiView::showDialogWithData(string const & name, string const & data)
|
|
|
|
|
{
|
2007-11-13 10:20:55 +00:00
|
|
|
|
dialogs_->show(name, data);
|
2007-11-12 23:23:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiView::showInsetDialog(string const & name, string const & data,
|
|
|
|
|
Inset * inset)
|
|
|
|
|
{
|
2007-11-13 10:20:55 +00:00
|
|
|
|
dialogs_->show(name, data, inset);
|
2007-11-12 23:23:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiView::updateDialog(string const & name, string const & data)
|
|
|
|
|
{
|
2007-11-13 10:20:55 +00:00
|
|
|
|
if (dialogs_->visible(name))
|
|
|
|
|
dialogs_->update(name, data);
|
2007-11-12 23:23:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BufferView * GuiView::view()
|
|
|
|
|
{
|
2007-11-13 09:52:28 +00:00
|
|
|
|
return d.current_work_area_ ? &d.current_work_area_->bufferView() : 0;
|
2007-11-12 23:23:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiView::updateToc()
|
|
|
|
|
{
|
|
|
|
|
updateDialog("toc", "");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiView::updateEmbeddedFiles()
|
|
|
|
|
{
|
|
|
|
|
updateDialog("embedding", "");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiView::autoSave()
|
|
|
|
|
{
|
|
|
|
|
LYXERR(Debug::INFO) << "Running autoSave()" << endl;
|
|
|
|
|
|
|
|
|
|
if (buffer())
|
|
|
|
|
view()->buffer().autoSave();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-13 09:52:28 +00:00
|
|
|
|
void GuiView::resetAutosaveTimers()
|
2007-11-12 23:23:19 +00:00
|
|
|
|
{
|
|
|
|
|
if (lyxrc.autosave)
|
|
|
|
|
autosave_timeout_->restart();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiView::dispatch(FuncRequest const & cmd)
|
|
|
|
|
{
|
|
|
|
|
switch(cmd.action) {
|
|
|
|
|
case LFUN_BUFFER_SWITCH:
|
|
|
|
|
setBuffer(theBufferList().getBuffer(to_utf8(cmd.argument())));
|
|
|
|
|
break;
|
2007-11-13 14:04:32 +00:00
|
|
|
|
|
2007-11-14 11:14:06 +00:00
|
|
|
|
case LFUN_COMMAND_EXECUTE: {
|
|
|
|
|
bool const show_it = cmd.argument() != "off";
|
|
|
|
|
d.toolbars_->showCommandBuffer(show_it);
|
2007-11-13 14:04:32 +00:00
|
|
|
|
break;
|
2007-11-14 11:14:06 +00:00
|
|
|
|
}
|
2007-11-13 14:49:50 +00:00
|
|
|
|
case LFUN_DROP_LAYOUTS_CHOICE:
|
|
|
|
|
d.toolbars_->openLayoutList();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_MENU_OPEN:
|
|
|
|
|
d.menubar_->openByName(toqstr(cmd.argument()));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_TOOLBAR_TOGGLE: {
|
|
|
|
|
string const name = cmd.getArg(0);
|
|
|
|
|
bool const allowauto = cmd.getArg(1) == "allowauto";
|
|
|
|
|
// it is possible to get current toolbar status like this,...
|
|
|
|
|
// but I decide to obey the order of ToolbarBackend::flags
|
|
|
|
|
// and disregard real toolbar status.
|
|
|
|
|
// toolbars_->saveToolbarInfo();
|
|
|
|
|
//
|
|
|
|
|
// toggle state on/off/auto
|
|
|
|
|
d.toolbars_->toggleToolbarState(name, allowauto);
|
|
|
|
|
// update toolbar
|
|
|
|
|
updateToolbars();
|
|
|
|
|
|
|
|
|
|
ToolbarInfo * tbi = d.toolbars_->getToolbarInfo(name);
|
|
|
|
|
if (!tbi) {
|
|
|
|
|
message(bformat(_("Unknown toolbar \"%1$s\""), from_utf8(name)));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
docstring state;
|
|
|
|
|
if (tbi->flags & ToolbarInfo::ON)
|
|
|
|
|
state = _("on");
|
|
|
|
|
else if (tbi->flags & ToolbarInfo::OFF)
|
|
|
|
|
state = _("off");
|
|
|
|
|
else if (tbi->flags & ToolbarInfo::AUTO)
|
|
|
|
|
state = _("auto");
|
|
|
|
|
|
|
|
|
|
message(bformat(_("Toolbar \"%1$s\" state set to %2$s"),
|
|
|
|
|
_(tbi->gui_name), state));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-12 23:23:19 +00:00
|
|
|
|
default:
|
|
|
|
|
theLyXFunc().setLyXView(this);
|
|
|
|
|
lyx::dispatch(cmd);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Buffer const * GuiView::updateInset(Inset const * inset)
|
|
|
|
|
{
|
2007-11-13 09:52:28 +00:00
|
|
|
|
if (!d.current_work_area_)
|
2007-11-12 23:23:19 +00:00
|
|
|
|
return 0;
|
|
|
|
|
|
2007-11-13 09:52:28 +00:00
|
|
|
|
if (inset)
|
|
|
|
|
d.current_work_area_->scheduleRedraw();
|
|
|
|
|
|
|
|
|
|
return &d.current_work_area_->bufferView().buffer();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiView::restartCursor()
|
|
|
|
|
{
|
|
|
|
|
/* When we move around, or type, it's nice to be able to see
|
|
|
|
|
* the cursor immediately after the keypress.
|
|
|
|
|
*/
|
|
|
|
|
if (d.current_work_area_)
|
|
|
|
|
d.current_work_area_->startBlinkingCursor();
|
2007-11-12 23:23:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
} // namespace frontend
|
|
|
|
|
} // namespace lyx
|
2006-05-18 08:51:12 +00:00
|
|
|
|
|
2006-06-20 09:33:01 +00:00
|
|
|
|
#include "GuiView_moc.cpp"
|