2006-06-26 17:18:28 +00:00
|
|
|
/**
|
2006-09-22 09:47:39 +00:00
|
|
|
* \file qt4/GuiApplication.C
|
2006-06-26 17:18:28 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2006-07-01 18:14:58 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2006-09-22 09:47:39 +00:00
|
|
|
#include "GuiApplication.h"
|
2006-06-26 17:18:28 +00:00
|
|
|
|
2006-09-22 09:47:39 +00:00
|
|
|
#include "GuiView.h"
|
2006-08-17 08:37:46 +00:00
|
|
|
#include "GuiWorkArea.h"
|
2006-06-26 17:18:28 +00:00
|
|
|
#include "qt_helpers.h"
|
2006-09-22 09:47:39 +00:00
|
|
|
#include "QLImage.h"
|
2006-08-17 08:37:46 +00:00
|
|
|
|
2006-06-26 17:18:28 +00:00
|
|
|
#include "BufferView.h"
|
2006-09-22 09:47:39 +00:00
|
|
|
|
2006-09-29 22:06:28 +00:00
|
|
|
// FIXME: this is needed for now because LyXFunc is still constructed
|
|
|
|
// there.
|
|
|
|
#include "frontends/Application_pimpl.h"
|
|
|
|
|
2006-09-22 09:47:39 +00:00
|
|
|
#include "graphics/LoaderQueue.h"
|
2006-08-17 08:37:46 +00:00
|
|
|
|
2006-06-26 17:18:28 +00:00
|
|
|
#include "support/lstrings.h"
|
2006-09-22 09:47:39 +00:00
|
|
|
#include "support/os.h"
|
|
|
|
#include "support/package.h"
|
|
|
|
|
|
|
|
#include "lyx_main.h"
|
|
|
|
#include "lyxrc.h"
|
|
|
|
#include "debug.h"
|
2006-06-26 17:18:28 +00:00
|
|
|
|
|
|
|
#include <QApplication>
|
2006-09-22 09:47:39 +00:00
|
|
|
#include <QClipboard>
|
2006-06-26 17:18:28 +00:00
|
|
|
#include <QEventLoop>
|
2006-09-22 09:47:39 +00:00
|
|
|
#include <QLocale>
|
|
|
|
#include <QLibraryInfo>
|
2006-06-26 17:18:28 +00:00
|
|
|
#include <QTextCodec>
|
2006-09-22 09:47:39 +00:00
|
|
|
#include <QTranslator>
|
2006-06-26 17:18:28 +00:00
|
|
|
|
|
|
|
#ifdef Q_WS_X11
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#endif
|
|
|
|
|
2006-09-22 09:47:39 +00:00
|
|
|
#include <boost/bind.hpp>
|
|
|
|
|
2006-06-26 17:18:28 +00:00
|
|
|
using lyx::support::subst;
|
|
|
|
|
|
|
|
using std::string;
|
|
|
|
using std::endl;
|
|
|
|
|
2006-09-22 09:47:39 +00:00
|
|
|
// in QLyXKeySym.C
|
|
|
|
extern void initEncodings();
|
|
|
|
|
2006-06-26 17:18:28 +00:00
|
|
|
///////////////////////////////////////////////////////////////
|
|
|
|
// You can find other X11 and MACX specific stuff
|
|
|
|
// at the end of this file...
|
|
|
|
///////////////////////////////////////////////////////////////
|
|
|
|
|
2006-09-22 09:47:39 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
int getDPI()
|
|
|
|
{
|
|
|
|
QWidget w;
|
|
|
|
return int(0.5 * (w.logicalDpiX() + w.logicalDpiY()));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
2006-06-26 17:18:28 +00:00
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
2006-09-22 09:47:39 +00:00
|
|
|
GuiApplication::GuiApplication(int & argc, char ** argv)
|
|
|
|
: QApplication(argc, argv), Application(argc, argv)
|
2006-06-26 17:18:28 +00:00
|
|
|
{
|
|
|
|
#ifdef Q_WS_X11
|
|
|
|
// doubleClickInterval() is 400 ms on X11 witch 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
|
|
|
|
|
|
|
|
#ifdef Q_WS_MACX
|
|
|
|
AEInstallEventHandler(kCoreEventClass, kAEOpenDocuments,
|
|
|
|
NewAEEventHandlerUPP(handleOpenDocuments),
|
|
|
|
0, false);
|
|
|
|
#endif
|
2006-09-22 09:47:39 +00:00
|
|
|
|
|
|
|
// install translation file for Qt built-in dialogs
|
|
|
|
// These are only installed since Qt 3.2.x
|
|
|
|
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);
|
2006-06-26 17:18:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-22 15:02:41 +00:00
|
|
|
Clipboard& GuiApplication::clipboard()
|
|
|
|
{
|
|
|
|
return clipboard_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Selection& GuiApplication::selection()
|
|
|
|
{
|
|
|
|
return selection_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-22 09:47:39 +00:00
|
|
|
int const GuiApplication::exec()
|
2006-06-26 17:18:28 +00:00
|
|
|
{
|
2006-09-22 09:47:39 +00:00
|
|
|
return QApplication::exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiApplication::exit(int status)
|
|
|
|
{
|
|
|
|
QApplication::exit(status);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// FIXME: this whole method needs to be moved to Application.
|
|
|
|
LyXView & GuiApplication::createView(unsigned int width,
|
|
|
|
unsigned int height,
|
|
|
|
int posx, int posy,
|
|
|
|
bool maximize)
|
|
|
|
{
|
|
|
|
// this can't be done before because it needs the Languages object
|
|
|
|
initEncodings();
|
|
|
|
|
|
|
|
int view_id = gui().newView(width, height);
|
|
|
|
GuiView & view = static_cast<GuiView &> (gui().view(view_id));
|
|
|
|
|
2006-09-29 22:06:28 +00:00
|
|
|
pimpl_->lyxfunc_.reset(new LyXFunc(&view));
|
2006-09-22 09:47:39 +00:00
|
|
|
|
|
|
|
// FIXME: for now we assume that there is only one LyXView with id = 0.
|
|
|
|
/*int workArea_id_ =*/ gui().newWorkArea(width, height, 0);
|
|
|
|
//WorkArea * workArea_ = & theApp->gui().workArea(workArea_id_);
|
|
|
|
|
|
|
|
LyX::ref().addLyXView(&view);
|
|
|
|
|
|
|
|
view.init();
|
|
|
|
|
|
|
|
// FIXME: put this initialisation code in GuiView accessible via
|
|
|
|
// a pure virtual method in LyXView.
|
|
|
|
|
|
|
|
// only true when the -geometry option was NOT used
|
|
|
|
if (width != 0 && height != 0) {
|
|
|
|
if (posx != -1 && posy != -1) {
|
|
|
|
#ifdef Q_OS_WIN32
|
|
|
|
// FIXME: use only setGeoemtry when Trolltech has
|
|
|
|
// fixed the qt4/X11 bug
|
|
|
|
view.setGeometry(posx, posy,width, height);
|
|
|
|
#else
|
|
|
|
view.resize(width, height);
|
|
|
|
view.move(posx, posy);
|
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
view.resize(width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (maximize)
|
|
|
|
view.setWindowState(Qt::WindowMaximized);
|
|
|
|
}
|
|
|
|
|
|
|
|
view.show();
|
|
|
|
|
|
|
|
return view;
|
2006-06-26 17:18:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// X11 specific stuff goes here...
|
|
|
|
#ifdef Q_WS_X11
|
2006-09-22 09:47:39 +00:00
|
|
|
bool GuiApplication::x11EventFilter(XEvent * xev)
|
2006-06-26 17:18:28 +00:00
|
|
|
{
|
|
|
|
switch (xev->type) {
|
|
|
|
case SelectionRequest:
|
|
|
|
lyxerr[Debug::GUI] << "X requested selection." << endl;
|
2006-09-17 08:35:12 +00:00
|
|
|
if (buffer_view_) {
|
|
|
|
lyx::docstring const sel = buffer_view_->requestSelection();
|
|
|
|
if (!sel.empty())
|
2006-09-22 18:45:22 +00:00
|
|
|
selection_.put(sel);
|
2006-09-17 08:35:12 +00:00
|
|
|
}
|
2006-06-26 17:18:28 +00:00
|
|
|
break;
|
|
|
|
case SelectionClear:
|
|
|
|
lyxerr[Debug::GUI] << "Lost selection." << endl;
|
|
|
|
if (buffer_view_)
|
2006-09-17 08:35:12 +00:00
|
|
|
buffer_view_->clearSelection();
|
2006-06-26 17:18:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// Mac OSX specific stuff goes here...
|
|
|
|
|
|
|
|
#ifdef Q_WS_MACX
|
|
|
|
namespace{
|
2006-09-22 09:47:39 +00:00
|
|
|
|
2006-06-26 17:18:28 +00:00
|
|
|
OSErr checkAppleEventForMissingParams(const AppleEvent& theAppleEvent)
|
|
|
|
{
|
|
|
|
DescType returnedType;
|
|
|
|
Size actualSize;
|
|
|
|
OSErr err = AEGetAttributePtr(&theAppleEvent, keyMissedKeywordAttr,
|
|
|
|
typeWildCard, &returnedType, nil, 0,
|
|
|
|
&actualSize);
|
|
|
|
switch (err) {
|
|
|
|
case errAEDescNotFound:
|
|
|
|
return noErr;
|
|
|
|
case noErr:
|
|
|
|
return errAEEventNotHandled;
|
|
|
|
default:
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
2006-09-22 09:47:39 +00:00
|
|
|
|
2006-06-26 17:18:28 +00:00
|
|
|
} // namespace
|
|
|
|
|
2006-09-22 09:47:39 +00:00
|
|
|
OSErr GuiApplication::handleOpenDocuments(const AppleEvent* inEvent,
|
2006-06-26 17:18:28 +00:00
|
|
|
AppleEvent* /*reply*/, long /*refCon*/)
|
|
|
|
{
|
|
|
|
QString s_arg;
|
|
|
|
AEDescList documentList;
|
|
|
|
OSErr err = AEGetParamDesc(inEvent, keyDirectObject, typeAEList,
|
|
|
|
&documentList);
|
|
|
|
if (err != noErr)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
err = checkAppleEventForMissingParams(*inEvent);
|
|
|
|
if (err == noErr) {
|
|
|
|
long documentCount;
|
|
|
|
err = AECountItems(&documentList, &documentCount);
|
|
|
|
for (long documentIndex = 1;
|
|
|
|
err == noErr && documentIndex <= documentCount;
|
|
|
|
documentIndex++) {
|
|
|
|
DescType returnedType;
|
|
|
|
Size actualSize;
|
|
|
|
AEKeyword keyword;
|
|
|
|
FSRef ref;
|
|
|
|
char qstr_buf[1024];
|
|
|
|
err = AESizeOfNthItem(&documentList, documentIndex,
|
|
|
|
&returnedType, &actualSize);
|
|
|
|
if (err == noErr) {
|
|
|
|
err = AEGetNthPtr(&documentList, documentIndex,
|
|
|
|
typeFSRef, &keyword,
|
|
|
|
&returnedType, (Ptr)&ref,
|
|
|
|
sizeof(FSRef), &actualSize);
|
|
|
|
if (err == noErr) {
|
|
|
|
FSRefMakePath(&ref, (UInt8*)qstr_buf,
|
|
|
|
1024);
|
|
|
|
s_arg=QString::fromUtf8(qstr_buf);
|
|
|
|
// buffer_view_->workAreaDispatch(
|
|
|
|
// FuncRequest(LFUN_FILE_OPEN,
|
|
|
|
// fromqstr(s_arg)));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // for ...
|
|
|
|
}
|
|
|
|
AEDisposeDesc(&documentList);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2006-09-22 09:47:39 +00:00
|
|
|
bool GuiApplication::macEventFilter(EventRef event)
|
2006-06-26 17:18:28 +00:00
|
|
|
{
|
|
|
|
if (GetEventClass(event) == kEventClassAppleEvent) {
|
|
|
|
EventRecord eventrec;
|
|
|
|
ConvertEventRefToEventRecord(event, &eventrec);
|
|
|
|
AEProcessAppleEvent(&eventrec);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // Q_WS_MACX
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|