lyx_mirror/src/paper.h
Jürgen Spitzmüller 9bd413bfd7 fix bug 2148 (preferences saves wrong papersizes); also finally dispose dead PAPER_PACKAGES enum
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10657 a592a061-630c-0410-9148-cb99ea01b6c8
2005-12-12 11:13:03 +00:00

52 lines
734 B
C++

// -*- C++ -*-
/**
* \file paper.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Jean-Marc Lasgouttes
*
* Full author contact details are available in file CREDITS.
*
* A trivial header file to hold paper-related enums. It should later
* expand to contain many paper-related horrors access.
*/
#ifndef PAPER_H
#define PAPER_H
///
enum PAPER_SIZE {
///
PAPER_DEFAULT,
///
PAPER_CUSTOM,
///
PAPER_USLETTER,
///
PAPER_USLEGAL,
///
PAPER_USEXECUTIVE,
///
PAPER_A3,
///
PAPER_A4,
///
PAPER_A5,
///
PAPER_B3,
///
PAPER_B4,
///
PAPER_B5
};
///
enum PAPER_ORIENTATION {
///
ORIENTATION_PORTRAIT,
///
ORIENTATION_LANDSCAPE
};
#endif