lyx_mirror/src/frontends/kde/vclogdlg.h
John Levon 6b219fc94a renaming, fix citation (still no search though)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1903 a592a061-630c-0410-9148-cb99ea01b6c8
2001-04-05 14:41:19 +00:00

39 lines
613 B
C++

/**
* \file vclogdlg.h
* Copyright 2001 the LyX Team
* Read the file COPYING
*
* \author John Levon
*/
#ifndef VCLOGDLG_H
#define VCLOGDLG_H
#include <config.h>
#include "support/lstrings.h"
#include "dlg/logdlgdata.h"
class FormVCLog;
class VCLogDialog : public LogDialogData
{
Q_OBJECT
public:
VCLogDialog(FormVCLog * f, QWidget * parent = NULL, char const * name = NULL);
void setLogText(string const & text);
protected slots:
virtual void closePressed();
virtual void updatePressed();
virtual void closeEvent(QCloseEvent * e);
private:
FormVCLog * form_;
};
#endif // LOGVCDLG_H