2002-07-02 19:23:10 +00:00
|
|
|
// -*- C++ -*-
|
2002-06-12 09:47:10 +00:00
|
|
|
/**
|
|
|
|
* \file lyx_gui.h
|
|
|
|
* Copyright 2002 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LYX_GUI_H
|
|
|
|
#define LYX_GUI_H
|
2002-07-05 21:24:15 +00:00
|
|
|
|
|
|
|
#include "LColor.h"
|
|
|
|
#include "LString.h"
|
2002-06-12 09:47:10 +00:00
|
|
|
#include <vector>
|
2002-07-02 19:23:10 +00:00
|
|
|
|
|
|
|
class Dialogs;
|
2002-07-12 03:05:13 +00:00
|
|
|
class LyXFont;
|
2002-07-14 01:44:15 +00:00
|
|
|
class LyXComm;
|
2002-07-02 19:23:10 +00:00
|
|
|
|
2002-06-12 09:47:10 +00:00
|
|
|
/// GUI interaction
|
|
|
|
namespace lyx_gui {
|
2002-07-02 19:23:10 +00:00
|
|
|
|
2002-06-12 09:47:10 +00:00
|
|
|
/// parse command line and do basic initialisation
|
|
|
|
void parse_init(int & argc, char * argv[]);
|
2002-07-02 19:23:10 +00:00
|
|
|
|
2002-06-12 09:47:10 +00:00
|
|
|
/**
|
|
|
|
* set up GUI parameters. At this point lyxrc may
|
2002-07-02 19:23:10 +00:00
|
|
|
* be used.
|
2002-06-12 09:47:10 +00:00
|
|
|
*/
|
|
|
|
void parse_lyxrc();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Start the main event loop, after executing the given
|
|
|
|
* batch commands, and loading the given documents
|
|
|
|
*/
|
|
|
|
void start(string const & batch, std::vector<std::string> files);
|
|
|
|
|
2002-07-22 18:56:04 +00:00
|
|
|
/**
|
|
|
|
* quit running LyX
|
|
|
|
*/
|
|
|
|
void exit();
|
|
|
|
|
2002-07-05 21:24:15 +00:00
|
|
|
/** Eg, passing LColor::black returns "000000",
|
|
|
|
* passing LColor::white returns "ffffff".
|
|
|
|
*/
|
|
|
|
string const hexname(LColor::color col);
|
2002-07-12 02:27:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* update an altered GUI color
|
|
|
|
*/
|
|
|
|
void update_color(LColor::color col);
|
2002-07-12 03:05:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* update the font cache
|
|
|
|
*/
|
|
|
|
void update_fonts();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* is the given font available ?
|
|
|
|
*/
|
|
|
|
bool font_available(LyXFont const & font);
|
2002-07-14 01:44:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* add a callback for I/O read notification
|
|
|
|
*/
|
|
|
|
void set_read_callback(int fd, LyXComm * comm);
|
2002-07-30 22:35:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* remove a I/O read callback
|
|
|
|
*/
|
|
|
|
void remove_read_callback(int fd);
|
2002-06-12 14:43:09 +00:00
|
|
|
}
|
2002-06-12 09:47:10 +00:00
|
|
|
|
|
|
|
#endif // LYX_GUI_H
|