]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlCommand.h
obvious stuff
[lyx.git] / src / frontends / controllers / ControlCommand.h
1 // -*- C++ -*-
2 /**
3  * \file ControlCommand.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Angus Leeming
8  *
9  * Full author contact details are available in file CREDITS.
10  *
11  * ControlCommand is a controller class for dialogs that create or modify
12  * an inset derived from InsetCommand.
13  */
14
15 #ifndef CONTROLCOMMAND_H
16 #define CONTROLCOMMAND_H
17
18
19 #include "Dialog.h"
20 #include "insets/insetcommandparams.h"
21
22 namespace lyx {
23 namespace frontend {
24
25 class ControlCommand : public Dialog::Controller {
26 public:
27         /** LFUN_INSET_APPLY requires a name, "citation", "ref" etc so that
28             it knows what to do with the rest of the contents.
29             An empty name indicates that no action will occur on 'Apply'.
30          */
31         ControlCommand(Dialog &, std::string const & lfun_name = std::string());
32         ///
33         InsetCommandParams & params() { return params_; }
34         ///
35         InsetCommandParams const & params() const { return params_; }
36         ///
37         virtual bool initialiseParams(std::string const & data);
38         /// clean-up on hide.
39         virtual void clearParams();
40         /// clean-up on hide.
41         virtual void dispatchParams();
42         ///
43         virtual bool isBufferDependent() const { return true; }
44
45 private:
46         ///
47         InsetCommandParams params_;
48         /// Flags what action is taken by Kernel::dispatch()
49         std::string const lfun_name_;
50 };
51
52 } // namespace frontend
53 } // namespace lyx
54
55 #endif // CONTROLCOMMAND_H