2000-08-16 15:27:11 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/* This file is part of
|
|
|
|
|
* ======================================================
|
|
|
|
|
*
|
|
|
|
|
* LyX, The Document Processor
|
|
|
|
|
*
|
|
|
|
|
* Copyright 2000 The LyX Team.
|
|
|
|
|
*
|
|
|
|
|
* @author J<EFBFBD>rgen Vigna
|
|
|
|
|
*
|
|
|
|
|
* ====================================================== */
|
|
|
|
|
|
|
|
|
|
#ifndef GUIRUNTIME_H
|
|
|
|
|
#define GUIRUNTIME_H
|
|
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
|
#pragma interface
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
class LyXView;
|
|
|
|
|
|
|
|
|
|
/** The LyX GUI independent guiruntime class
|
|
|
|
|
The GUI interface is implemented in the corresponding GUIRunTime_pimpl class.
|
|
|
|
|
*/
|
|
|
|
|
class GUIRunTime {
|
|
|
|
|
public:
|
|
|
|
|
///
|
|
|
|
|
GUIRunTime();
|
|
|
|
|
///
|
|
|
|
|
~GUIRunTime();
|
|
|
|
|
///
|
|
|
|
|
void processEvents();
|
2000-08-16 23:48:48 +00:00
|
|
|
|
///
|
|
|
|
|
void runTime();
|
|
|
|
|
|
2000-08-16 15:27:11 +00:00
|
|
|
|
struct Pimpl;
|
|
|
|
|
friend struct Pimpl;
|
|
|
|
|
|
|
|
|
|
private:
|
2000-08-16 23:48:48 +00:00
|
|
|
|
///
|
2000-08-16 15:27:11 +00:00
|
|
|
|
Pimpl * pimpl_;
|
|
|
|
|
};
|
|
|
|
|
#endif
|