]> git.lyx.org Git - lyx.git/blob - src/paper.h
Add GTK bibitem dialog
[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 ///
19 enum PAPER_SIZE {
20         ///
21         PAPER_DEFAULT,
22         ///
23         PAPER_CUSTOM,
24         ///
25         PAPER_USLETTER,
26         ///
27         PAPER_USLEGAL,
28         ///
29         PAPER_USEXECUTIVE,
30         ///
31         PAPER_A3,
32         ///
33         PAPER_A4,
34         ///
35         PAPER_A5,
36         ///
37         PAPER_B3,
38         ///
39         PAPER_B4,
40         ///
41         PAPER_B5
42 };
43
44 ///
45 enum PAPER_ORIENTATION {
46         ///
47         ORIENTATION_PORTRAIT,
48         ///
49         ORIENTATION_LANDSCAPE
50 };
51 #endif