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