2006-03-05 17:24:44 +00:00
|
|
|
// -*- 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"
|
2007-02-13 18:27:46 +00:00
|
|
|
#include "QDocumentDialog.h"
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
#include "BranchList.h"
|
|
|
|
#include <boost/scoped_ptr.hpp>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class LengthCombo;
|
|
|
|
class QLineEdit;
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
|
|
|
class ControlDocument;
|
|
|
|
|
|
|
|
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();
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
#endif // QDOCUMENT_H
|