2000-08-16 15:27:11 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 2000 The LyX Team.
|
|
|
|
*
|
|
|
|
* ====================================================== */
|
|
|
|
|
|
|
|
#ifndef GUIRUNTIME_H
|
|
|
|
#define GUIRUNTIME_H
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class LyXView;
|
|
|
|
|
|
|
|
/** The LyX GUI independent guiruntime class
|
2000-08-22 18:28:11 +00:00
|
|
|
The GUI interface is implemented in the corresponding
|
|
|
|
frontends GUIRunTime.C file.
|
|
|
|
*/
|
2000-08-16 15:27:11 +00:00
|
|
|
class GUIRunTime {
|
|
|
|
public:
|
2000-09-11 15:30:21 +00:00
|
|
|
static
|
|
|
|
int initApplication(int argc, char * argv[]);
|
2000-08-22 18:28:11 +00:00
|
|
|
///
|
|
|
|
static
|
|
|
|
void processEvents();
|
|
|
|
///
|
|
|
|
static
|
|
|
|
void runTime();
|
2000-08-16 15:27:11 +00:00
|
|
|
};
|
|
|
|
#endif
|