1999-09-27 18:44:28 +00:00
|
|
|
// -*- C++ -*-
|
2002-06-12 02:54:19 +00:00
|
|
|
/**
|
|
|
|
* \file lyx_main.h
|
|
|
|
* Copyright 2002 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author unknown
|
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
#ifndef LYX_MAIN_H
|
|
|
|
#define LYX_MAIN_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
#include "LString.h"
|
2001-12-18 03:30:35 +00:00
|
|
|
|
2002-05-22 01:16:37 +00:00
|
|
|
#include <boost/scoped_ptr.hpp>
|
2000-10-02 00:55:02 +00:00
|
|
|
#include <boost/utility.hpp>
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2002-05-22 01:16:37 +00:00
|
|
|
#include <csignal>
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
class LyXRC;
|
|
|
|
class LastFiles;
|
|
|
|
class Buffer;
|
2000-05-10 11:50:11 +00:00
|
|
|
class kb_keymap;
|
1999-10-02 16:21:10 +00:00
|
|
|
|
2002-06-12 09:47:10 +00:00
|
|
|
|
2000-08-07 20:58:24 +00:00
|
|
|
///
|
1999-10-02 16:21:10 +00:00
|
|
|
extern string user_lyxdir;
|
2000-08-07 20:58:24 +00:00
|
|
|
///
|
2002-06-12 02:54:19 +00:00
|
|
|
extern string system_lyxdir;
|
|
|
|
///
|
1999-10-02 16:21:10 +00:00
|
|
|
extern string system_tempdir;
|
2000-08-07 20:58:24 +00:00
|
|
|
///
|
2001-12-18 03:30:35 +00:00
|
|
|
extern boost::scoped_ptr<LastFiles> lastfiles;
|
2002-06-12 09:47:10 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-04-17 14:00:20 +00:00
|
|
|
class LyX : boost::noncopyable {
|
1999-09-27 18:44:28 +00:00
|
|
|
public:
|
2002-06-12 09:47:10 +00:00
|
|
|
LyX(int & argc, char * argv[]);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-10-19 15:13:49 +00:00
|
|
|
/// in the case of failure
|
|
|
|
static void emergencyCleanup();
|
2001-12-10 15:59:20 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
private:
|
|
|
|
/// does this user start lyx for the first time?
|
|
|
|
bool first_start;
|
|
|
|
///
|
1999-12-10 00:07:59 +00:00
|
|
|
string batch_command;
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
|
|
|
void runtime();
|
|
|
|
///
|
2001-05-17 15:11:01 +00:00
|
|
|
void init(bool);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2000-05-10 11:50:11 +00:00
|
|
|
void defaultKeyBindings(kb_keymap * kbmap);
|
|
|
|
///
|
|
|
|
void deadKeyBindings(kb_keymap * kbmap);
|
|
|
|
///
|
2000-05-29 15:29:50 +00:00
|
|
|
void queryUserLyXDir(bool explicit_userdir);
|
2000-07-24 21:49:58 +00:00
|
|
|
/** Search for and read the LyXRC file name, return
|
|
|
|
true if successfull.
|
|
|
|
*/
|
2002-03-21 17:27:08 +00:00
|
|
|
bool readRcFile(string const & name);
|
2000-07-24 13:53:19 +00:00
|
|
|
/// Read the ui file `name'
|
2001-06-28 10:25:20 +00:00
|
|
|
void readUIFile(string const & name);
|
2000-10-10 12:36:36 +00:00
|
|
|
/// Read the languages file `name'
|
2001-06-28 10:25:20 +00:00
|
|
|
void readLanguagesFile(string const & name);
|
2000-10-10 12:36:36 +00:00
|
|
|
/// Read the encodings file `name'
|
2001-06-28 10:25:20 +00:00
|
|
|
void readEncodingsFile(string const & name);
|
2002-03-21 17:27:08 +00:00
|
|
|
///
|
2002-06-12 09:47:10 +00:00
|
|
|
bool easyParse(int & argc, char * argv[]);
|
1999-09-27 18:44:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|