mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-18 10:51:07 +02:00
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@891 e54a6e83-5905-42d5-8d5c-058d10e6a962
Origin commit data
------------------
Branch: ni/coolstream
Commit: 65b1e20a83
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2010-11-27 (Sat, 27 Nov 2010)
------------------
This commit was generated by Migit
132 lines
3.2 KiB
C++
132 lines
3.2 KiB
C++
/*
|
|
Neutrino-GUI - DBoxII-Project
|
|
|
|
Copyright (C) 2003,2004 gagga
|
|
Homepage: http://www.giggo.de/dbox
|
|
|
|
Kommentar:
|
|
|
|
Diese GUI wurde von Grund auf neu programmiert und sollte nun vom
|
|
Aufbau und auch den Ausbaumoeglichkeiten gut aussehen. Neutrino basiert
|
|
auf der Client-Server Idee, diese GUI ist also von der direkten DBox-
|
|
Steuerung getrennt. Diese wird dann von Daemons uebernommen.
|
|
|
|
|
|
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, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#ifndef __movieplayergui__
|
|
#define __movieplayergui__
|
|
|
|
#include <config.h>
|
|
#include <configfile.h>
|
|
#if HAVE_DVB_API_VERSION >= 1
|
|
#include "driver/framebuffer.h"
|
|
#include "gui/filebrowser.h"
|
|
#include "gui/bookmarkmanager.h"
|
|
#include "gui/widget/menue.h"
|
|
#include "gui/moviebrowser.h"
|
|
#include "gui/movieinfo.h"
|
|
#include <gui/widget/hintbox.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class CMoviePlayerGui : public CMenuTarget
|
|
{
|
|
public:
|
|
enum state
|
|
{
|
|
STOPPED = 0,
|
|
PREPARING = 1,
|
|
STREAMERROR = 2,
|
|
PLAY = 3,
|
|
PAUSE = 4,
|
|
FF = 5,
|
|
REW = 6,
|
|
RESYNC = 7,
|
|
JPOS = 8, // jump to absolute position
|
|
JF = 9,
|
|
JB = 10,
|
|
SKIP = 11,
|
|
AUDIOSELECT = 12,
|
|
SOFTRESET = 99
|
|
};
|
|
|
|
private:
|
|
void Init(void);
|
|
pthread_t rct;
|
|
CFrameBuffer * frameBuffer;
|
|
int m_LastMode;
|
|
const char *filename;
|
|
bool stopped;
|
|
CMoviePlayerGui::state playstate;
|
|
bool isBookmark;
|
|
bool isMovieBrowser;
|
|
int speed;
|
|
int slow;
|
|
off64_t fullposition;
|
|
int startposition;
|
|
int jumpseconds;
|
|
bool showaudioselectdialog;
|
|
off64_t minuteoffset;
|
|
off64_t secondoffset;
|
|
std::string startfilename;
|
|
|
|
std::string Path_local;
|
|
std::string Path_vlc;
|
|
std::string Path_vlc_settings;
|
|
|
|
CFileBrowser * filebrowser;
|
|
CMovieBrowser* moviebrowser;
|
|
CHintBox *hintBox;
|
|
|
|
CBookmarkManager * bookmarkmanager;
|
|
|
|
void PlayStream(int streamtype);
|
|
void PlayFile();
|
|
void cutNeutrino();
|
|
void restoreNeutrino();
|
|
|
|
CFileFilter tsfilefilter;
|
|
CFileFilter pesfilefilter;
|
|
CFileFilter vlcfilefilter;
|
|
void showHelpTS(void);
|
|
void showHelpVLC(void);
|
|
void callInfoViewer(const std::string & epg_title, const std::string & epg_info1,
|
|
const std::string & epg_channel, const int duration, const int pos);
|
|
public:
|
|
CMoviePlayerGui();
|
|
~CMoviePlayerGui();
|
|
int exec(CMenuTarget* parent, const std::string & actionKey);
|
|
void updateLcd(const std::string & sel_filename);
|
|
bool Playing();
|
|
};
|
|
|
|
|
|
class CAPIDSelectExec : public CMenuTarget
|
|
{
|
|
public:
|
|
int exec(CMenuTarget* parent, const std::string & actionKey);
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif
|