mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
ffdb0baea3
forseeable future. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7724 a592a061-630c-0410-9148-cb99ea01b6c8
42 lines
781 B
C++
42 lines
781 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file FormNote.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Martin Vermeer
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef FORMNOTE_H
|
|
#define FORMNOTE_H
|
|
|
|
|
|
#include "FormDialogView.h"
|
|
|
|
|
|
class ControlNote;
|
|
struct FD_note;
|
|
|
|
/** This class provides an XForms implementation of the Note Dialog.
|
|
*/
|
|
class FormNote : public FormController<ControlNote, FormView<FD_note> > {
|
|
public:
|
|
/// Constructor
|
|
FormNote(Dialog &);
|
|
private:
|
|
///
|
|
virtual void apply();
|
|
/// Build the dialog
|
|
virtual void build();
|
|
/// Update dialog before showing it
|
|
virtual void update();
|
|
///
|
|
std::vector<string> ids_;
|
|
///
|
|
std::vector<string> gui_names_;
|
|
};
|
|
|
|
#endif // FORMNOTE_H
|