Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
berryConstants.h
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 
18 #ifndef BERRYCONSTANTS_H_
19 #define BERRYCONSTANTS_H_
20 
22 
23 namespace berry
24 {
25 
27 {
36 };
37 
39 {
40 
45  static const int NONE; // = 0;
46 
47  static const int DEFAULT; // = -1
48 
53  static const int DRAG; // = 1;
54 
64  static const int CENTER; // = 1 << 24;
65 
80  static const int HORIZONTAL; // = 1 << 8;
81 
82 
98  static const int VERTICAL; // = 1 << 9;
99 
106  static const int MIN; // = 1 << 7;
107 
114  static const int MAX; // = 1 << 10;
115 
126  static const int UP; // = 1 << 7;
127 
135  static const int TOP; // = UP;
136 
147  static const int DOWN; // = 1 << 10;
148 
156  static const int BOTTOM; // = DOWN;
157 
170  static const int LEAD; // = 1 << 14;
171 
178  static const int LEFT; // = LEAD;
179 
192  static const int TRAIL; // = 1 << 17;
193 
200  static const int RIGHT; // = TRAIL;
201 
205  static const int FILL; // = 4;
206 
210  static const int WRAP; // = 1 << 6;
211 
219  static const int BORDER; // = 1 << 11;
220 
228  static const int CLOSE; // = 1 << 6;
229 
241  static const int TOOL; // = 1 << 2;
242 
250  static const int RESIZE; // = 1 << 4;
251 
258  static const int TITLE; // = 1 << 5;
259 
267  static const int SHELL_TRIM; // = CLOSE | TITLE | MIN | MAX | RESIZE;
268 
276  static const int DIALOG_TRIM; // = TITLE | CLOSE | BORDER;
277 
286  static const int MODELESS; // = 0;
287 
296  static const int PRIMARY_MODAL; // = 1 << 15;
297 
306  static const int APPLICATION_MODAL; // = 1 << 16;
307 
316  static const int SYSTEM_MODAL; // = 1 << 17;
317 };
318 
319 }
320 
321 #endif /* BERRYCONSTANTS_H_ */
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
#define BERRY_UI_QT