blob: 13c3e758db65bc9192e4133c21ffead322614b3a (
plain) (
blame)
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
|
#include "emptyformaction.h"
namespace newsboat {
EmptyFormAction::EmptyFormAction(View& v, const std::string& formstr,
ConfigContainer* cfg)
: FormAction(v, formstr, cfg)
{
}
std::string EmptyFormAction::id() const
{
return "empty";
}
std::string EmptyFormAction::title()
{
return "Empty FormAction";
}
void EmptyFormAction::init()
{
}
void EmptyFormAction::prepare()
{
}
const std::vector<KeyMapHintEntry>& EmptyFormAction::get_keymap_hint() const
{
static const std::vector<KeyMapHintEntry> hints;
return hints;
}
bool EmptyFormAction::process_operation(Operation /*op*/,
const std::vector<std::string>& /*args*/,
BindingType /*bindingType*/)
{
return false;
}
} // namespace newsboat
|