2001-08-29 00:37:04 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file QLog.h
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QLOG_H
|
|
|
|
#define QLOG_H
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "Qt2Base.h"
|
|
|
|
|
|
|
|
class ControlLog;
|
|
|
|
class QLogDialog;
|
|
|
|
|
|
|
|
///
|
|
|
|
class QLog
|
2002-03-21 21:21:28 +00:00
|
|
|
: public Qt2CB<ControlLog, Qt2DB<QLogDialog> >
|
2001-08-29 00:37:04 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
friend class QLogDialog;
|
|
|
|
///
|
2002-08-12 14:28:43 +00:00
|
|
|
QLog();
|
2001-08-29 00:37:04 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
/// Apply changes
|
|
|
|
virtual void apply() {};
|
|
|
|
/// update
|
|
|
|
virtual void update_contents();
|
|
|
|
/// build the dialog
|
|
|
|
virtual void build_dialog();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QLOG_H
|