blob: 94e397eb43863723cbc0046684d6764cc6933cc2 (
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
|
#ifndef NEWSBEUTER_DIALOGS_FORMACTION__H
#define NEWSBEUTER_DIALOGS_FORMACTION__H
#include <formaction.h>
namespace newsbeuter {
class dialogs_formaction : public formaction {
public:
dialogs_formaction(view *, std::string formstr);
virtual ~dialogs_formaction();
virtual void prepare();
virtual void init();
virtual keymap_hint_entry * get_keymap_hint();
virtual std::string id() const {
return "dialogs";
}
virtual std::string title();
virtual void handle_cmdline(const std::string& cmd);
private:
virtual void process_operation(operation op, bool automatic = false, std::vector<std::string> * args = nullptr);
bool update_list;
};
}
#endif
|