#ifndef RTORRENT_DISPLAY_WINDOW_STATUSBAR_H #define RTORRENT_DISPLAY_WINDOW_STATUSBAR_H #include #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