mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
f4857dab04
* LyXFunc: - dispatch(): transfer assertion on lyx_view_ to each LFUN on a case by case basis. - dispatch(): new LFUN_WINDOW_CLOSE - getStatus(): special treatment for LFUN_LYX_QUIT * LyX: - views_, addLyXView(): deleted - quit(): call saveGeometry() on each LyXView before exiting. * GuiApplication: - is now a QObject. - quitLyX(): new Qt slot for lastWindowClosed signal. * Gui.h: - destroyView(), destroyWorkArea(): deleted - viewIds(): new method * GuiImplementation: - implement above changes. - GuiImplementation is now a QObject - cleanupViews(): new private slot. - buildViewIds(): new helper method - views_ and work_areas_ are now maps of raw pointers instead of schared_ptr. * LyXView - now stores its id. - dispatch(): special treatment for LFUN_WINDOW_CLOSE. - workAreaIds(): new method. - close(): new pure virtual method. - saveGeometry(): new pure virtual method. * GuiView: - implements above changes. - GuiView(): set WA_DeleteOnClose and Qt::WA_QuitOnClose to let Qt manage the destruction on close(). - closeEvent(): session stuff transfered to saveGeometry() * WorkArea - now store its id. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15514 a592a061-630c-0410-9148-cb99ea01b6c8
127 lines
2.8 KiB
C++
127 lines
2.8 KiB
C++
/**
|
|
* \file qt4/GuiApplication.h
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef QT4_APPLICATION_H
|
|
#define QT4_APPLICATION_H
|
|
|
|
#include "ColorCache.h"
|
|
#include "GuiFontLoader.h"
|
|
#include "GuiClipboard.h"
|
|
#include "GuiImplementation.h"
|
|
#include "GuiSelection.h"
|
|
|
|
#include "frontends/Application.h"
|
|
|
|
#include <QApplication>
|
|
|
|
///////////////////////////////////////////////////////////////
|
|
// Specific stuff
|
|
|
|
#ifdef Q_WS_MACX
|
|
#include <Carbon/Carbon.h>
|
|
#endif
|
|
///////////////////////////////////////////////////////////////
|
|
|
|
namespace lyx {
|
|
|
|
class BufferView;
|
|
class socket_callback;
|
|
|
|
namespace frontend {
|
|
|
|
class GuiWorkArea;
|
|
|
|
/// The Qt main application class
|
|
/**
|
|
There should be only one instance of this class. No Qt object
|
|
initialisation should be done before the instanciation of this class.
|
|
|
|
\todo The work areas handling could be moved to a base virtual class
|
|
comon to all frontends.
|
|
*/
|
|
class GuiApplication : public QApplication, public Application
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GuiApplication(int & argc, char ** argv);
|
|
///
|
|
virtual ~GuiApplication();
|
|
|
|
/// Method inherited from \c Application class
|
|
//@{
|
|
virtual Clipboard& clipboard();
|
|
virtual Selection& selection();
|
|
virtual FontLoader & fontLoader() { return font_loader_; }
|
|
virtual int const exec();
|
|
virtual Gui & gui() { return gui_; }
|
|
virtual void exit(int status);
|
|
void syncEvents();
|
|
virtual std::string const romanFontName();
|
|
virtual std::string const sansFontName();
|
|
virtual std::string const typewriterFontName();
|
|
virtual bool getRgbColor(LColor_color col, lyx::RGBColor & rgbcol);
|
|
virtual std::string const hexName(LColor_color col);
|
|
virtual void updateColor(LColor_color col);
|
|
virtual void registerSocketCallback(
|
|
int fd, boost::function<void()> func);
|
|
virtual void unregisterSocketCallback(int fd);
|
|
//@}
|
|
|
|
///
|
|
ColorCache & colorCache() { return color_cache_; }
|
|
///
|
|
///
|
|
GuiFontLoader & guiFontLoader() { return font_loader_; }
|
|
|
|
private Q_SLOTS:
|
|
/// request an LFUN_LYX_QUIT
|
|
void quitLyX();
|
|
|
|
private:
|
|
///
|
|
GuiImplementation gui_;
|
|
///
|
|
GuiClipboard clipboard_;
|
|
///
|
|
GuiSelection selection_;
|
|
///
|
|
GuiFontLoader font_loader_;
|
|
///
|
|
ColorCache color_cache_;
|
|
///
|
|
std::map<int, boost::shared_ptr<socket_callback> > socket_callbacks_;
|
|
|
|
#ifdef Q_WS_X11
|
|
public:
|
|
bool x11EventFilter (XEvent * ev);
|
|
#endif
|
|
|
|
#ifdef Q_WS_MACX
|
|
public:
|
|
bool macEventFilter(EventRef event);
|
|
private:
|
|
// static OSStatus handleOpenDocuments(
|
|
static pascal OSErr handleOpenDocuments(
|
|
const AppleEvent* inEvent, AppleEvent*, long);
|
|
#endif
|
|
}; // GuiApplication
|
|
|
|
extern GuiApplication * guiApp;
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
#endif // QT4_APPLICATION_H
|