mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
eca7848597
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5620 a592a061-630c-0410-9148-cb99ea01b6c8
53 lines
878 B
C++
53 lines
878 B
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
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "Qt2Base.h"
|
|
#include "Qt2BC.h"
|
|
|
|
#include <boost/scoped_ptr.hpp>
|
|
|
|
class ControlDocument;
|
|
class QDocumentDialog;
|
|
|
|
class QDocument
|
|
: public Qt2CB<ControlDocument, Qt2DB<QDocumentDialog> >
|
|
{
|
|
public:
|
|
|
|
friend class QDocumentDialog;
|
|
|
|
QDocument();
|
|
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<string> lang_;
|
|
};
|
|
|
|
#endif // QDOCUMENT_H
|