lyx_mirror/src/frontends/controllers/ControlSendto.h
Georg Baum a70b4ef051 refine the logic for checking whether a dialog may apply its data or not
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9874 a592a061-630c-0410-9148-cb99ea01b6c8
2005-04-26 09:37:52 +00:00

61 lines
1.3 KiB
C++

// -*- C++ -*-
/**
* \file ControlSendto.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Angus Leeming
*
* Full author contact details are available in file CREDITS.
*/
#ifndef CONTROLSENDTO_H
#define CONTROLSENDTO_H
#include "Dialog.h"
#include <vector>
class Format;
namespace lyx {
namespace frontend {
/** A controller for the Custom Export dialogs.
*/
class ControlSendto : public Dialog::Controller {
public:
///
ControlSendto(Dialog &);
///
virtual bool initialiseParams(std::string const & data);
///
virtual void clearParams() {}
///
virtual void dispatchParams();
///
virtual bool isBufferDependent() const { return true; }
///
virtual kb_action getLfun() const { return LFUN_EXPORT_CUSTOM; }
/// Return a vector of those formats that can be exported from "lyx".
std::vector<Format const *> const allFormats() const;
/// The format to export to
Format const * getFormat() { return format_; }
void setFormat(Format const *);
/// The command to be executed
std::string const getCommand() const { return command_; };
void setCommand(std::string const &);
private:
///
Format const * format_;
///
std::string command_;
};
} // namespace frontend
} // namespace lyx
#endif // CONTROLSENDTO_H