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>
|
|
|
|
|
|
2007-11-18 00:01:14 +00:00
|
|
|
|
#include "GuiView.h"
|
|
|
|
|
#include "Dialog.h"
|
|
|
|
|
|
2007-11-17 22:37:33 +00:00
|
|
|
|
#include "GuiApplication.h"
|
2006-10-26 13:29:10 +00:00
|
|
|
|
#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
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
#include "qt_helpers.h"
|
|
|
|
|
|
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-11-19 20:56:05 +00:00
|
|
|
|
#include "Lexer.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"
|
2007-11-19 20:56:05 +00:00
|
|
|
|
#include "LyXVC.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-19 20:56:05 +00:00
|
|
|
|
#include "support/FileName.h"
|
2007-11-12 23:23:19 +00:00
|
|
|
|
#include "support/lstrings.h"
|
2007-11-19 12:03:38 +00:00
|
|
|
|
#include "support/os.h"
|
2007-11-12 23:23:19 +00:00
|
|
|
|
#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-11-22 23:47:13 +00:00
|
|
|
|
#include <QDebug>
|
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-11-16 21:52:04 +00:00
|
|
|
|
#include <QPoint>
|
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>
|
2007-11-18 23:49:52 +00:00
|
|
|
|
#include <QTimer>
|
2006-03-05 17:24:44 +00:00
|
|
|
|
#include <QToolBar>
|
2007-08-14 13:14:47 +00:00
|
|
|
|
#include <QUrl>
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2007-11-22 23:34:57 +00:00
|
|
|
|
#include <boost/assert.hpp>
|
2007-11-12 23:23:19 +00:00
|
|
|
|
#include <boost/bind.hpp>
|
2007-10-18 09:24:16 +00:00
|
|
|
|
|
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;
|
2007-11-19 20:56:05 +00:00
|
|
|
|
using support::FileName;
|
|
|
|
|
using support::trim;
|
2007-11-12 23:23:19 +00:00
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
2007-08-31 05:53:55 +00:00
|
|
|
|
class BackgroundWidget : public QWidget
|
2006-10-31 14:12:46 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
2007-11-22 23:47:13 +00:00
|
|
|
|
BackgroundWidget()
|
2007-06-11 14:53:36 +00:00
|
|
|
|
{
|
2007-11-22 23:47:13 +00:00
|
|
|
|
LYXERR(Debug::GUI, "show banner: " << lyxrc.show_banner);
|
|
|
|
|
/// The text to be written on top of the pixmap
|
|
|
|
|
QString const text = lyx_version ? lyx_version : qt_("unknown version");
|
|
|
|
|
splash_ = QPixmap(":/images/banner.png");
|
|
|
|
|
|
2007-11-22 23:29:53 +00:00
|
|
|
|
QPainter pain(&splash_);
|
2007-08-21 07:33:46 +00:00
|
|
|
|
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-11-22 23:47:13 +00:00
|
|
|
|
font.setPointSize(int(toqstr(lyxrc.font_sizes[FONT_SIZE_LARGE]).toDouble()));
|
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-11-22 23:29:53 +00:00
|
|
|
|
int x = (width() - splash_.width()) / 2;
|
|
|
|
|
int y = (height() - splash_.height()) / 2;
|
2007-08-21 07:33:46 +00:00
|
|
|
|
QPainter pain(this);
|
2007-11-22 23:29:53 +00:00
|
|
|
|
pain.drawPixmap(x, y, splash_);
|
2007-02-01 18:48:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-08-21 07:33:46 +00:00
|
|
|
|
private:
|
2007-11-22 23:29:53 +00:00
|
|
|
|
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-18 00:01:14 +00:00
|
|
|
|
typedef boost::shared_ptr<Dialog> DialogPtr;
|
|
|
|
|
|
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()
|
2007-11-20 22:03:56 +00:00
|
|
|
|
: current_work_area_(0), layout_(0),
|
2007-11-22 23:29:53 +00:00
|
|
|
|
quitting_by_menu_(false), autosave_timeout_(5000), in_show_(false)
|
2007-11-18 23:30:41 +00:00
|
|
|
|
{
|
|
|
|
|
// hardcode here the platform specific icon size
|
|
|
|
|
smallIconSize = 14; // scaling problems
|
|
|
|
|
normalIconSize = 20; // ok, default
|
|
|
|
|
bigIconSize = 26; // better for some math icons
|
|
|
|
|
|
|
|
|
|
splitter_ = new QSplitter;
|
2007-11-22 23:47:13 +00:00
|
|
|
|
bg_widget_ = new BackgroundWidget;
|
2007-11-18 23:30:41 +00:00
|
|
|
|
stack_widget_ = new QStackedWidget;
|
|
|
|
|
stack_widget_->addWidget(bg_widget_);
|
|
|
|
|
stack_widget_->addWidget(splitter_);
|
|
|
|
|
setBackground();
|
|
|
|
|
}
|
2007-11-11 10:09:48 +00:00
|
|
|
|
|
|
|
|
|
~GuiViewPrivate()
|
|
|
|
|
{
|
|
|
|
|
delete splitter_;
|
2007-11-22 23:47:13 +00:00
|
|
|
|
delete bg_widget_;
|
2007-11-23 11:19:42 +00:00
|
|
|
|
delete stack_widget_;
|
2007-11-11 10:09:48 +00:00
|
|
|
|
delete menubar_;
|
|
|
|
|
delete toolbars_;
|
|
|
|
|
}
|
2006-11-27 23:35:43 +00:00
|
|
|
|
|
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 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:
|
|
|
|
|
GuiWorkArea * current_work_area_;
|
|
|
|
|
QSplitter * splitter_;
|
|
|
|
|
QStackedWidget * stack_widget_;
|
|
|
|
|
BackgroundWidget * bg_widget_;
|
|
|
|
|
/// view's menubar
|
|
|
|
|
GuiMenubar * menubar_;
|
|
|
|
|
/// view's toolbars
|
|
|
|
|
GuiToolbars * toolbars_;
|
2007-11-20 22:03:56 +00:00
|
|
|
|
/// The main layout box.
|
|
|
|
|
/**
|
|
|
|
|
* \warning Don't Delete! The layout box is actually owned by
|
|
|
|
|
* whichever toolbar contains it. All the GuiView class needs is a
|
|
|
|
|
* means of accessing it.
|
|
|
|
|
*
|
|
|
|
|
* FIXME: replace that with a proper model so that we are not limited
|
|
|
|
|
* to only one dialog.
|
|
|
|
|
*/
|
|
|
|
|
GuiLayoutBox * layout_;
|
2007-11-18 00:01:14 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
std::map<std::string, Inset *> open_insets_;
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
std::map<std::string, DialogPtr> dialogs_;
|
2007-11-18 23:30:41 +00:00
|
|
|
|
|
|
|
|
|
unsigned int smallIconSize;
|
|
|
|
|
unsigned int normalIconSize;
|
|
|
|
|
unsigned int bigIconSize;
|
|
|
|
|
///
|
|
|
|
|
QTimer statusbar_timer_;
|
|
|
|
|
/// are we quitting by the menu?
|
|
|
|
|
bool quitting_by_menu_;
|
|
|
|
|
/// auto-saving of buffers
|
2007-11-22 23:29:53 +00:00
|
|
|
|
Timeout autosave_timeout_;
|
2007-11-22 23:47:13 +00:00
|
|
|
|
/// flag against a race condition due to multiclicks, see bug #1119
|
2007-11-18 00:01:14 +00:00
|
|
|
|
bool in_show_;
|
2006-10-31 14:12:46 +00:00
|
|
|
|
};
|
|
|
|
|
|
2006-12-03 13:17:35 +00:00
|
|
|
|
|
2007-11-05 13:52:37 +00:00
|
|
|
|
GuiView::GuiView(int id)
|
2007-11-22 23:47:13 +00:00
|
|
|
|
: d(*new GuiViewPrivate), id_(id)
|
2006-03-05 17:24:44 +00:00
|
|
|
|
{
|
2007-11-18 23:30:41 +00:00
|
|
|
|
// GuiToolbars *must* be initialised before GuiMenubar.
|
|
|
|
|
d.toolbars_ = new GuiToolbars(*this);
|
|
|
|
|
d.menubar_ = new GuiMenubar(this, menubackend);
|
|
|
|
|
|
|
|
|
|
setCentralWidget(d.stack_widget_);
|
|
|
|
|
|
2007-11-12 23:23:19 +00:00
|
|
|
|
// Start autosave timer
|
|
|
|
|
if (lyxrc.autosave) {
|
2007-11-22 23:29:53 +00:00
|
|
|
|
d.autosave_timeout_.timeout.connect(boost::bind(&GuiView::autoSave, this));
|
|
|
|
|
d.autosave_timeout_.setTimeout(lyxrc.autosave * 1000);
|
|
|
|
|
d.autosave_timeout_.start();
|
2007-11-12 23:23:19 +00:00
|
|
|
|
}
|
2007-11-22 23:29:53 +00:00
|
|
|
|
connect(&d.statusbar_timer_, SIGNAL(timeout()),
|
2007-11-18 23:30:41 +00:00
|
|
|
|
this, SLOT(clearMessage()));
|
2007-11-12 23:23:19 +00:00
|
|
|
|
|
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-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
|
|
|
|
|
|
|
|
|
// For Drag&Drop.
|
|
|
|
|
setAcceptDrops(true);
|
2007-11-18 22:29:58 +00:00
|
|
|
|
|
2007-11-18 22:51:58 +00:00
|
|
|
|
statusBar()->setSizeGripEnabled(true);
|
|
|
|
|
|
2007-11-18 23:30:41 +00:00
|
|
|
|
// Forbid too small unresizable window because it can happen
|
|
|
|
|
// with some window manager under X11.
|
|
|
|
|
setMinimumSize(300, 200);
|
2007-11-18 22:51:58 +00:00
|
|
|
|
|
|
|
|
|
if (!lyxrc.allow_geometry_session)
|
2007-11-18 23:30:41 +00:00
|
|
|
|
// No session handling, default to a sane size.
|
2007-11-18 22:51:58 +00:00
|
|
|
|
setGeometry(50, 50, 690, 510);
|
|
|
|
|
|
|
|
|
|
// Now take care of session management.
|
|
|
|
|
QSettings settings;
|
2007-11-18 23:30:41 +00:00
|
|
|
|
QString const key = "view-" + QString::number(id_);
|
2007-11-18 22:51:58 +00:00
|
|
|
|
#ifdef Q_WS_X11
|
|
|
|
|
QPoint pos = settings.value(key + "/pos", QPoint(50, 50)).toPoint();
|
|
|
|
|
QSize size = settings.value(key + "/size", QSize(690, 510)).toSize();
|
|
|
|
|
resize(size);
|
|
|
|
|
move(pos);
|
|
|
|
|
#else
|
|
|
|
|
if (!restoreGeometry(settings.value(key + "/geometry").toByteArray()))
|
|
|
|
|
setGeometry(50, 50, 690, 510);
|
|
|
|
|
#endif
|
|
|
|
|
setIconSize(settings.value(key + "/icon_size").toSize());
|
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
|
|
|
|
{
|
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
|
|
|
|
{
|
2007-11-18 23:30:41 +00:00
|
|
|
|
d.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();
|
2007-11-18 23:30:41 +00:00
|
|
|
|
d.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-22 23:47:13 +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-16 21:52:04 +00:00
|
|
|
|
void GuiView::showEvent(QShowEvent * e)
|
|
|
|
|
{
|
|
|
|
|
LYXERR(Debug::GUI, "Passed Geometry "
|
|
|
|
|
<< size().height() << "x" << size().width()
|
|
|
|
|
<< "+" << pos().x() << "+" << pos().y());
|
2007-11-15 12:58:44 +00:00
|
|
|
|
|
|
|
|
|
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-11-18 23:30:41 +00:00
|
|
|
|
if (!d.quitting_by_menu_ && guiApp->viewCount() == 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.
|
2007-11-18 23:30:41 +00:00
|
|
|
|
d.statusbar_timer_.stop();
|
2007-07-17 09:21:52 +00:00
|
|
|
|
|
2007-11-15 12:58:44 +00:00
|
|
|
|
if (lyxrc.allow_geometry_session) {
|
|
|
|
|
QSettings settings;
|
2007-11-18 23:30:41 +00:00
|
|
|
|
QString const key = "view-" + QString::number(id_);
|
2007-11-16 17:19:46 +00:00
|
|
|
|
#ifdef Q_WS_X11
|
|
|
|
|
settings.setValue(key + "/pos", pos());
|
|
|
|
|
settings.setValue(key + "/size", size());
|
|
|
|
|
#else
|
2007-11-15 12:58:44 +00:00
|
|
|
|
settings.setValue(key + "/geometry", saveGeometry());
|
2007-11-16 17:19:46 +00:00
|
|
|
|
#endif
|
2007-11-15 12:58:44 +00:00
|
|
|
|
settings.setValue(key + "/icon_size", iconSize());
|
|
|
|
|
d.toolbars_->saveToolbarInfo();
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-18 23:30:41 +00:00
|
|
|
|
guiApp->unregisterView(id_);
|
2007-11-17 22:37:33 +00:00
|
|
|
|
if (guiApp->viewCount() > 0) {
|
2007-02-14 13:39:11 +00:00
|
|
|
|
// 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;
|
|
|
|
|
|
2007-11-22 23:34:57 +00:00
|
|
|
|
LYXERR(Debug::GUI, "GuiView::dropEvent: got URLs!");
|
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));
|
2007-11-18 23:30:41 +00:00
|
|
|
|
d.statusbar_timer_.stop();
|
2007-11-22 23:29:53 +00:00
|
|
|
|
d.statusbar_timer_.start(3000);
|
2006-03-05 17:24:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
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()));
|
2007-11-18 23:30:41 +00:00
|
|
|
|
d.statusbar_timer_.stop();
|
2006-03-05 17:24:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
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-18 00:01:14 +00:00
|
|
|
|
updateBufferDependent(true);
|
2007-08-21 07:33:46 +00:00
|
|
|
|
updateToolbars();
|
2007-11-20 22:03:56 +00:00
|
|
|
|
updateLayoutList();
|
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
|
2007-11-18 23:30:41 +00:00
|
|
|
|
if (d.statusbar_timer_.isActive())
|
2006-03-05 17:24:44 +00:00
|
|
|
|
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-11-17 22:37:33 +00:00
|
|
|
|
guiApp->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-18 00:01:14 +00:00
|
|
|
|
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
|
|
|
|
{
|
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-19 10:04:14 +00:00
|
|
|
|
return tab_widget->addWorkArea(buffer, *this);
|
2007-08-21 07:33:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
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-18 00:01:14 +00:00
|
|
|
|
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-20 22:03:56 +00:00
|
|
|
|
void GuiView::setLayoutDialog(GuiLayoutBox * layout)
|
2007-10-01 20:45:50 +00:00
|
|
|
|
{
|
2007-11-20 22:03:56 +00:00
|
|
|
|
d.layout_ = layout;
|
|
|
|
|
}
|
2007-10-01 20:45:50 +00:00
|
|
|
|
|
|
|
|
|
|
2007-11-20 22:03:56 +00:00
|
|
|
|
void GuiView::updateLayoutList()
|
|
|
|
|
{
|
|
|
|
|
if (d.layout_)
|
|
|
|
|
d.layout_->updateContents(false);
|
2007-10-01 20:45:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
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-18 00:01:14 +00:00
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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-18 00:01:14 +00:00
|
|
|
|
showDialog("errorlist", error_type);
|
2007-11-12 23:23:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiView::updateDialog(string const & name, string const & data)
|
|
|
|
|
{
|
2007-11-18 00:01:14 +00:00
|
|
|
|
if (!isDialogVisible(name))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
std::map<string, DialogPtr>::const_iterator it = d.dialogs_.find(name);
|
|
|
|
|
if (it == d.dialogs_.end())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
Dialog * const dialog = it->second.get();
|
|
|
|
|
if (dialog->isVisibleView())
|
|
|
|
|
dialog->updateData(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()
|
|
|
|
|
{
|
2007-11-15 20:04:51 +00:00
|
|
|
|
LYXERR(Debug::INFO, "Running autoSave()");
|
2007-11-12 23:23:19 +00:00
|
|
|
|
|
|
|
|
|
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)
|
2007-11-22 23:29:53 +00:00
|
|
|
|
d.autosave_timeout_.restart();
|
2007-11-12 23:23:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-19 20:56:05 +00:00
|
|
|
|
FuncStatus GuiView::getStatus(FuncRequest const & cmd)
|
|
|
|
|
{
|
|
|
|
|
FuncStatus flag;
|
|
|
|
|
bool enable = true;
|
|
|
|
|
Buffer * buf = buffer();
|
|
|
|
|
|
2007-11-20 22:03:56 +00:00
|
|
|
|
/* In LyX/Mac, when a dialog is open, the menus of the
|
|
|
|
|
application can still be accessed without giving focus to
|
|
|
|
|
the main window. In this case, we want to disable the menu
|
|
|
|
|
entries that are buffer-related.
|
|
|
|
|
|
|
|
|
|
Note that this code is not perfect, as bug 1941 attests:
|
|
|
|
|
http://bugzilla.lyx.org/show_bug.cgi?id=1941#c4
|
|
|
|
|
*/
|
|
|
|
|
if (cmd.origin == FuncRequest::MENU && !hasFocus())
|
|
|
|
|
buf = 0;
|
|
|
|
|
|
2007-11-19 20:56:05 +00:00
|
|
|
|
switch(cmd.action) {
|
|
|
|
|
case LFUN_TOOLBAR_TOGGLE:
|
|
|
|
|
flag.setOnOff(d.toolbars_->visible(cmd.getArg(0)));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_DIALOG_TOGGLE:
|
|
|
|
|
flag.setOnOff(isDialogVisible(cmd.getArg(0)));
|
|
|
|
|
// fall through to set "enable"
|
|
|
|
|
case LFUN_DIALOG_SHOW: {
|
|
|
|
|
string const name = cmd.getArg(0);
|
|
|
|
|
if (!buf)
|
|
|
|
|
enable = name == "aboutlyx"
|
|
|
|
|
|| name == "file" //FIXME: should be removed.
|
|
|
|
|
|| name == "prefs"
|
|
|
|
|
|| name == "texinfo";
|
|
|
|
|
else if (name == "print")
|
|
|
|
|
enable = buf->isExportable("dvi")
|
|
|
|
|
&& lyxrc.print_command != "none";
|
|
|
|
|
else if (name == "character") {
|
|
|
|
|
if (!view())
|
|
|
|
|
enable = false;
|
|
|
|
|
else {
|
|
|
|
|
InsetCode ic = view()->cursor().inset().lyxCode();
|
|
|
|
|
enable = ic != ERT_CODE && ic != LISTINGS_CODE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (name == "latexlog")
|
|
|
|
|
enable = FileName(buf->logName()).isFileReadable();
|
|
|
|
|
else if (name == "spellchecker")
|
|
|
|
|
#if defined (USE_ASPELL) || defined (USE_ISPELL) || defined (USE_PSPELL)
|
|
|
|
|
enable = !buf->isReadonly();
|
|
|
|
|
#else
|
|
|
|
|
enable = false;
|
|
|
|
|
#endif
|
|
|
|
|
else if (name == "vclog")
|
|
|
|
|
enable = buf->lyxvc().inUse();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case LFUN_DIALOG_UPDATE: {
|
|
|
|
|
string const name = cmd.getArg(0);
|
|
|
|
|
if (!buf)
|
|
|
|
|
enable = name == "prefs";
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-23 09:44:02 +00:00
|
|
|
|
case LFUN_INSET_APPLY: {
|
|
|
|
|
if (!buf) {
|
|
|
|
|
enable = false;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
string const name = cmd.getArg(0);
|
|
|
|
|
Inset * inset = getOpenInset(name);
|
|
|
|
|
if (inset) {
|
|
|
|
|
FuncRequest fr(LFUN_INSET_MODIFY, cmd.argument());
|
|
|
|
|
FuncStatus fs;
|
|
|
|
|
if (!inset->getStatus(view()->cursor(), fr, fs)) {
|
|
|
|
|
// Every inset is supposed to handle this
|
|
|
|
|
BOOST_ASSERT(false);
|
|
|
|
|
}
|
|
|
|
|
flag |= fs;
|
|
|
|
|
} else {
|
|
|
|
|
FuncRequest fr(LFUN_INSET_INSERT, cmd.argument());
|
|
|
|
|
flag |= getStatus(fr);
|
|
|
|
|
}
|
|
|
|
|
enable = flag.enabled();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-19 20:56:05 +00:00
|
|
|
|
default:
|
|
|
|
|
if (!view()) {
|
|
|
|
|
enable = false;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!enable)
|
|
|
|
|
flag.enabled(false);
|
|
|
|
|
|
|
|
|
|
return flag;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-12 23:23:19 +00:00
|
|
|
|
void GuiView::dispatch(FuncRequest const & cmd)
|
|
|
|
|
{
|
2007-11-23 11:45:20 +00:00
|
|
|
|
BufferView * bv = view();
|
|
|
|
|
// By default we won't need any update.
|
|
|
|
|
if (bv)
|
|
|
|
|
bv->cursor().updateFlags(Update::None);
|
2007-11-23 09:44:02 +00:00
|
|
|
|
|
2007-11-12 23:23:19 +00:00
|
|
|
|
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:
|
2007-11-20 22:03:56 +00:00
|
|
|
|
if (d.layout_)
|
|
|
|
|
d.layout_->showPopup();
|
2007-11-13 14:49:50 +00:00
|
|
|
|
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-19 20:56:05 +00:00
|
|
|
|
case LFUN_DIALOG_UPDATE: {
|
|
|
|
|
string const name = to_utf8(cmd.argument());
|
|
|
|
|
// Can only update a dialog connected to an existing inset
|
|
|
|
|
Inset * inset = getOpenInset(name);
|
|
|
|
|
if (inset) {
|
|
|
|
|
FuncRequest fr(LFUN_INSET_DIALOG_UPDATE, cmd.argument());
|
|
|
|
|
inset->dispatch(view()->cursor(), fr);
|
|
|
|
|
} else if (name == "paragraph") {
|
|
|
|
|
lyx::dispatch(FuncRequest(LFUN_PARAGRAPH_UPDATE));
|
|
|
|
|
} else if (name == "prefs") {
|
|
|
|
|
updateDialog(name, string());
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case LFUN_DIALOG_TOGGLE: {
|
|
|
|
|
if (isDialogVisible(cmd.getArg(0)))
|
|
|
|
|
dispatch(FuncRequest(LFUN_DIALOG_HIDE, cmd.argument()));
|
|
|
|
|
else
|
|
|
|
|
dispatch(FuncRequest(LFUN_DIALOG_SHOW, cmd.argument()));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case LFUN_DIALOG_DISCONNECT_INSET:
|
|
|
|
|
disconnectDialog(to_utf8(cmd.argument()));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_DIALOG_HIDE: {
|
|
|
|
|
if (quitting)
|
|
|
|
|
break;
|
|
|
|
|
guiApp->hideDialogs(to_utf8(cmd.argument()), 0);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case LFUN_DIALOG_SHOW: {
|
|
|
|
|
string const name = cmd.getArg(0);
|
|
|
|
|
string data = trim(to_utf8(cmd.argument()).substr(name.size()));
|
|
|
|
|
|
|
|
|
|
if (name == "character") {
|
|
|
|
|
data = freefont2string();
|
|
|
|
|
if (!data.empty())
|
|
|
|
|
showDialog("character", data);
|
|
|
|
|
} else if (name == "latexlog") {
|
|
|
|
|
Buffer::LogType type;
|
2007-11-23 09:44:02 +00:00
|
|
|
|
string const logfile = buffer()->logName(&type);
|
2007-11-19 20:56:05 +00:00
|
|
|
|
switch (type) {
|
|
|
|
|
case Buffer::latexlog:
|
|
|
|
|
data = "latex ";
|
|
|
|
|
break;
|
|
|
|
|
case Buffer::buildlog:
|
|
|
|
|
data = "literate ";
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
data += Lexer::quoteString(logfile);
|
|
|
|
|
showDialog("log", data);
|
|
|
|
|
} else if (name == "vclog") {
|
|
|
|
|
string const data = "vc " +
|
2007-11-23 09:44:02 +00:00
|
|
|
|
Lexer::quoteString(buffer()->lyxvc().getLogFile());
|
2007-11-19 20:56:05 +00:00
|
|
|
|
showDialog("log", data);
|
|
|
|
|
} else
|
|
|
|
|
showDialog(name, data);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-23 09:44:02 +00:00
|
|
|
|
case LFUN_INSET_APPLY: {
|
|
|
|
|
string const name = cmd.getArg(0);
|
|
|
|
|
Inset * inset = getOpenInset(name);
|
|
|
|
|
if (inset) {
|
|
|
|
|
FuncRequest fr(LFUN_INSET_MODIFY, cmd.argument());
|
|
|
|
|
inset->dispatch(view()->cursor(), fr);
|
|
|
|
|
} else {
|
|
|
|
|
FuncRequest fr(LFUN_INSET_INSERT, cmd.argument());
|
|
|
|
|
lyx::dispatch(fr);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-12 23:23:19 +00:00
|
|
|
|
default:
|
|
|
|
|
theLyXFunc().setLyXView(this);
|
|
|
|
|
lyx::dispatch(cmd);
|
2007-11-23 11:45:20 +00:00
|
|
|
|
return;
|
2007-11-12 23:23:19 +00:00
|
|
|
|
}
|
2007-11-23 09:44:02 +00:00
|
|
|
|
|
2007-11-23 11:45:20 +00:00
|
|
|
|
if (!bv)
|
|
|
|
|
return;
|
|
|
|
|
bv->processUpdateFlags(bv->cursor().result().update());
|
|
|
|
|
// We won't need any new update.
|
|
|
|
|
bv->cursor().updateFlags(Update::None);
|
2007-11-12 23:23:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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-20 22:23:06 +00:00
|
|
|
|
|
|
|
|
|
// Take this occasion to update the toobars and layout list.
|
|
|
|
|
updateLayoutList();
|
|
|
|
|
updateToolbars();
|
2007-11-12 23:23:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-11-18 23:49:52 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
// This list should be kept in sync with the list of insets in
|
|
|
|
|
// src/insets/Inset.cpp. I.e., if a dialog goes with an inset, the
|
|
|
|
|
// dialog should have the same name as the inset.
|
|
|
|
|
|
|
|
|
|
char const * const dialognames[] = {
|
|
|
|
|
"aboutlyx", "bibitem", "bibtex", "box", "branch", "changes", "character",
|
|
|
|
|
"citation", "document", "embedding", "errorlist", "ert", "external", "file",
|
|
|
|
|
"findreplace", "float", "graphics", "include", "index", "nomenclature", "label", "log",
|
|
|
|
|
"mathdelimiter", "mathmatrix", "note", "paragraph",
|
|
|
|
|
"prefs", "print", "ref", "sendto", "spellchecker","tabular", "tabularcreate",
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_LIBAIKSAURUS
|
|
|
|
|
"thesaurus",
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
"texinfo", "toc", "href", "view-source", "vspace", "wrap", "listings" };
|
|
|
|
|
|
|
|
|
|
char const * const * const end_dialognames =
|
|
|
|
|
dialognames + (sizeof(dialognames) / sizeof(char *));
|
|
|
|
|
|
|
|
|
|
class cmpCStr {
|
|
|
|
|
public:
|
|
|
|
|
cmpCStr(char const * name) : name_(name) {}
|
|
|
|
|
bool operator()(char const * other) {
|
|
|
|
|
return strcmp(other, name_) == 0;
|
|
|
|
|
}
|
|
|
|
|
private:
|
|
|
|
|
char const * name_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool isValidName(string const & name)
|
|
|
|
|
{
|
|
|
|
|
return std::find_if(dialognames, end_dialognames,
|
|
|
|
|
cmpCStr(name.c_str())) != end_dialognames;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace anon
|
|
|
|
|
|
2007-11-18 00:01:14 +00:00
|
|
|
|
|
2007-11-21 15:12:47 +00:00
|
|
|
|
void GuiView::resetDialogs()
|
|
|
|
|
{
|
|
|
|
|
// Make sure that no LFUN uses any LyXView.
|
|
|
|
|
theLyXFunc().setLyXView(0);
|
|
|
|
|
d.toolbars_->init();
|
2007-11-21 21:14:34 +00:00
|
|
|
|
d.menubar_->init();
|
2007-11-21 15:12:47 +00:00
|
|
|
|
if (d.layout_)
|
|
|
|
|
d.layout_->updateContents(true);
|
2007-11-22 07:33:18 +00:00
|
|
|
|
// Now update controls with current buffer.
|
|
|
|
|
theLyXFunc().setLyXView(this);
|
|
|
|
|
restartCursor();
|
2007-11-21 15:12:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-18 00:01:14 +00:00
|
|
|
|
Dialog * GuiView::find_or_build(string const & name)
|
|
|
|
|
{
|
|
|
|
|
if (!isValidName(name))
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
std::map<string, DialogPtr>::iterator it = d.dialogs_.find(name);
|
|
|
|
|
|
|
|
|
|
if (it != d.dialogs_.end())
|
|
|
|
|
return it->second.get();
|
|
|
|
|
|
|
|
|
|
d.dialogs_[name].reset(build(name));
|
|
|
|
|
return d.dialogs_[name].get();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiView::showDialog(string const & name, string const & data,
|
|
|
|
|
Inset * inset)
|
|
|
|
|
{
|
2007-11-18 23:30:41 +00:00
|
|
|
|
if (d.in_show_)
|
2007-11-18 00:01:14 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2007-11-18 23:30:41 +00:00
|
|
|
|
d.in_show_ = true;
|
2007-11-18 00:01:14 +00:00
|
|
|
|
Dialog * dialog = find_or_build(name);
|
|
|
|
|
if (dialog) {
|
|
|
|
|
dialog->showData(data);
|
|
|
|
|
if (inset)
|
|
|
|
|
d.open_insets_[name] = inset;
|
|
|
|
|
}
|
2007-11-18 23:30:41 +00:00
|
|
|
|
d.in_show_ = false;
|
2007-11-18 00:01:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool GuiView::isDialogVisible(string const & name) const
|
|
|
|
|
{
|
|
|
|
|
std::map<string, DialogPtr>::const_iterator it = d.dialogs_.find(name);
|
|
|
|
|
if (it == d.dialogs_.end())
|
|
|
|
|
return false;
|
|
|
|
|
return it->second.get()->isVisibleView();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiView::hideDialog(string const & name, Inset * inset)
|
|
|
|
|
{
|
|
|
|
|
// Don't send the signal if we are quitting, because on MSVC it is
|
|
|
|
|
// destructed before the cut stack in CutAndPaste.cpp, and this method
|
|
|
|
|
// is called from some inset destructor if the cut stack is not empty
|
|
|
|
|
// on exit.
|
|
|
|
|
if (quitting)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
std::map<string, DialogPtr>::const_iterator it = d.dialogs_.find(name);
|
|
|
|
|
if (it == d.dialogs_.end())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (inset && inset != getOpenInset(name))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
Dialog * const dialog = it->second.get();
|
|
|
|
|
if (dialog->isVisibleView())
|
|
|
|
|
dialog->hide();
|
|
|
|
|
d.open_insets_[name] = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiView::disconnectDialog(string const & name)
|
|
|
|
|
{
|
|
|
|
|
if (!isValidName(name))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (d.open_insets_.find(name) != d.open_insets_.end())
|
|
|
|
|
d.open_insets_[name] = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Inset * GuiView::getOpenInset(string const & name) const
|
|
|
|
|
{
|
|
|
|
|
if (!isValidName(name))
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
std::map<string, Inset *>::const_iterator it = d.open_insets_.find(name);
|
|
|
|
|
return it == d.open_insets_.end() ? 0 : it->second;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiView::hideAll() const
|
|
|
|
|
{
|
|
|
|
|
std::map<string, DialogPtr>::const_iterator it = d.dialogs_.begin();
|
|
|
|
|
std::map<string, DialogPtr>::const_iterator end = d.dialogs_.end();
|
|
|
|
|
|
|
|
|
|
for(; it != end; ++it)
|
|
|
|
|
it->second->hide();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiView::hideBufferDependent() const
|
|
|
|
|
{
|
|
|
|
|
std::map<string, DialogPtr>::const_iterator it = d.dialogs_.begin();
|
|
|
|
|
std::map<string, DialogPtr>::const_iterator end = d.dialogs_.end();
|
|
|
|
|
|
|
|
|
|
for(; it != end; ++it) {
|
|
|
|
|
Dialog * dialog = it->second.get();
|
|
|
|
|
if (dialog->isBufferDependent())
|
|
|
|
|
dialog->hide();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiView::updateBufferDependent(bool switched) const
|
|
|
|
|
{
|
|
|
|
|
std::map<string, DialogPtr>::const_iterator it = d.dialogs_.begin();
|
|
|
|
|
std::map<string, DialogPtr>::const_iterator end = d.dialogs_.end();
|
|
|
|
|
|
|
|
|
|
for(; it != end; ++it) {
|
|
|
|
|
Dialog * dialog = it->second.get();
|
|
|
|
|
if (switched && dialog->isBufferDependent()) {
|
|
|
|
|
if (dialog->isVisibleView() && dialog->initialiseParams(""))
|
|
|
|
|
dialog->updateView();
|
|
|
|
|
else
|
|
|
|
|
dialog->hide();
|
|
|
|
|
} else {
|
|
|
|
|
// A bit clunky, but the dialog will request
|
|
|
|
|
// that the kernel provides it with the necessary
|
|
|
|
|
// data.
|
2007-11-23 10:45:14 +00:00
|
|
|
|
dialog->updateDialog();
|
2007-11-18 00:01:14 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GuiView::checkStatus()
|
|
|
|
|
{
|
|
|
|
|
std::map<string, DialogPtr>::const_iterator it = d.dialogs_.begin();
|
|
|
|
|
std::map<string, DialogPtr>::const_iterator end = d.dialogs_.end();
|
|
|
|
|
|
|
|
|
|
for(; it != end; ++it) {
|
|
|
|
|
Dialog * const dialog = it->second.get();
|
|
|
|
|
if (dialog && dialog->isVisibleView())
|
|
|
|
|
dialog->checkStatus();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// will be replaced by a proper factory...
|
2007-11-23 09:44:02 +00:00
|
|
|
|
Dialog * createGuiAbout(GuiView & lv);
|
|
|
|
|
Dialog * createGuiBibitem(GuiView & lv);
|
|
|
|
|
Dialog * createGuiBibtex(GuiView & lv);
|
|
|
|
|
Dialog * createGuiBox(GuiView & lv);
|
|
|
|
|
Dialog * createGuiBranch(GuiView & lv);
|
|
|
|
|
Dialog * createGuiChanges(GuiView & lv);
|
|
|
|
|
Dialog * createGuiCharacter(GuiView & lv);
|
|
|
|
|
Dialog * createGuiCitation(GuiView & lv);
|
|
|
|
|
Dialog * createGuiDelimiter(GuiView & lv);
|
|
|
|
|
Dialog * createGuiDocument(GuiView & lv);
|
|
|
|
|
Dialog * createGuiErrorList(GuiView & lv);
|
|
|
|
|
Dialog * createGuiERT(GuiView & lv);
|
|
|
|
|
Dialog * createGuiExternal(GuiView & lv);
|
|
|
|
|
Dialog * createGuiFloat(GuiView & lv);
|
|
|
|
|
Dialog * createGuiGraphics(GuiView & lv);
|
|
|
|
|
Dialog * createGuiInclude(GuiView & lv);
|
|
|
|
|
Dialog * createGuiIndex(GuiView & lv);
|
|
|
|
|
Dialog * createGuiLabel(GuiView & lv);
|
|
|
|
|
Dialog * createGuiListings(GuiView & lv);
|
|
|
|
|
Dialog * createGuiLog(GuiView & lv);
|
|
|
|
|
Dialog * createGuiMathMatrix(GuiView & lv);
|
|
|
|
|
Dialog * createGuiNomenclature(GuiView & lv);
|
|
|
|
|
Dialog * createGuiNote(GuiView & lv);
|
|
|
|
|
Dialog * createGuiParagraph(GuiView & lv);
|
|
|
|
|
Dialog * createGuiPreferences(GuiView & lv);
|
|
|
|
|
Dialog * createGuiPrint(GuiView & lv);
|
|
|
|
|
Dialog * createGuiRef(GuiView & lv);
|
|
|
|
|
Dialog * createGuiSearch(GuiView & lv);
|
|
|
|
|
Dialog * createGuiSendTo(GuiView & lv);
|
|
|
|
|
Dialog * createGuiShowFile(GuiView & lv);
|
|
|
|
|
Dialog * createGuiSpellchecker(GuiView & lv);
|
|
|
|
|
Dialog * createGuiTabularCreate(GuiView & lv);
|
|
|
|
|
Dialog * createGuiTabular(GuiView & lv);
|
|
|
|
|
Dialog * createGuiTexInfo(GuiView & lv);
|
|
|
|
|
Dialog * createGuiToc(GuiView & lv);
|
|
|
|
|
Dialog * createGuiThesaurus(GuiView & lv);
|
|
|
|
|
Dialog * createGuiHyperlink(GuiView & lv);
|
|
|
|
|
Dialog * createGuiVSpace(GuiView & lv);
|
|
|
|
|
Dialog * createGuiViewSource(GuiView & lv);
|
|
|
|
|
Dialog * createGuiWrap(GuiView & lv);
|
2007-11-18 00:01:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Dialog * GuiView::build(string const & name)
|
|
|
|
|
{
|
|
|
|
|
BOOST_ASSERT(isValidName(name));
|
|
|
|
|
|
|
|
|
|
if (name == "aboutlyx")
|
|
|
|
|
return createGuiAbout(*this);
|
|
|
|
|
if (name == "bibitem")
|
|
|
|
|
return createGuiBibitem(*this);
|
|
|
|
|
if (name == "bibtex")
|
|
|
|
|
return createGuiBibtex(*this);
|
|
|
|
|
if (name == "box")
|
|
|
|
|
return createGuiBox(*this);
|
|
|
|
|
if (name == "branch")
|
|
|
|
|
return createGuiBranch(*this);
|
|
|
|
|
if (name == "changes")
|
|
|
|
|
return createGuiChanges(*this);
|
|
|
|
|
if (name == "character")
|
|
|
|
|
return createGuiCharacter(*this);
|
|
|
|
|
if (name == "citation")
|
|
|
|
|
return createGuiCitation(*this);
|
|
|
|
|
if (name == "document")
|
|
|
|
|
return createGuiDocument(*this);
|
|
|
|
|
if (name == "errorlist")
|
|
|
|
|
return createGuiErrorList(*this);
|
|
|
|
|
if (name == "ert")
|
|
|
|
|
return createGuiERT(*this);
|
|
|
|
|
if (name == "external")
|
|
|
|
|
return createGuiExternal(*this);
|
|
|
|
|
if (name == "file")
|
|
|
|
|
return createGuiShowFile(*this);
|
|
|
|
|
if (name == "findreplace")
|
|
|
|
|
return createGuiSearch(*this);
|
|
|
|
|
if (name == "float")
|
|
|
|
|
return createGuiFloat(*this);
|
|
|
|
|
if (name == "graphics")
|
|
|
|
|
return createGuiGraphics(*this);
|
|
|
|
|
if (name == "include")
|
|
|
|
|
return createGuiInclude(*this);
|
|
|
|
|
if (name == "index")
|
|
|
|
|
return createGuiIndex(*this);
|
|
|
|
|
if (name == "nomenclature")
|
|
|
|
|
return createGuiNomenclature(*this);
|
|
|
|
|
if (name == "label")
|
|
|
|
|
return createGuiLabel(*this);
|
|
|
|
|
if (name == "log")
|
|
|
|
|
return createGuiLog(*this);
|
|
|
|
|
if (name == "view-source")
|
|
|
|
|
return createGuiViewSource(*this);
|
|
|
|
|
if (name == "mathdelimiter")
|
|
|
|
|
return createGuiDelimiter(*this);
|
|
|
|
|
if (name == "mathmatrix")
|
|
|
|
|
return createGuiMathMatrix(*this);
|
|
|
|
|
if (name == "note")
|
|
|
|
|
return createGuiNote(*this);
|
|
|
|
|
if (name == "paragraph")
|
|
|
|
|
return createGuiParagraph(*this);
|
|
|
|
|
if (name == "prefs")
|
|
|
|
|
return createGuiPreferences(*this);
|
|
|
|
|
if (name == "print")
|
|
|
|
|
return createGuiPrint(*this);
|
|
|
|
|
if (name == "ref")
|
|
|
|
|
return createGuiRef(*this);
|
|
|
|
|
if (name == "sendto")
|
|
|
|
|
return createGuiSendTo(*this);
|
|
|
|
|
if (name == "spellchecker")
|
|
|
|
|
return createGuiSpellchecker(*this);
|
|
|
|
|
if (name == "tabular")
|
|
|
|
|
return createGuiTabular(*this);
|
|
|
|
|
if (name == "tabularcreate")
|
|
|
|
|
return createGuiTabularCreate(*this);
|
|
|
|
|
if (name == "texinfo")
|
|
|
|
|
return createGuiTexInfo(*this);
|
|
|
|
|
#ifdef HAVE_LIBAIKSAURUS
|
|
|
|
|
if (name == "thesaurus")
|
|
|
|
|
return createGuiThesaurus(*this);
|
|
|
|
|
#endif
|
|
|
|
|
if (name == "toc")
|
|
|
|
|
return createGuiToc(*this);
|
|
|
|
|
if (name == "href")
|
|
|
|
|
return createGuiHyperlink(*this);
|
|
|
|
|
if (name == "vspace")
|
|
|
|
|
return createGuiVSpace(*this);
|
|
|
|
|
if (name == "wrap")
|
|
|
|
|
return createGuiWrap(*this);
|
|
|
|
|
if (name == "listings")
|
|
|
|
|
return createGuiListings(*this);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
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"
|