/** * \file lyx_gui.h * Copyright 2002 the LyX Team * Read the file COPYING * * \author John Levon */ #ifndef LYX_GUI_H #define LYX_GUI_H #include #include "LString.h" #include /// GUI interaction namespace lyx_gui { /// parse command line and do basic initialisation void parse_init(int & argc, char * argv[]); /** * set up GUI parameters. At this point lyxrc may * be used. */ 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 files); /// initialise graphics void init_graphics(); } #endif // LYX_GUI_H