blob: 208e4f402b8af39e15aaaea13e87a9a4a2778c99 (
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
43
44
45
46
47
48
49
50
|
#ifndef NEWSBOAT_STFLPP_H_
#define NEWSBOAT_STFLPP_H_
extern "C" {
#include <stfl.h>
}
#include <string>
namespace newsboat {
class Stfl {
public:
class Form {
public:
explicit Form(const std::string& text);
~Form();
const char* run(int timeout);
std::string get(const std::string& name);
void set(const std::string& name, const std::string& value);
std::string get_focus();
void set_focus(const std::string& name);
std::string dump(const std::string& name,
const std::string& prefix,
int focus);
void modify(const std::string& name,
const std::string& mode,
const std::string& text);
// std::string lookup(const std::string& path, const
// std::string& newname);
private:
stfl_form* f;
stfl_ipool* ipool;
};
// static std::string error();
// static void error_action(const std::string& mode);
static void reset();
static std::string quote(const std::string& text);
};
} // namespace newsboat
#endif /* NEWSBOAT_STFLPP_H_ */
|