mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
7b2cce9d5d
We still need a solution for the Mac. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16135 a592a061-630c-0410-9148-cb99ea01b6c8
320 lines
6.8 KiB
C
320 lines
6.8 KiB
C
/**
|
|
* \file qt4/GuiApplication.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author unknown
|
|
* \author John Levon
|
|
* \author Abdelrazak Younes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "GuiApplication.h"
|
|
|
|
#include "qt_helpers.h"
|
|
#include "QLImage.h"
|
|
#include "socket_callback.h"
|
|
|
|
#include "frontends/LyXView.h"
|
|
|
|
#include "graphics/LoaderQueue.h"
|
|
|
|
#include "support/lstrings.h"
|
|
#include "support/os.h"
|
|
#include "support/package.h"
|
|
|
|
#include "BufferView.h"
|
|
#include "Color.h"
|
|
#include "debug.h"
|
|
#include "funcrequest.h"
|
|
#include "lyx_main.h"
|
|
#include "lyxfunc.h"
|
|
#include "lyxrc.h"
|
|
|
|
#include <QApplication>
|
|
#include <QClipboard>
|
|
#include <QEventLoop>
|
|
#include <QFileOpenEvent>
|
|
#include <QLocale>
|
|
#include <QLibraryInfo>
|
|
#include <QTextCodec>
|
|
#include <QTimer>
|
|
#include <QTranslator>
|
|
#include <QWidget>
|
|
|
|
#ifdef Q_WS_X11
|
|
#include <X11/Xlib.h>
|
|
#endif
|
|
|
|
#include <boost/bind.hpp>
|
|
|
|
using std::string;
|
|
using std::endl;
|
|
|
|
// in QLyXKeySym.C
|
|
extern void initEncodings();
|
|
|
|
///////////////////////////////////////////////////////////////
|
|
// You can find other X11 and MACX specific stuff
|
|
// at the end of this file...
|
|
///////////////////////////////////////////////////////////////
|
|
|
|
namespace {
|
|
|
|
int getDPI()
|
|
{
|
|
QWidget w;
|
|
return int(0.5 * (w.logicalDpiX() + w.logicalDpiY()));
|
|
}
|
|
|
|
} // namespace anon
|
|
|
|
|
|
namespace lyx {
|
|
|
|
frontend::Application * createApplication(int & argc, char * argv[])
|
|
{
|
|
return new frontend::GuiApplication(argc, argv);
|
|
}
|
|
|
|
|
|
namespace frontend {
|
|
|
|
GuiApplication * guiApp;
|
|
|
|
|
|
GuiApplication::~GuiApplication()
|
|
{
|
|
socket_callbacks_.clear();
|
|
}
|
|
|
|
|
|
GuiApplication::GuiApplication(int & argc, char ** argv)
|
|
: QApplication(argc, argv), Application(argc, argv)
|
|
{
|
|
// Qt bug? setQuitOnLastWindowClosed(true); does not work
|
|
setQuitOnLastWindowClosed(false);
|
|
|
|
#ifdef Q_WS_X11
|
|
// doubleClickInterval() is 400 ms on X11 which is just too long.
|
|
// On Windows and Mac OS X, the operating system's value is used.
|
|
// On Microsoft Windows, calling this function sets the double
|
|
// click interval for all applications. So we don't!
|
|
QApplication::setDoubleClickInterval(300);
|
|
#endif
|
|
|
|
// install translation file for Qt built-in dialogs
|
|
QTranslator qt_trans;
|
|
QString language_name = QString("qt_") + QLocale::system().name();
|
|
language_name.truncate(5);
|
|
if (qt_trans.load(language_name,
|
|
QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
|
|
{
|
|
qApp->installTranslator(&qt_trans);
|
|
// even if the language calls for RtL, don't do that
|
|
qApp->setLayoutDirection(Qt::LeftToRight);
|
|
lyxerr[Debug::GUI]
|
|
<< "Successfully installed Qt translations for locale "
|
|
<< fromqstr(language_name) << std::endl;
|
|
} else
|
|
lyxerr[Debug::GUI]
|
|
<< "Could not find Qt translations for locale "
|
|
<< fromqstr(language_name) << std::endl;
|
|
|
|
/*#ifdef Q_WS_MACX
|
|
// These translations are meant to break Qt/Mac menu merging
|
|
// algorithm on some entries. It lists the menu names that
|
|
// should not be moved to the LyX menu
|
|
QTranslator aqua_trans(0);
|
|
aqua_trans.insert(QTranslatorMessage("QMenuBar", "Setting", 0,
|
|
"do_not_merge_me"));
|
|
aqua_trans.insert(QTranslatorMessage("QMenuBar", "Config", 0,
|
|
"do_not_merge_me"));
|
|
aqua_trans.insert(QTranslatorMessage("QMenuBar", "Options", 0,
|
|
"do_not_merge_me"));
|
|
aqua_trans.insert(QTranslatorMessage("QMenuBar", "Setup", 0,
|
|
"do_not_merge_me"));
|
|
|
|
qApp->installTranslator(&aqua_trans);
|
|
#endif
|
|
*/
|
|
using namespace lyx::graphics;
|
|
|
|
Image::newImage = boost::bind(&QLImage::newImage);
|
|
Image::loadableFormats = boost::bind(&QLImage::loadableFormats);
|
|
|
|
// needs to be done before reading lyxrc
|
|
lyxrc.dpi = getDPI();
|
|
|
|
LoaderQueue::setPriority(10,100);
|
|
|
|
guiApp = this;
|
|
}
|
|
|
|
Clipboard& GuiApplication::clipboard()
|
|
{
|
|
return clipboard_;
|
|
}
|
|
|
|
|
|
Selection& GuiApplication::selection()
|
|
{
|
|
return selection_;
|
|
}
|
|
|
|
|
|
int const GuiApplication::exec()
|
|
{
|
|
QTimer::singleShot(1, this, SLOT(execBatchCommands()));
|
|
return QApplication::exec();
|
|
}
|
|
|
|
|
|
void GuiApplication::exit(int status)
|
|
{
|
|
QApplication::exit(status);
|
|
}
|
|
|
|
|
|
void GuiApplication::execBatchCommands()
|
|
{
|
|
LyX::ref().execBatchCommands();
|
|
}
|
|
|
|
|
|
string const GuiApplication::romanFontName()
|
|
{
|
|
QFont font;
|
|
font.setKerning(false);
|
|
font.setStyleHint(QFont::Serif);
|
|
font.setFamily("serif");
|
|
|
|
return fromqstr(QFontInfo(font).family());
|
|
}
|
|
|
|
|
|
string const GuiApplication::sansFontName()
|
|
{
|
|
QFont font;
|
|
font.setKerning(false);
|
|
font.setStyleHint(QFont::SansSerif);
|
|
font.setFamily("sans");
|
|
|
|
return fromqstr(QFontInfo(font).family());
|
|
}
|
|
|
|
|
|
string const GuiApplication::typewriterFontName()
|
|
{
|
|
QFont font;
|
|
font.setKerning(false);
|
|
font.setStyleHint(QFont::TypeWriter);
|
|
font.setFamily("monospace");
|
|
|
|
return fromqstr(QFontInfo(font).family());
|
|
}
|
|
|
|
|
|
bool GuiApplication::event(QEvent * e)
|
|
{
|
|
switch(e->type()) {
|
|
case QEvent::FileOpen: {
|
|
// Open a file; this happens only on Mac OS X for now
|
|
QFileOpenEvent * foe = static_cast<QFileOpenEvent *>(e);
|
|
lyx::dispatch(FuncRequest(LFUN_FILE_OPEN,
|
|
fromqstr(foe->file())));
|
|
return true;
|
|
}
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
void GuiApplication::syncEvents()
|
|
{
|
|
// This is the ONLY place where processEvents may be called.
|
|
// During screen update/ redraw, this method is disabled to
|
|
// prevent keyboard events being handed to the LyX core, where
|
|
// they could cause re-entrant calls to screen update.
|
|
processEvents(QEventLoop::ExcludeUserInputEvents);
|
|
}
|
|
|
|
|
|
bool GuiApplication::getRgbColor(LColor_color col,
|
|
lyx::RGBColor & rgbcol)
|
|
{
|
|
QColor const & qcol = color_cache_.get(col);
|
|
if (!qcol.isValid()) {
|
|
rgbcol.r = 0;
|
|
rgbcol.g = 0;
|
|
rgbcol.b = 0;
|
|
return false;
|
|
}
|
|
rgbcol.r = qcol.red();
|
|
rgbcol.g = qcol.green();
|
|
rgbcol.b = qcol.blue();
|
|
return true;
|
|
}
|
|
|
|
|
|
string const GuiApplication::hexName(LColor_color col)
|
|
{
|
|
return lyx::support::ltrim(fromqstr(color_cache_.get(col).name()), "#");
|
|
}
|
|
|
|
|
|
void GuiApplication::updateColor(LColor_color)
|
|
{
|
|
// FIXME: Bleh, can't we just clear them all at once ?
|
|
color_cache_.clear();
|
|
}
|
|
|
|
|
|
void GuiApplication::registerSocketCallback(int fd, boost::function<void()> func)
|
|
{
|
|
socket_callbacks_[fd] =
|
|
boost::shared_ptr<socket_callback>(new socket_callback(fd, func));
|
|
}
|
|
|
|
|
|
void GuiApplication::unregisterSocketCallback(int fd)
|
|
{
|
|
socket_callbacks_.erase(fd);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
// X11 specific stuff goes here...
|
|
#ifdef Q_WS_X11
|
|
bool GuiApplication::x11EventFilter(XEvent * xev)
|
|
{
|
|
BufferView * bv = currentView().view();
|
|
|
|
switch (xev->type) {
|
|
case SelectionRequest:
|
|
lyxerr[Debug::GUI] << "X requested selection." << endl;
|
|
if (bv) {
|
|
lyx::docstring const sel = bv->requestSelection();
|
|
if (!sel.empty())
|
|
selection_.put(sel);
|
|
}
|
|
break;
|
|
case SelectionClear:
|
|
lyxerr[Debug::GUI] << "Lost selection." << endl;
|
|
if (bv)
|
|
bv->clearSelection();
|
|
break;
|
|
}
|
|
return false;
|
|
}
|
|
#endif
|
|
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#include "GuiApplication_moc.cpp"
|