]> git.lyx.org Git - lyx.git/blob - src/paper.h
Changed references as to where/how known issues are shown, i.e. added reference to...
[lyx.git] / src / paper.h
1 // -*- C++ -*-
2 /**
3  * \file paper.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Jean-Marc Lasgouttes
8  *
9  * Full author contact details are available in file CREDITS.
10  *
11  * A trivial header file to hold paper-related enums. It should later
12  * expand to contain many paper-related horrors access.
13  */
14
15 #ifndef PAPER_H
16 #define PAPER_H
17
18 namespace lyx {
19
20 ///
21 enum PAPER_SIZE {
22         ///
23         PAPER_DEFAULT,
24         ///
25         PAPER_CUSTOM,
26         ///
27         PAPER_USLETTER,
28         ///
29         PAPER_USLEGAL,
30         ///
31         PAPER_USEXECUTIVE,
32         ///
33         PAPER_A3,
34         ///
35         PAPER_A4,
36         ///
37         PAPER_A5,
38         ///
39         PAPER_B3,
40         ///
41         PAPER_B4,
42         ///
43         PAPER_B5
44 };
45
46 ///
47 enum PAPER_ORIENTATION {
48         ///
49         ORIENTATION_PORTRAIT,
50         ///
51         ORIENTATION_LANDSCAPE
52 };
53
54 } // namespace lyx
55
56
57 #endif