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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
/***************************************************************************
* Copyright (C) 2008-2021 by Andrzej Rybczak *
* andrzej@rybczak.net *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
#ifndef NCMPCPP_STATUSBAR_H
#define NCMPCPP_STATUSBAR_H
#include <boost/format.hpp>
#include "curses/window.h"
#include "settings.h"
#include "gcc.h"
#include "interfaces.h"
namespace Progressbar {
struct ScopedLock
{
ScopedLock() noexcept;
~ScopedLock() noexcept;
};
/// @return true if progressbar is unlocked
bool isUnlocked();
/// draws progressbar
void draw(unsigned elapsed, unsigned time);
}
namespace Statusbar {
struct ScopedLock
{
ScopedLock() noexcept;
~ScopedLock() noexcept;
};
/// @return true if statusbar is unlocked
bool isUnlocked();
/// tries to clear current message put there using Statusbar::printf if there is any
void tryRedraw();
/// clears statusbar and move cursor to beginning of line
/// @return window object that represents statusbar
NC::Window &put();
namespace Helpers {
/// called when statusbar window detects incoming idle notification
void mpd();
/// called each time user types another character while inside Window::getString
bool mainHook(const char *);
/// prompt and return one of the characters specified in the vector
char promptReturnOneOf(const std::vector<char> &values);
struct ImmediatelyReturnOneOf
{
ImmediatelyReturnOneOf(std::vector<std::string> arg)
: m_values(std::move(arg))
{ }
bool operator()(const char *s) const;
template <typename StringT>
bool isOneOf(StringT &&s) const {
return std::find(m_values.begin(), m_values.end(), std::forward<StringT>(s)) != m_values.end();
}
private:
std::vector<std::string> m_values;
};
struct ApplyFilterImmediately
{
ApplyFilterImmediately(Filterable *w)
: m_w(w)
{ }
bool operator()(const char *s);
private:
Filterable *m_w;
};
struct FindImmediately
{
FindImmediately(Searchable *w, SearchDirection direction)
: m_w(w), m_direction(direction)
{ }
bool operator()(const char *s);
private:
Searchable *m_w;
const SearchDirection m_direction;
};
struct TryExecuteImmediateCommand
{
bool operator()(const char *s);
private:
std::string m_s;
};
}
/// displays message in statusbar for a given period of time
void print(int delay, const std::string& message);
/// displays message in statusbar for period of time set in configuration file
inline void print(const std::string &message)
{
print(Config.message_delay_time, message);
}
/// displays formatted message in statusbar for period of time set in configuration file
template <typename FormatT>
void printf(FormatT &&fmt)
{
print(Config.message_delay_time, boost::format(std::forward<FormatT>(fmt)).str());
}
template <typename FormatT, typename ArgT, typename... Args>
void printf(FormatT &&fmt, ArgT &&arg, Args&&... args)
{
printf(boost::format(std::forward<FormatT>(fmt)) % std::forward<ArgT>(arg),
std::forward<Args>(args)...
);
}
/// displays formatted message in statusbar for a given period of time
template <typename FormatT>
void printf(int delay, FormatT &&fmt)
{
print(delay, boost::format(std::forward<FormatT>(fmt)).str());
}
template <typename FormatT, typename ArgT, typename... Args>
void printf(int delay, FormatT &&fmt, ArgT &&arg, Args&&... args)
{
printf(delay, boost::format(std::forward<FormatT>(fmt)) % std::forward<ArgT>(arg),
std::forward<Args>(args)...
);
}
}
#endif // NCMPCPP_STATUSBAR_H
|