mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
6c300f72a2
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15422 a592a061-630c-0410-9148-cb99ea01b6c8
58 lines
773 B
C++
58 lines
773 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
|
|
|
|
namespace lyx {
|
|
|
|
///
|
|
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
|
|
};
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
#endif
|