lyx_mirror/src/frontends/kde/copyrightdlg.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

35 lines
573 B
C++

/**
* \file copyrightdlg.h
* Copyright 2001 the LyX Team
* Read the file COPYING
*
* \author John Levon
*/
#ifndef COPYRIGHTDIALOG_H
#define COPYRIGHTDIALOG_H
#include "dlg/copyrightdlgdata.h"
class FormCopyright;
class CopyrightDialog : public CopyrightDialogData
{
Q_OBJECT
public:
CopyrightDialog (FormCopyright * f, QWidget * parent = NULL, char const * name = NULL);
virtual ~CopyrightDialog();
protected slots:
virtual void clickedOK();
virtual void closeEvent(QCloseEvent * e);
private:
FormCopyright * form_;
};
#endif // COPYRIGHTDIALOG_H