mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
2f10d02e30
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8573 a592a061-630c-0410-9148-cb99ea01b6c8
88 lines
2.0 KiB
C++
88 lines
2.0 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file ControlPrefs.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef CONTROLPREFS_H
|
|
#define CONTROLPREFS_H
|
|
|
|
#include "Dialog.h"
|
|
#include "converter.h"
|
|
#include "format.h"
|
|
#include "lyxrc.h"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class LColor_color;
|
|
|
|
|
|
class ControlPrefs : public Dialog::Controller {
|
|
public:
|
|
ControlPrefs(Dialog &);
|
|
///
|
|
virtual bool initialiseParams(std::string const &);
|
|
///
|
|
virtual void clearParams() {}
|
|
///
|
|
virtual void dispatchParams();
|
|
///
|
|
virtual bool isBufferDependent() const { return false; }
|
|
|
|
LyXRC & rc() { return rc_; }
|
|
LyXRC const & rc() const { return rc_; }
|
|
|
|
Converters & converters() { return converters_; }
|
|
Converters const & converters() const { return converters_; }
|
|
|
|
Formats & formats() { return formats_; }
|
|
Formats const & formats() const { return formats_; }
|
|
|
|
/// various file pickers
|
|
std::string const browsebind(std::string const & file) const;
|
|
std::string const browseUI(std::string const & file) const;
|
|
std::string const browsekbmap(std::string const & file) const;
|
|
std::string const browsedict(std::string const & file) const;
|
|
|
|
/// general browse
|
|
std::string const browse(std::string const & file,
|
|
std::string const & title) const;
|
|
|
|
/// browse directory
|
|
std::string const browsedir(std::string const & path,
|
|
std::string const & title) const;
|
|
|
|
/// redraw widgets (for xforms color change)
|
|
void redrawGUI();
|
|
|
|
/// set a color
|
|
void setColor(LColor_color col, std::string const & hex);
|
|
|
|
/// update the screen fonts after change
|
|
void updateScreenFonts();
|
|
|
|
private:
|
|
/// temporary lyxrc
|
|
LyXRC rc_;
|
|
|
|
/// temporary converters
|
|
Converters converters_;
|
|
|
|
/// temporary formats
|
|
Formats formats_;
|
|
|
|
/// A list of colors to be dispatched
|
|
std::vector<std::string> colors_;
|
|
|
|
bool redraw_gui_;
|
|
bool update_screen_font_;
|
|
};
|
|
|
|
#endif // CONTROLPREFS_H
|