Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
berryConstants.cpp
Go to the documentation of this file.
1 /*===================================================================
2 
3 BlueBerry Platform
4 
5 Copyright (c) German Cancer Research Center,
6 Division of Medical and Biological Informatics.
7 All rights reserved.
8 
9 This software is distributed WITHOUT ANY WARRANTY; without
10 even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 A PARTICULAR PURPOSE.
12 
13 See LICENSE.txt or http://www.mitk.org for details.
14 
15 ===================================================================*/
16 
17 #include "berryConstants.h"
18 
19 namespace berry
20 {
21 
22 const int Constants::NONE = 0;
23 const int Constants::DEFAULT = -1;
24 const int Constants::DRAG = 1;
25 const int Constants::CENTER = 1 << 24;
26 const int Constants::HORIZONTAL = 1 << 8;
27 const int Constants::VERTICAL = 1 << 9;
28 const int Constants::MIN = 1 << 7;
29 const int Constants::MAX = 1 << 10;
30 const int Constants::UP = 1 << 7;
31 const int Constants::TOP = Constants::UP;
32 const int Constants::DOWN = 1 << 10;
34 const int Constants::LEAD = 1 << 14;
36 const int Constants::TRAIL = 1 << 17;
38 const int Constants::FILL = 4;
39 const int Constants::WRAP = 1 << 6;
40 const int Constants::BORDER = 1 << 11;
41 const int Constants::CLOSE = 1 << 6;
42 const int Constants::TOOL = 1 << 2;
43 const int Constants::RESIZE = 1 << 4;
44 const int Constants::TITLE = 1 << 5;
45 const int Constants::SHELL_TRIM = Constants::BORDER| Constants::CLOSE | Constants::TITLE | Constants::MIN | Constants::MAX | Constants::RESIZE;
46 const int Constants::DIALOG_TRIM = Constants::TITLE | Constants::CLOSE | Constants::BORDER;
47 const int Constants::MODELESS = 0;
48 const int Constants::PRIMARY_MODAL = 1 << 15;
49 const int Constants::APPLICATION_MODAL = 1 << 16;
50 const int Constants::SYSTEM_MODAL = 1 << 17;
51 
52 }
static const int NONE
static const int LEFT
static const int RIGHT
static const int DRAG
static const int BOTTOM
static const int CENTER
static const int FILL
static const int WRAP
static const int SHELL_TRIM
static const int TITLE
static const int LEAD
static const int HORIZONTAL
static const int BORDER
static const int SYSTEM_MODAL
static const int UP
static const int RESIZE
static const int TRAIL
static const int PRIMARY_MODAL
static const int MAX
static const int CLOSE
static const int TOOL
static const int DEFAULT
static const int MODELESS
static const int MIN
static const int APPLICATION_MODAL
static const int VERTICAL
static const int DOWN
static const int DIALOG_TRIM
static const int TOP