mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 06:20:28 +00:00
99d1627a47
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6138 a592a061-630c-0410-9148-cb99ea01b6c8
56 lines
1000 B
C++
56 lines
1000 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file ControlDocument.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Edwin Leuven
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
|
|
#ifndef CONTROLDOCUMENT_H
|
|
#define CONTROLDOCUMENT_H
|
|
|
|
|
|
#include <boost/scoped_ptr.hpp>
|
|
#include "ControlDialog_impl.h"
|
|
#include "LString.h"
|
|
#include "bufferparams.h"
|
|
|
|
#include <vector>
|
|
|
|
class Language;
|
|
|
|
|
|
/** A controller for Document dialogs.
|
|
*/
|
|
class ControlDocument : public ControlDialogBD {
|
|
public:
|
|
///
|
|
ControlDocument(LyXView &, Dialogs &);
|
|
///
|
|
~ControlDocument();
|
|
///
|
|
void setLanguage();
|
|
///
|
|
LyXTextClass textClass();
|
|
///
|
|
BufferParams & params();
|
|
///
|
|
void saveAsDefault();
|
|
///
|
|
void classApply();
|
|
///
|
|
bool loadTextclass(lyx::textclass_type tc) const;
|
|
private:
|
|
/// apply settings
|
|
void apply();
|
|
/// set the params before show or update
|
|
void setParams();
|
|
///
|
|
boost::scoped_ptr<BufferParams> bp_;
|
|
};
|
|
|
|
#endif // CONTROLDOCUMENT_H
|