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-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);
|
|
|
|
|
|
|
|
/// initialise graphics
|
|
|
|
void init_graphics();
|
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-06-12 14:43:09 +00:00
|
|
|
}
|
2002-06-12 09:47:10 +00:00
|
|
|
|
|
|
|
#endif // LYX_GUI_H
|