timerlist: formatting code using astyle; some manual code nicenings

Origin commit data
------------------
Commit: ebd1b3c3ad
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-12-04 (Sat, 04 Dec 2021)

Origin message was:
------------------
- timerlist: formatting code using astyle; some manual code nicenings
This commit is contained in:
vanhofen
2021-12-04 23:22:35 +01:00
parent db9a15f583
commit c9e5968436
2 changed files with 604 additions and 607 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -86,29 +86,29 @@ class CTimerList : public CMenuTarget, public CListHelpers
void hide();
int modifyTimer();
int newTimer();
/* todo: properly import the enum CVFD::MODES */
// TODO: properly import the enum CVFD::MODES
CVFD::MODES saved_displaymode;
bool RemoteBoxSetup();
void RemoteBoxSelect();
std::string RemoteBoxConnectUrl(std::string _rbname);
bool RemoteBoxChanExists(t_channel_id channel_id);
bool LocalBoxChanExists(t_channel_id channel_id);
int rem_pre,rem_post;
int rem_pre, rem_post;
int item_offset;
bool changed;
int bselected;
CMenuWidget *remboxmenu;
bool askUserOnRemoteTimerConflict(time_t announceTime, time_t stopTime, char * remotebox_ip);
bool askUserOnRemoteTimerConflict(time_t announceTime, time_t stopTime, char *remotebox_ip);
public:
CTimerList();
~CTimerList();
void updateEvents(void);
int show();
int exec(CMenuTarget* parent, const std::string & actionKey);
static const char * convertTimerType2String(const CTimerd::CTimerEventTypes type); // UTF-8
static std::string convertTimerRepeat2String(const CTimerd::CTimerEventRepeat rep); // UTF-8
static std::string convertChannelId2String(const t_channel_id id); // UTF-8
int exec(CMenuTarget *parent, const std::string &actionKey);
static const char *convertTimerType2String(const CTimerd::CTimerEventTypes type);
static std::string convertTimerRepeat2String(const CTimerd::CTimerEventRepeat rep);
static std::string convertChannelId2String(const t_channel_id id);
void RemoteBoxTimerList(CTimerd::TimerList &timerlist);
};