lyx_mirror/src/frontends/qt2/QDocument.h
Angus Leeming 2a31934f38 Wrap most of the frontend code up inside namespace lyx::frontend.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8766 a592a061-630c-0410-9148-cb99ea01b6c8
2004-05-19 15:11:37 +00:00

63 lines
1.1 KiB
C++

// -*- C++ -*-
/**
* \file QDocument.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 QDOCUMENT_H
#define QDOCUMENT_H
#include "QDialogView.h"
#include "BranchList.h"
#include <boost/scoped_ptr.hpp>
#include <string>
#include <vector>
class LengthCombo;
class QLineEdit;
namespace lyx {
namespace frontend {
class ControlDocument;
class QDocumentDialog;
class QDocument
: public QController<ControlDocument, QView<QDocumentDialog> >
{
public:
friend class QDocumentDialog;
QDocument(Dialog &);
void showPreamble();
private:
/// Apply changes
void apply();
/// update
void update_contents();
/// build the dialog
void build_dialog();
/// save as default template
void saveDocDefault();
/// reset to default params
void useClassDefaults();
/// FIXME
std::vector<std::string> lang_;
/// Contains all legal branches for this doc
BranchList branchlist_;
};
} // namespace frontend
} // namespace lyx
#endif // QDOCUMENT_H