menu.h
author nathan
Sat, 29 Dec 2007 14:49:09 +0100
branchtrunk
changeset 2 4c1f7b705009
parent 0 474a1293c3c0
child 22 93aaf15c145a
permissions -rw-r--r--
release 0.10.1
nathan@0
     1
/*
nathan@0
     2
 * MP3/MPlayer plugin to VDR (C++)
nathan@0
     3
 *
nathan@0
     4
 * (C) 2001-2006 Stefan Huelswitt <s.huelswitt@gmx.de>
nathan@0
     5
 *
nathan@0
     6
 * This code is free software; you can redistribute it and/or
nathan@0
     7
 * modify it under the terms of the GNU General Public License
nathan@0
     8
 * as published by the Free Software Foundation; either version 2
nathan@0
     9
 * of the License, or (at your option) any later version.
nathan@0
    10
 *
nathan@0
    11
 * This code is distributed in the hope that it will be useful,
nathan@0
    12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
nathan@0
    13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
nathan@0
    14
 * GNU General Public License for more details.
nathan@0
    15
 *
nathan@0
    16
 * You should have received a copy of the GNU General Public License
nathan@0
    17
 * along with this program; if not, write to the Free Software
nathan@0
    18
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
nathan@0
    19
 * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
nathan@0
    20
 */
nathan@0
    21
nathan@0
    22
#ifndef ___MENU_H
nathan@0
    23
#define ___MENU_H
nathan@0
    24
nathan@0
    25
#include "common.h"
nathan@0
    26
#if APIVERSNUM >= 10307
nathan@0
    27
#include <vdr/osdbase.h>
nathan@0
    28
#else
nathan@0
    29
#include <vdr/osd.h>
nathan@0
    30
#endif
nathan@0
    31
nathan@0
    32
// ----------------------------------------------------------------
nathan@0
    33
nathan@0
    34
void Status(const char *text);
nathan@0
    35
void Error(const char *text);
nathan@0
    36
void Info(const char *text);
nathan@0
    37
nathan@0
    38
// ----------------------------------------------------------------
nathan@0
    39
nathan@0
    40
class cFileSources;
nathan@0
    41
class cFileSource;
nathan@0
    42
class cFileObj;
nathan@0
    43
class cDirList;
nathan@0
    44
nathan@0
    45
// ----------------------------------------------------------------
nathan@0
    46
nathan@0
    47
class cMenuBrowse : public cOsdMenu {
nathan@0
    48
private:
nathan@0
    49
  eOSState Select(bool isred);
nathan@0
    50
  eOSState Parent(void);
nathan@0
    51
  bool LoadDir(const char *dir);
nathan@0
    52
protected:
nathan@0
    53
  static cFileObj *lastselect;
nathan@0
    54
  //
nathan@0
    55
  cDirList *list;
nathan@0
    56
  cFileSource *source;
nathan@0
    57
  bool dirselectable, withID3;
nathan@0
    58
  char *currentdir, *parent;
nathan@0
    59
  const char * const *excl;
nathan@0
    60
//
nathan@0
    61
  bool NewDir(const char *dir);
nathan@0
    62
  void SetSource(cFileSource *Source);
nathan@0
    63
  cFileObj *CurrentItem(void);
nathan@0
    64
  virtual void SetButtons(void);
nathan@0
    65
  virtual eOSState ID3Info(void);
nathan@0
    66
  virtual eOSState ProcessStdKey(eKeys Key, eOSState state);
nathan@0
    67
public:
nathan@0
    68
  cMenuBrowse(cFileSource *Source, bool Dirselect, bool WithID3, const char *title, const char * const *Excl);
nathan@0
    69
  ~cMenuBrowse();
nathan@0
    70
  static cFileObj *GetSelected(void) { return lastselect; }
nathan@0
    71
  };
nathan@0
    72
nathan@0
    73
// ----------------------------------------------------------------
nathan@0
    74
nathan@0
    75
class cMenuSource : public cOsdMenu {
nathan@0
    76
private:
nathan@0
    77
  static cFileSource *selected;
nathan@0
    78
  cFileSource *current;
nathan@0
    79
  //
nathan@0
    80
  eOSState Mount(void);
nathan@0
    81
  eOSState Unmount(void);
nathan@0
    82
  eOSState Eject(void);
nathan@0
    83
  eOSState Select(void);
nathan@0
    84
  bool DoMount(cFileSource *src);
nathan@0
    85
  bool CheckMount(void);
nathan@0
    86
public:
nathan@0
    87
  cMenuSource(cFileSources *Sources, const char *title);
nathan@0
    88
  virtual eOSState ProcessKey(eKeys Key);
nathan@0
    89
  static cFileSource *GetSelected(void) { return selected; }
nathan@0
    90
  };
nathan@0
    91
nathan@0
    92
// ----------------------------------------------------------------
nathan@0
    93
nathan@0
    94
class cProgressBar : public cBitmap {
nathan@0
    95
public:
nathan@0
    96
  cProgressBar(int Width, int Height, int Current, int Total);
nathan@0
    97
  };
nathan@0
    98
nathan@0
    99
#endif //___MENU_H