blob: d381e22cb1f769021dba6c66f73949d6dc7f0b21 (
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
|
#ifndef NEWSBOAT_DIALOGSFORMACTION_H_
#define NEWSBOAT_DIALOGSFORMACTION_H_
#include "formaction.h"
#include "listwidget.h"
namespace newsboat {
class DialogsFormAction : public FormAction {
public:
DialogsFormAction(View*, std::string formstr, ConfigContainer* cfg);
~DialogsFormAction() override;
void prepare() override;
void init() override;
const std::vector<KeyMapHintEntry>& get_keymap_hint() const override;
std::string id() const override
{
return "dialogs";
}
std::string title() override;
void handle_cmdline(const std::string& cmd) override;
private:
bool process_operation(Operation op,
bool automatic = false,
std::vector<std::string>* args = nullptr) override;
void update_heading();
ListWidget dialogs_list;
};
} // namespace newsboat
#endif /* NEWSBOAT_DIALOGSFORMACTION_H_ */
|