1 /***************************************************************************
2  *   Copyright (C) 2008-2021 by Andrzej Rybczak                            *
3  *   andrzej@rybczak.net                                                   *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.              *
19  ***************************************************************************/
20 
21 #ifndef NCMPCPP_CLOCK_H
22 #define NCMPCPP_CLOCK_H
23 
24 #include "config.h"
25 
26 #ifdef ENABLE_CLOCK
27 
28 #include "curses/window.h"
29 #include "interfaces.h"
30 #include "screens/screen.h"
31 
32 struct Clock: Screen<NC::Window>, Tabbable
33 {
34 	Clock();
35 
36 	virtual void resize() override;
37 	virtual void switchTo() override;
38 
39 	virtual std::wstring title() override;
typeClock40 	virtual ScreenType type() override { return ScreenType::Clock; }
41 
42 	virtual void update() override;
scrollClock43 	virtual void scroll(NC::Scroll) override { }
44 
mouseButtonPressedClock45 	virtual void mouseButtonPressed(MEVENT) override { }
46 
isLockableClock47 	virtual bool isLockable() override { return false; }
isMergableClock48 	virtual bool isMergable() override { return true; }
49 
50 private:
51 	NC::Window m_pane;
52 
53 	static void Prepare();
54 	static void Set(int, int);
55 
56 	static short disp[11];
57 	static long older[6], next[6], newer[6], mask;
58 
59 	static size_t Width;
60 	static const size_t Height;
61 };
62 
63 extern Clock *myClock;
64 
65 #endif // ENABLE_CLOCK
66 
67 #endif // NCMPCPP_CLOCK_H
68