]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlCommand.h
hopefully fix tex2lyx linking.
[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 \p lfun_name indicates that no action will occur on
30             'Apply'.
31          */
32         ControlCommand(Dialog &, std::string const & command_name,
33                        std::string const & lfun_name);
34         ///
35         InsetCommandParams & params() { return params_; }
36         ///
37         InsetCommandParams const & params() const { return params_; }
38         ///
39         virtual bool initialiseParams(std::string const & data);
40         /// clean-up on hide.
41         virtual void clearParams();
42         /// clean-up on hide.
43         virtual void dispatchParams();
44         ///
45         virtual bool isBufferDependent() const { return true; }
46
47 private:
48         ///
49         InsetCommandParams params_;
50         /// Flags what action is taken by Kernel::dispatch()
51         std::string const lfun_name_;
52 };
53
54 } // namespace frontend
55 } // namespace lyx
56
57 #endif // CONTROLCOMMAND_H