/** * \file frontends/lyx_gui.C * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author John Levon * \author Abdelrazak Younes * * Full author contact details are available in file CREDITS. */ #include #include "lyx_gui.h" #include "Application.h" #include "funcrequest.h" using std::string; lyx::frontend::Application * theApp; namespace lyx_gui { bool use_gui = true; void parse_lyxrc() {} FuncStatus getStatus(FuncRequest const & ev) { FuncStatus flag; switch (ev.action) { case LFUN_TOOLTIPS_TOGGLE: flag.unknown(true); break; default: break; } return flag; } }; // namespace lyx_gui