mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
b7c9ae4931
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6351 a592a061-630c-0410-9148-cb99ea01b6c8
48 lines
915 B
C++
48 lines
915 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file FormExternal.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Asger Alstrup Nielsen
|
|
* \author John Levon
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
|
|
#ifndef FORMEXTERNAL_H
|
|
#define FORMEXTERNAL_H
|
|
|
|
|
|
#include "FormDialogView.h"
|
|
|
|
|
|
class ControlExternal;
|
|
struct FD_external;
|
|
|
|
/// The class for editing External insets via a dialog
|
|
class FormExternal
|
|
: public FormController<ControlExternal, FormView<FD_external> > {
|
|
public:
|
|
///
|
|
FormExternal(Dialog &);
|
|
private:
|
|
/// apply changes
|
|
virtual void apply();
|
|
|
|
/// build the dialog
|
|
virtual void build();
|
|
|
|
/// update the dialog
|
|
virtual void update();
|
|
|
|
/// Filter the inputs on callback from xforms
|
|
virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
|
|
|
|
///
|
|
void updateComboChange();
|
|
};
|
|
|
|
#endif // FORMEXTERNAL_H
|