blob: 9333c31b7df7ce5b9e7981b8ff3671a8a14d3982 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef _FRAME_INC
#define _FRAME_INC
#include "alarmlist.h"
#include "icons.h"
#include "options.h"
void RefreshReminderFrame();
void InitFrames();
void DeinitFrames();
// update 'show/hide reminder frame' menu item
void FixMainMenu();
// used when no multiwindow functionality avaiable
bool ReminderFrameVisible();
void SetReminderFrameVisible(bool visible);
#endif
|