mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-10 04:02:30 +00:00
897a6face2
Signed-off-by: Rosen Penev <rosenp@gmail.com>
24 lines
363 B
C++
24 lines
363 B
C++
#ifndef RTORRENT_DISPLAY_WINDOW_STATUSBAR_H
|
|
#define RTORRENT_DISPLAY_WINDOW_STATUSBAR_H
|
|
|
|
#include <cstdint>
|
|
|
|
#include "window.h"
|
|
|
|
namespace display {
|
|
|
|
class WindowStatusbar : public Window {
|
|
public:
|
|
WindowStatusbar() :
|
|
Window(new Canvas, 0, 0, 1, extent_full, extent_static) {}
|
|
|
|
virtual void redraw();
|
|
|
|
private:
|
|
uint64_t m_lastTick{};
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|