2004-12-30 23:43:55 +01:00
|
|
|
/*
|
|
|
|
* streamdev.c: A plugin for the Video Disk Recorder
|
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
2008-04-08 16:18:15 +02:00
|
|
|
* $Id: streamdev-client.c,v 1.6 2008/04/08 14:18:15 schmirl Exp $
|
2004-12-30 23:43:55 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "streamdev-client.h"
|
|
|
|
#include "client/device.h"
|
|
|
|
#include "client/setup.h"
|
|
|
|
|
2008-04-08 16:18:15 +02:00
|
|
|
#if !defined(APIVERSNUM) || APIVERSNUM < 10509
|
|
|
|
#error "VDR-1.5.9 API version or greater is required!"
|
2008-04-07 16:27:27 +02:00
|
|
|
#endif
|
|
|
|
|
2008-04-08 16:18:15 +02:00
|
|
|
const char *cPluginStreamdevClient::DESCRIPTION = trNOOP("VTP Streaming Client");
|
2004-12-30 23:43:55 +01:00
|
|
|
|
|
|
|
cPluginStreamdevClient::cPluginStreamdevClient(void) {
|
|
|
|
}
|
|
|
|
|
|
|
|
cPluginStreamdevClient::~cPluginStreamdevClient() {
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *cPluginStreamdevClient::Description(void) {
|
|
|
|
return tr(DESCRIPTION);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cPluginStreamdevClient::Start(void) {
|
2008-04-08 16:18:15 +02:00
|
|
|
I18nRegister(PLUGIN_NAME_I18N);
|
2004-12-30 23:43:55 +01:00
|
|
|
cStreamdevDevice::Init();
|
2008-04-08 16:18:15 +02:00
|
|
|
return true;
|
2004-12-30 23:43:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void cPluginStreamdevClient::Housekeeping(void) {
|
|
|
|
if (StreamdevClientSetup.StartClient && StreamdevClientSetup.SyncEPG)
|
|
|
|
ClientSocket.SynchronizeEPG();
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *cPluginStreamdevClient::MainMenuEntry(void) {
|
2008-04-07 16:50:32 +02:00
|
|
|
return StreamdevClientSetup.StartClient && !StreamdevClientSetup.HideMenuEntry ? tr("Suspend Server") : NULL;
|
2004-12-30 23:43:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cOsdObject *cPluginStreamdevClient::MainMenuAction(void) {
|
2008-04-07 16:40:39 +02:00
|
|
|
if (ClientSocket.SuspendServer())
|
|
|
|
Skins.Message(mtInfo, tr("Server is suspended"));
|
|
|
|
else
|
|
|
|
Skins.Message(mtError, tr("Couldn't suspend Server!"));
|
2005-04-24 18:19:14 +02:00
|
|
|
return NULL;
|
2004-12-30 23:43:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cMenuSetupPage *cPluginStreamdevClient::SetupMenu(void) {
|
|
|
|
return new cStreamdevClientMenuSetupPage;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cPluginStreamdevClient::SetupParse(const char *Name, const char *Value) {
|
|
|
|
return StreamdevClientSetup.SetupParse(Name, Value);
|
|
|
|
}
|
|
|
|
|
|
|
|
VDRPLUGINCREATOR(cPluginStreamdevClient); // Don't touch this!
|