1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
/***************************************************************************
* Copyright (C) 2008-2016 by Andrzej Rybczak *
* electricityispower@gmail.com *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
#include "bindings.h"
#include "global.h"
#include "macro_utilities.h"
#include "utility/string.h"
#include "utility/wide_string.h"
namespace Actions {
PushCharacters::PushCharacters(NC::Window **w, std::vector<NC::Key::Type> &&queue)
: BaseAction(Type::MacroUtility, "push_characters")
, m_window(w)
, m_queue(queue)
{
assert(w != nullptr);
std::vector<std::string> keys;
for (const auto &key : queue)
keys.push_back(ToString(keyToWString(key)));
m_name += " \"";
m_name += join<std::string>(keys, ", ");
m_name += "\"";
}
void PushCharacters::run()
{
for (auto it = m_queue.begin(); it != m_queue.end(); ++it)
(*m_window)->pushChar(*it);
}
RequireRunnable::RequireRunnable(BaseAction *action)
: BaseAction(Type::MacroUtility, "require_runnable")
, m_action(action)
{
assert(m_action != nullptr);
m_name += " \"";
m_name += m_action->name();
m_name += "\"";
}
bool RequireRunnable::canBeRun()
{
return m_action->canBeRun();
}
RequireScreen::RequireScreen(ScreenType screen_type)
: BaseAction(Type::MacroUtility, "require_screen")
, m_screen_type(screen_type)
{
m_name += " \"";
m_name += screenTypeToString(m_screen_type);
m_name += "\"";
}
bool RequireScreen::canBeRun()
{
return Global::myScreen->type() == m_screen_type;
}
RunExternalCommand::RunExternalCommand(std::string command)
: BaseAction(Type::MacroUtility, "run_external_command")
, m_command(std::move(command))
{
m_name += " \"";
m_name += m_command;
m_name += "\"";
}
void RunExternalCommand::run()
{
GNUC_UNUSED int res;
res = std::system(m_command.c_str());
}
}
|