2006-03-05 17:24:44 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
2007-08-31 05:53:55 +00:00
|
|
|
|
* \file GuiNote.h
|
2006-03-05 17:24:44 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author J<EFBFBD>rgen Spitzm<EFBFBD>ller
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef QNOTE_H
|
|
|
|
|
#define QNOTE_H
|
|
|
|
|
|
2007-08-31 05:53:55 +00:00
|
|
|
|
#include "GuiDialogView.h"
|
2007-08-11 15:48:15 +00:00
|
|
|
|
#include "ui_NoteUi.h"
|
2007-04-25 10:57:54 +00:00
|
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
class QCloseEvent;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
namespace frontend {
|
|
|
|
|
|
2007-08-31 05:53:55 +00:00
|
|
|
|
class GuiNote;
|
2007-04-25 10:57:54 +00:00
|
|
|
|
|
2007-08-31 05:53:55 +00:00
|
|
|
|
class GuiNoteDialog : public QDialog, public Ui::NoteUi {
|
2007-04-25 10:57:54 +00:00
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
2007-08-31 05:53:55 +00:00
|
|
|
|
GuiNoteDialog(GuiNote * form);
|
2007-04-25 10:57:54 +00:00
|
|
|
|
protected Q_SLOTS:
|
|
|
|
|
virtual void change_adaptor();
|
|
|
|
|
protected:
|
|
|
|
|
virtual void closeEvent(QCloseEvent * e);
|
|
|
|
|
private:
|
2007-08-31 05:53:55 +00:00
|
|
|
|
GuiNote * form_;
|
2007-04-25 10:57:54 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
class ControlNote;
|
|
|
|
|
|
|
|
|
|
/** This class provides a QT implementation of the Note Dialog.
|
|
|
|
|
*/
|
2007-08-31 05:53:55 +00:00
|
|
|
|
class GuiNote : public QController<ControlNote, GuiView<GuiNoteDialog> >
|
2006-03-05 17:24:44 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
2007-08-31 05:53:55 +00:00
|
|
|
|
friend class GuiNoteDialog;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
|
|
/// Constructor
|
2007-08-31 05:53:55 +00:00
|
|
|
|
GuiNote(Dialog &);
|
2006-03-05 17:24:44 +00:00
|
|
|
|
private:
|
|
|
|
|
/// Apply changes
|
|
|
|
|
virtual void apply();
|
|
|
|
|
/// Build the dialog
|
|
|
|
|
virtual void build_dialog();
|
|
|
|
|
/// Update dialog before showing it
|
|
|
|
|
virtual void update_contents();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
|
|
#endif // QNOTE_H
|