libgui/include/gui/video/CursorDrawer.h

65 lines
1.7 KiB
C
Raw Normal View History

2017-10-29 10:28:14 +01:00
/****************************************************************************
* Copyright (C) 2016,2017 Maschell
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
#ifndef _CursorDrawer_H_
#define _CursorDrawer_H_
#include <string>
2018-06-21 20:44:58 +02:00
#include <stdint.h>
2022-02-05 14:28:08 +01:00
#include <stdio.h>
2017-10-29 10:28:14 +01:00
2018-06-21 20:44:58 +02:00
class CursorDrawer {
2017-10-29 10:28:14 +01:00
public:
static CursorDrawer *getInstance() {
2020-08-13 12:58:19 +02:00
if (!instance) {
2017-10-29 10:28:14 +01:00
instance = new CursorDrawer();
2020-08-13 12:58:19 +02:00
}
2017-10-29 10:28:14 +01:00
return instance;
}
static void destroyInstance() {
2020-08-13 12:38:07 +02:00
if (instance) {
2017-10-29 10:28:14 +01:00
delete instance;
instance = NULL;
}
}
2018-06-21 20:44:58 +02:00
static void draw(float x, float y) {
2020-08-13 12:38:07 +02:00
CursorDrawer *cur_instance = getInstance();
2020-08-13 12:58:19 +02:00
if (cur_instance == NULL) { return; }
2020-08-13 12:38:07 +02:00
cur_instance->draw_Cursor(x, y);
2017-10-29 10:28:14 +01:00
}
private:
//!Constructor
CursorDrawer();
2020-08-13 12:38:07 +02:00
2017-10-29 10:28:14 +01:00
//!Destructor
~CursorDrawer();
2020-08-13 12:38:07 +02:00
2017-10-29 10:28:14 +01:00
static CursorDrawer *instance;
2020-08-13 12:38:07 +02:00
2018-06-21 20:44:58 +02:00
void draw_Cursor(float x, float y);
2020-08-13 12:38:07 +02:00
2017-10-29 10:28:14 +01:00
void init_colorVtxs();
2020-08-13 12:38:07 +02:00
uint8_t *colorVtxs = NULL;
2017-10-29 10:28:14 +01:00
};
#endif