diff options
Diffstat (limited to 'plugins/!NotAdopted/MirandaG15/src/CScreen.h')
| -rw-r--r-- | plugins/!NotAdopted/MirandaG15/src/CScreen.h | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/plugins/!NotAdopted/MirandaG15/src/CScreen.h b/plugins/!NotAdopted/MirandaG15/src/CScreen.h deleted file mode 100644 index 53b05a96e3..0000000000 --- a/plugins/!NotAdopted/MirandaG15/src/CScreen.h +++ /dev/null @@ -1,47 +0,0 @@ -#ifndef _CSCREEN_H_
-#define _CSCREEN_H_
-
-#include "CLCDScreen.h"
-#include "CLCDBitmap.h"
-//#include "CLCDLabel.h"
-
-class CScreen : public CLCDScreen
-{
-public:
- // Constructor
- CScreen();
- // Destructor
- ~CScreen();
-
- // Initializes the screen
- bool Initialize();
- // Shutdown the scren
- bool Shutdown();
- // Updates the screen
- bool Update();
- // Draws the screen
- bool Draw(CLCDGfx *pGfx);
-
- // Called when an event is received
- virtual void OnEventReceived(CEvent *pEvent);
- // Called when the configuration has changed
- virtual void OnConfigChanged();
- // Called when the screens size has changed
- virtual void OnSizeChanged();
-protected:
- // Set the specified button label
- void SetButtonBitmap(int iButton, int iBitmap);
- // Hide/Show the buttons
- void ShowButtons(bool bShow);
-private:
- //CLCDLabel m_Clock;
-
- CLCDBitmap m_aButtons[4];
- HBITMAP m_ahBitmaps[4];
- bool m_abShowButtons[4];
- bool m_bHideButtons;
-
- void UpdateButtons();
-};
-
-#endif
\ No newline at end of file |
