mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 06:57:01 +00:00
2a31934f38
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8766 a592a061-630c-0410-9148-cb99ea01b6c8
71 lines
1.3 KiB
C++
71 lines
1.3 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file ControlInclude.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Alejandro Aguilar Sierra
|
|
* \author John Levon
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef CONTROLINCLUDE_H
|
|
#define CONTROLINCLUDE_H
|
|
|
|
|
|
#include "Dialog.h"
|
|
#include "insets/insetcommandparams.h"
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
/** A controller for the Include file dialog.
|
|
*/
|
|
class ControlInclude : public Dialog::Controller {
|
|
public:
|
|
///
|
|
enum Type {
|
|
///
|
|
INPUT,
|
|
///
|
|
VERBATIM,
|
|
///
|
|
INCLUDE
|
|
};
|
|
///
|
|
ControlInclude(Dialog &);
|
|
|
|
///
|
|
virtual bool initialiseParams(std::string const & data);
|
|
/// clean-up on hide.
|
|
virtual void clearParams();
|
|
/// clean-up on hide.
|
|
virtual void dispatchParams();
|
|
///
|
|
virtual bool isBufferDependent() const { return true; }
|
|
|
|
///
|
|
InsetCommandParams const & params() const { return params_; }
|
|
///
|
|
void setParams(InsetCommandParams const &);
|
|
|
|
/// Browse for a file
|
|
std::string const browse(std::string const &, Type) const;
|
|
|
|
/// load a file
|
|
void load(std::string const & file);
|
|
|
|
/// test if file exist
|
|
bool fileExists(std::string const & file);
|
|
private:
|
|
///
|
|
InsetCommandParams params_;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // CONTROLINCLUDE_H
|