mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
4585597f47
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1027 a592a061-630c-0410-9148-cb99ea01b6c8
39 lines
729 B
C++
39 lines
729 B
C++
// -*- 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
|
|
The GUI interface is implemented in the corresponding
|
|
frontends GUIRunTime.C file.
|
|
*/
|
|
class GUIRunTime {
|
|
public:
|
|
static
|
|
int initApplication(int argc, char * argv[]);
|
|
///
|
|
static
|
|
void processEvents();
|
|
///
|
|
static
|
|
void runTime();
|
|
/// This is run first in the LyXGUI constructor.
|
|
static
|
|
void setDefaults();
|
|
};
|
|
#endif
|