CScreenSaver: add class CScreenSaver

Origin commit data
------------------
Branch: ni/coolstream
Commit: 6a23a1c36a
Author: defans <defans@bluepeercrew.us>
Date: 2014-12-29 (Mon, 29 Dec 2014)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
defans
2014-12-29 21:06:18 +01:00
committed by vanhofen
parent c0bfa11849
commit 1b117eb41e
7 changed files with 262 additions and 30 deletions

55
src/gui/screensaver.h Normal file
View File

@@ -0,0 +1,55 @@
/*
Neutrino-GUI - DBoxII-Project
Copyright (C) 2001 Steffen Hehn 'McClean'
Homepage: http://dbox.cyberphoria.org/
Copyright (C) 2012-2013 defans@bluepeercrew.us
License: GPL
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 2 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 __CSCREENSAVER_H__
#define __CSCREENSAVER_H__
#include <driver/framebuffer.h>
#include <vector>
#include <string>
using namespace std;
class CScreenSaver
{
private:
CFrameBuffer *m_frameBuffer;
pthread_t thrScreenSaver;
static void* ScreenSaverPrg(void *arg);
vector<string> v_bg_files;
unsigned int index;
bool ReadDir();
void PaintPicture();
public:
CScreenSaver();
~CScreenSaver();
static CScreenSaver* getInstance();
void Start();
void Stop();
};
#endif // __CSCREENSAVER_H__