mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 06:20:28 +00:00
58d99b4a97
* Some file (and class) name changes: ButtonController.[Ch] to ButtonControllerBase.[Ch] BCTemplates.h to ButtonController.h ControlBase.[Ch] to ControlButton.[Ch] * Moved file browsing into the controllers for the Graphics, Include and Print popups. * Fixed search bug in Citation popup. Added case sensitive button. * Implemented controller-view split for External Material popup. Think that it's now correct, but could you check again, Dekel? Angus git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1859 a592a061-630c-0410-9148-cb99ea01b6c8
55 lines
1.2 KiB
C++
55 lines
1.2 KiB
C++
/**
|
|
* \file ControlInclude.h
|
|
* Copyright 2001 the LyX Team
|
|
* See the file COPYING
|
|
*
|
|
* \author Alejandro Aguilar Sierra
|
|
* \author John Levon, moz@compsoc.man.ac.uk
|
|
* \author Angus Leeming, a.leeming@.ac.uk
|
|
*/
|
|
|
|
#ifndef CONTROLINCLUDE_H
|
|
#define CONTROLINCLUDE_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "ControlInset.h"
|
|
#include "insets/insetinclude.h" // InsetIncludeParams
|
|
|
|
/** A controller for the Include file dialog.
|
|
*/
|
|
class ControlInclude
|
|
: public ControlInset<InsetInclude, InsetInclude::Params>
|
|
{
|
|
public:
|
|
///
|
|
enum Type {
|
|
///
|
|
INPUT,
|
|
///
|
|
VERBATIM,
|
|
///
|
|
INCLUDE
|
|
};
|
|
///
|
|
ControlInclude(LyXView &, Dialogs &);
|
|
|
|
/// Browse for a file
|
|
string const Browse(string const &, Type);
|
|
|
|
private:
|
|
/// Dispatch the changed parameters to the kernel.
|
|
virtual void applyParamsToInset();
|
|
/// Should be used but currently isn't
|
|
virtual void applyParamsNoInset() {}
|
|
/// get the parameters from the string passed to createInset.
|
|
virtual InsetInclude::Params const getParams(string const &)
|
|
{ return InsetInclude::Params(); }
|
|
/// get the parameters from the inset passed to showInset.
|
|
virtual InsetInclude::Params const getParams(InsetInclude const & inset)
|
|
{ return inset.params(); }
|
|
};
|
|
#endif // CONTROLINCLUDE_H
|