mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 06:57:01 +00:00
6b219fc94a
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1903 a592a061-630c-0410-9148-cb99ea01b6c8
39 lines
613 B
C++
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
|