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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
#ifndef NEWSBOAT_FEEDLISTFORMACTION_H_
#define NEWSBOAT_FEEDLISTFORMACTION_H_
#include "3rd-party/optional.hpp"
#include "configcontainer.h"
#include "history.h"
#include "listformaction.h"
#include "matcher.h"
#include "regexmanager.h"
#include "view.h"
namespace newsboat {
typedef std::pair<std::shared_ptr<RssFeed>, unsigned int> FeedPtrPosPair;
class FeedListFormAction : public ListFormAction {
public:
FeedListFormAction(View*,
std::string formstr,
Cache* cc,
FilterContainer& f,
ConfigContainer* cfg,
RegexManager& r);
~FeedListFormAction() override;
void prepare() override;
void init() override;
void set_feedlist(std::vector<std::shared_ptr<RssFeed>>& feeds);
void update_visible_feeds(std::vector<std::shared_ptr<RssFeed>>& feeds);
const std::vector<KeyMapHintEntry>& get_keymap_hint() const override;
std::shared_ptr<RssFeed> get_feed();
std::string id() const override
{
return "feedlist";
}
std::string title() override;
bool jump_to_next_unread_feed(unsigned int& feedpos);
bool jump_to_previous_unread_feed(unsigned int& feedpos);
bool jump_to_next_feed(unsigned int& feedpos);
bool jump_to_previous_feed(unsigned int& feedpos);
bool jump_to_random_unread_feed(unsigned int& feedpos);
void handle_cmdline(const std::string& cmd) override;
void finished_qna(Operation op) override;
void mark_pos_if_visible(unsigned int pos);
private:
void register_format_styles();
void update_form_title(unsigned int width);
unsigned int count_unread_feeds();
unsigned int count_unread_articles();
int get_pos(unsigned int realidx);
bool process_operation(Operation op,
bool automatic = false,
std::vector<std::string>* args = nullptr) override;
bool open_position_in_browser(unsigned int pos, bool interactive) const;
void goto_feed(const std::string& str);
void save_filterpos();
void op_end_setfilter();
void op_start_search();
void handle_cmdline_num(unsigned int idx);
void handle_tag(const std::string& params);
void handle_goto(const std::string& param);
void set_pos();
std::string get_title(std::shared_ptr<RssFeed> feed);
std::string format_line(const std::string& feedlist_format,
std::shared_ptr<RssFeed> feed,
unsigned int pos,
unsigned int width);
bool zero_feedpos;
std::vector<FeedPtrPosPair> visible_feeds;
std::string tag;
Matcher matcher;
bool apply_filter;
History filterhistory;
unsigned int filterpos;
bool set_filterpos;
RegexManager& rxman;
FilterContainer& filters;
nonstd::optional<FeedSortStrategy> old_sort_strategy;
Cache* cache;
};
} // namespace newsboat
#endif /* NEWSBOAT_FEEDLISTFORMACTION_H_ */
|