mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
1eb8155fa0
Licence details can be found in the file COPYING. and thank God for sed. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5211 a592a061-630c-0410-9148-cb99ea01b6c8
50 lines
933 B
C++
50 lines
933 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
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "FormBase.h"
|
|
#include "insets/insetexternal.h"
|
|
|
|
class ControlExternal;
|
|
struct FD_external;
|
|
|
|
/// The class for editing External insets via a dialog
|
|
class FormExternal : public FormCB<ControlExternal, FormDB<FD_external> > {
|
|
public:
|
|
///
|
|
FormExternal();
|
|
private:
|
|
/// apply changes
|
|
void apply();
|
|
|
|
/// build the dialog
|
|
void build();
|
|
|
|
/// update the dialog
|
|
void update();
|
|
|
|
/// Filter the inputs on callback from xforms
|
|
ButtonPolicy::SMInput input(FL_OBJECT *, long);
|
|
|
|
///
|
|
void updateComboChange();
|
|
};
|
|
|
|
#endif // FORMEXTERNAL_H
|