lyx_mirror/src/frontends/qt2/QVCLog.h

44 lines
680 B
C
Raw Normal View History

// -*- C++ -*-
/**
* \file QVCLog.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QVCLOG_H
#define QVCLOG_H
#ifdef __GNUG__
#pragma interface
#endif
#include "Qt2Base.h"
class ControlVCLog;
class QVCLogDialog;
///
class QVCLog
: public Qt2CB<ControlVCLog, Qt2DB<QVCLogDialog> >
{
public:
///
friend class QVCLogDialog;
///
QVCLog();
private:
/// Apply changes
virtual void apply() {};
/// update
virtual void update_contents();
/// build the dialog
virtual void build_dialog();
};
#endif // QVCLOG_H