Update NEWS preparing for alpha1
[lyx.git] / src / paper.h
blobd892f920949c1d96ec70cd85537da3b209372d06
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.
7 * \author Jean-Marc Lasgouttes
9 * Full author contact details are available in file CREDITS.
11 * A trivial header file to hold paper-related enums. It should later
12 * expand to contain many paper-related horrors access.
15 #ifndef PAPER_H
16 #define PAPER_H
18 namespace lyx {
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
46 ///
47 enum PAPER_ORIENTATION {
48 ///
49 ORIENTATION_PORTRAIT,
50 ///
51 ORIENTATION_LANDSCAPE
54 } // namespace lyx
57 #endif