Lumiera  0.pre.03
»edit your freedom«
cmd.hpp
Go to the documentation of this file.
1 /*
2  CMD.hpp - Steam Command definition keys
3 
4  Copyright (C) Lumiera.org
5  2017, Hermann Vosseler <Ichthyostega@web.de>
6 
7  This program is free software; you can redistribute it and/or
8  modify it under the terms of the GNU General Public License as
9  published by the Free Software Foundation; either version 2 of
10  the License, or (at your option) any later version.
11 
12  This program is distributed in the hope that it will be useful,
13  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  GNU General Public License for more details.
16 
17  You should have received a copy of the GNU General Public License
18  along with this program; if not, write to the Free Software
19  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 
21 */
22 
23 
38 #ifndef STEAM_CMD_H
39 #define STEAM_CMD_H
40 
42 //#include "lib/symbol.hpp"
43 //#include "steam/common.hpp"
44 
45 //#include <string>
46 
47 
48 
49 
50 namespace steam {
51 namespace cmd {
52 
53 // using std::string;
54 // using lib::Symbol;
55  using control::Command;
56  using control::CommandDef;
57  using control::CommandSetup;
58  //using std::shared_ptr;
59 
60 
61  /* ========= commands for global actions ========= */
62 
63  extern CommandSetup session_saveSnapshot;
64  extern CommandSetup session_newSequence;
65 
66 
67 
68  /* ========= commands for sequence actions ======= */
69 
70  extern CommandSetup sequence_newTrack;
71 
72 
73 
74  /* ========= commands for actions in local scope ======= */
75 
76  extern CommandSetup scope_moveRelocateClip;
77 
78 
79 
80  /* ========= commands for meta actions ======= */
81 
82  extern CommandSetup test_meta_activateContentDiff;
83  extern CommandSetup meta_deactivateContentDiff;
84 
85  //--Demo-and-Development----
86  extern CommandSetup test_meta_displayInfo;
87  extern CommandSetup test_meta_markError;
88  extern CommandSetup test_meta_markNote;
89  extern CommandSetup test_meta_markAction;
90 
91 
92 }} // namespace steam::cmd
93 #endif /*STEAM_CMD_H*/
Steam-Layer implementation namespace root.
Provision for setup of concrete commands for use by the UI.