lyx_mirror/src/frontends/controllers/ControlDocument.h
Lars Gullik Bjønnes 99d1627a47 dont use pragma impementation and interface anymore
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6138 a592a061-630c-0410-9148-cb99ea01b6c8
2003-02-13 16:53:15 +00:00

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