2002-09-24 13:57:09 +00:00
|
|
|
// -*- C++ -*-
|
2001-08-19 13:25:15 +00:00
|
|
|
/**
|
|
|
|
* \file QCharacterDialog.h
|
2002-09-24 13:57:09 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2001-08-19 13:25:15 +00:00
|
|
|
*
|
|
|
|
* \author Edwin Leuven
|
2002-09-24 13:57:09 +00:00
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2001-08-19 13:25:15 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QCHARACTERDIALOG_H
|
|
|
|
#define QCHARACTERDIALOG_H
|
|
|
|
|
|
|
|
|
|
|
|
#include "QCharacter.h"
|
2002-06-19 03:38:44 +00:00
|
|
|
#include "ui/QCharacterDialogBase.h"
|
2001-08-19 13:25:15 +00:00
|
|
|
|
|
|
|
#include <qevent.h>
|
|
|
|
#include <qcheckbox.h>
|
|
|
|
#include <qcombobox.h>
|
|
|
|
|
|
|
|
class LyXFont;
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
class QCharacterDialog : public QCharacterDialogBase {
|
|
|
|
Q_OBJECT
|
2001-08-19 13:25:15 +00:00
|
|
|
public:
|
2001-08-26 17:49:42 +00:00
|
|
|
QCharacterDialog(QCharacter * form);
|
2001-08-19 13:25:15 +00:00
|
|
|
protected:
|
|
|
|
void closeEvent(QCloseEvent * e);
|
|
|
|
private:
|
|
|
|
QCharacter * form_;
|
|
|
|
protected slots:
|
2001-08-26 17:49:42 +00:00
|
|
|
void change_adaptor();
|
2001-08-19 13:25:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QCHARACTERDIALOG_H
|