diff options
author | LarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b> | 2005-03-22 06:47:53 +0000 |
---|---|---|
committer | LarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b> | 2005-03-22 06:47:53 +0000 |
commit | e2de0c5ed7bbbe4b236246e8bfd71cc87c8d974f (patch) | |
tree | 616f2f0a482597e3968e281ccf8adcfd04f45bbc /muggle-plugin/muggle.h | |
parent | 101360901576c7e91196de60e2e6ebd6a4b145dd (diff) | |
download | vdr-plugin-muggle-0.1.6-BETA.tar.gz vdr-plugin-muggle-0.1.6-BETA.tar.bz2 |
Added 0.1.6 beta tag0.1.6-BETA
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/tags/0.1.6-BETA@586 e10066b5-e1e2-0310-b819-94efdf66514b
Diffstat (limited to 'muggle-plugin/muggle.h')
-rw-r--r-- | muggle-plugin/muggle.h | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/muggle-plugin/muggle.h b/muggle-plugin/muggle.h new file mode 100644 index 0000000..9ccdd3a --- /dev/null +++ b/muggle-plugin/muggle.h @@ -0,0 +1,73 @@ +/*! + * \file muggle.h + * \ingroup vdr + * \brief Implements a plugin for browsing media libraries within VDR + * + * \version $Revision: 1.6 $ + * \date $Date$ + * \author Ralf Klueber, Lars von Wedel, Andreas Kellner + * \author file owner: $Author$ + * + * $Id$ + */ + +// Some notes about the general structure of the plugin + +/* \defgroup giantdisc GiantDisc integration layer + * The GiantDisc integration layer contains functions and classes + * which enable interoperability with a database schema that conforms + * to the GiantDisc layout. + * + * \defgroup vdr VDR integration layer + * The VDR integration layer contains components which allow the + * plugin functionality to be accessed by VDR. These are mainly + * related to the OSD and a player/control combination. + * + * \defgroup muggle Main muggle business + * The core of the plugin is an abstract representation of information + * organized in trees (thus suitable for OSD navigation) as well as + * means to organize + */ + +#ifndef _MUGGLE_H +#define _MUGGLE_H +#include <string> +#include <stdio.h> +#include <sys/types.h> +#include <pthread.h> +#include <plugin.h> + +class mgMainMenu; + +class mgMuggle:public cPlugin +{ + public: + + mgMuggle (void); + + virtual const char *Version (void); + + virtual const char *Description (void); + + virtual const char *CommandLineHelp (void); + + virtual bool ProcessArgs (int argc, char *argv[]); + + virtual bool Initialize (void); + + virtual bool Start (void); + + virtual void Stop (void); + + virtual void Housekeeping (void); + + virtual const char *MainMenuEntry (void); + + virtual cOsdObject *MainMenuAction (void); + + virtual cMenuSetupPage *SetupMenu (void); + + virtual bool SetupParse (const char *Name, const char *Value); + +}; +#endif |