mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
60 lines
1.6 KiB
C
60 lines
1.6 KiB
C
/*
|
|
* streamdev.c: A plugin for the Video Disk Recorder
|
|
*
|
|
* See the README file for copyright information and how to reach the author.
|
|
*
|
|
* $Id: streamdev-client.c,v 1.3 2010/08/18 10:26:56 schmirl Exp $
|
|
*/
|
|
|
|
#include "streamdev-client.h"
|
|
#include "client/device.h"
|
|
#include "client/setup.h"
|
|
|
|
#if !defined(APIVERSNUM) || APIVERSNUM < 10516
|
|
#error "VDR-1.5.16 API version or greater is required!"
|
|
#endif
|
|
|
|
const char *cPluginStreamdevClient::DESCRIPTION = trNOOP("VTP Streaming Client");
|
|
|
|
cPluginStreamdevClient::cPluginStreamdevClient(void) {
|
|
}
|
|
|
|
cPluginStreamdevClient::~cPluginStreamdevClient() {
|
|
}
|
|
|
|
const char *cPluginStreamdevClient::Description(void) {
|
|
return tr(DESCRIPTION);
|
|
}
|
|
|
|
bool cPluginStreamdevClient::Start(void) {
|
|
I18nRegister(PLUGIN_NAME_I18N);
|
|
cStreamdevDevice::Init();
|
|
return true;
|
|
}
|
|
|
|
const char *cPluginStreamdevClient::MainMenuEntry(void) {
|
|
return StreamdevClientSetup.StartClient && !StreamdevClientSetup.HideMenuEntry ? tr("Suspend Server") : NULL;
|
|
}
|
|
|
|
cOsdObject *cPluginStreamdevClient::MainMenuAction(void) {
|
|
if (ClientSocket.SuspendServer())
|
|
Skins.Message(mtInfo, tr("Server is suspended"));
|
|
else
|
|
Skins.Message(mtError, tr("Couldn't suspend Server!"));
|
|
return NULL;
|
|
}
|
|
|
|
cMenuSetupPage *cPluginStreamdevClient::SetupMenu(void) {
|
|
return new cStreamdevClientMenuSetupPage;
|
|
}
|
|
|
|
bool cPluginStreamdevClient::SetupParse(const char *Name, const char *Value) {
|
|
return StreamdevClientSetup.SetupParse(Name, Value);
|
|
}
|
|
|
|
void cPluginStreamdevClient::MainThreadHook(void) {
|
|
cStreamdevDevice::UpdatePriority();
|
|
}
|
|
|
|
VDRPLUGINCREATOR(cPluginStreamdevClient); // Don't touch this!
|