File: options.h

package info (click to toggle)
gst123 0.4.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 788 kB
  • sloc: cpp: 3,353; sh: 1,256; ansic: 98; makefile: 30
file content (60 lines) | stat: -rw-r--r-- 1,955 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/* GST123 - GStreamer based command line media player
 * Copyright (C) 2010 Stefan Westerfeld
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General
 * Public License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
 * Boston, MA 02111-1307, USA.
 */
#ifndef GST123_OPTIONS_H
#define GST123_OPTIONS_H

#include <string>
#include <list>
#include <glib.h>

class Options
{
  static Options *instance;

  static gboolean print_version (const gchar *option_name, const gchar *value, gpointer data, GError **error);
  static gboolean print_full_version (const gchar *option_name, const gchar *value, gpointer data, GError **error);
  static gboolean add_playlist (const gchar *option_name, const gchar *value, gpointer data, GError **error);

public:
  std::string	program_name; /* FIXME: what to do with that */
  std::string   usage;

  // variables filled via command line options:
  gboolean      verbose;
  gboolean      shuffle;
  gboolean      repeat;
  gboolean      novideo;
  gboolean      print_visualization_list;
  double        skip;
  double        initial_volume;
  gboolean      quiet;
  gboolean      fullscreen;
  char        **uris;
  std::list<std::string>  playlists;
  char         *audio_output;
  char         *subtitle;
  char         *visualization;

  Options ();
  void parse (int argc, char **argv);

  static const Options& the();
};

#endif