~ubuntu-branches/ubuntu/quantal/pdf-presenter-console/quantal

« back to all changes in this revision

Viewing changes to src/classes/options.vala

  • Committer: Package Import Robot
  • Author(s): Barak A. Pearlmutter
  • Date: 2012-06-27 12:13:08 UTC
  • mfrom: (3.1.13 sid)
  • Revision ID: package-import@ubuntu.com-20120627121308-1o56k7h3o1xl1ta3
Tags: 3.1-1
* Move man page tweak to quilt patch
* New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
2
 * Application wide options
3
3
 *
4
 
 * This file is part of pdf-presenter-console.
 
4
 * This file is part of pdfpc.
5
5
 *
6
6
 * Copyright (C) 2010-2011 Jakob Westhoff <jakob@westhoffswelt.de>
7
7
 * 
20
20
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21
21
 */
22
22
 
23
 
namespace org.westhoffswelt.pdfpresenter {
 
23
namespace pdfpc {
24
24
    /**
25
25
     * Static property container holding the application wide option
26
26
     * information and their default values.
38
38
        public static bool single_screen = false;
39
39
        
40
40
        /**
 
41
         * Commandline option to run in windowed mode
 
42
         */
 
43
        public static bool windowed = false;
 
44
        
 
45
        /**
41
46
         * Commandline option which allows the complete disabling of slide caching
42
47
         */
43
48
        public static bool disable_caching = false;
89
94
         * Add a black slide at the end of the presentation
90
95
         */
91
96
        public static bool black_on_end = false;
 
97
 
 
98
        /**
 
99
         * Show the actions supported in the config file(s)
 
100
         */
 
101
        public static bool list_actions = false;
92
102
    }
93
103
}