2001-08-19 13:25:15 +00:00
|
|
|
/**
|
|
|
|
* \file QCharacterDialog.h
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
* see the file COPYING
|
|
|
|
*
|
|
|
|
* \author Edwin Leuven
|
2001-08-26 17:49:42 +00:00
|
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
2001-08-19 13:25:15 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QCHARACTERDIALOG_H
|
|
|
|
#define QCHARACTERDIALOG_H
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "ui/QCharacterDialogBase.h"
|
|
|
|
#include "QCharacter.h"
|
|
|
|
|
|
|
|
#include <qevent.h>
|
|
|
|
#include <qcheckbox.h>
|
|
|
|
#include <qcombobox.h>
|
|
|
|
|
|
|
|
class LyXFont;
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2001-08-19 13:25:15 +00:00
|
|
|
class QCharacterDialog : public QCharacterDialogBase
|
|
|
|
{ Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2001-08-26 17:49:42 +00:00
|
|
|
QCharacterDialog(QCharacter * form);
|
2002-03-21 21:21:28 +00:00
|
|
|
|
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
|