mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
621c062434
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2612 a592a061-630c-0410-9148-cb99ea01b6c8
36 lines
591 B
C++
36 lines
591 B
C++
/**
|
|
* \file QPreambleDialog.h
|
|
* Copyright 2001 the LyX Team
|
|
* Read the file COPYING
|
|
*
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
*/
|
|
|
|
#ifndef QPreambleDIAPreamble_H
|
|
#define QPreambleDIAPreamble_H
|
|
|
|
#include <config.h>
|
|
|
|
#include "ui/QPreambleDialogBase.h"
|
|
|
|
class QPreamble;
|
|
|
|
class QPreambleDialog : public QPreambleDialogBase
|
|
{ Q_OBJECT
|
|
|
|
public:
|
|
QPreambleDialog(QPreamble * form);
|
|
|
|
protected slots:
|
|
virtual void editClicked();
|
|
virtual void change_adaptor();
|
|
|
|
protected:
|
|
virtual void closeEvent(QCloseEvent * e);
|
|
|
|
private:
|
|
QPreamble * form_;
|
|
};
|
|
|
|
#endif // QPreambleDIAPreamble_H
|