mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-30 08:51:04 +02:00
fb_window: add possibility to paint frame boxes
Origin commit data
------------------
Commit: 220260c718
Author: vanhofen <vanhofen@gmx.de>
Date: 2016-08-12 (Fri, 12 Aug 2016)
Origin message was:
------------------
- fb_window: add possibility to paint frame boxes
This commit is contained in:
@@ -68,6 +68,11 @@ void CFBWindow::paintBoxRel(const int _x, const int _y, const int _dx, const int
|
||||
frameBuffer->paintBoxRel(x + _x, y + _y, _dx, _dy, _col, radius, type);
|
||||
}
|
||||
|
||||
void CFBWindow::paintBoxFrame(int _x, int _y, int _dx, int _dy, int _px, const color_t _col, int radius, int type)
|
||||
{
|
||||
frameBuffer->paintBoxFrame(x + _x, y + _y, _dx, _dy, _px, _col, radius, type);
|
||||
}
|
||||
|
||||
void CFBWindow::paintVLineRel(int _x, int _y, int _dy, const color_t _col)
|
||||
{
|
||||
frameBuffer->paintVLineRel(x + _x, y + _y, _dy, _col);
|
||||
|
@@ -43,6 +43,7 @@ class CFBWindow
|
||||
~CFBWindow();
|
||||
|
||||
void paintBoxRel(const int _x, const int _y, const int _dx, const int _dy, const color_t _col, int radius = 0, int type = 0xF);
|
||||
void paintBoxFrame(int _x, int _y, int _dx, int _dy, int _px, const color_t _col, int radius = 0, int type = 0xf);
|
||||
void paintVLineRel(int _x, int _y, int _dy, const color_t _col);
|
||||
void paintHLineRel(int _x, int _dx, int _y, const color_t _col);
|
||||
bool paintIcon(const char * const _filename, const int _x, const int _y, const int _h = 0, const color_t _offset = 1);
|
||||
|
Reference in New Issue
Block a user