Even though the last alpha was .91 this one is going to be 82 as I'd like to have...
[kdevelopdvcssupport.git] / sublime / sublimedefs.h
blob0a1ee098b86cd0b5d47f94fd59f1387d2a4d76d2
1 /***************************************************************************
2 * Copyright 2006-2007 Alexander Dymo <adymo@kdevelop.org> *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU Library General Public License as *
6 * published by the Free Software Foundation; either version 2 of the *
7 * License, or (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU Library General Public *
15 * License along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
18 ***************************************************************************/
19 #ifndef SUBLIMESUBLIMEDEFS_H
20 #define SUBLIMESUBLIMEDEFS_H
22 #include <QtCore/Qt>
23 #include <QtCore/QFlags>
25 #include "sublimeexport.h"
27 /**
28 @file sublimedefs.h
29 @brief Sublime UI enums and other common definitions
32 namespace Sublime {
34 /**Positions for toolviews in Sublime UI. To combine them, use
35 Positions class (QFlags based).*/
36 enum Position
38 Left = 1 /**< left toolview position */,
39 Right = 2 /**< right toolview position */,
40 Top = 4 /**< top toolview position */,
41 Bottom = 8 /**< bottom toolview position */,
42 AllPositions = Left|Right|Top|Bottom /**< all toolview positions */
44 Q_DECLARE_FLAGS(Positions, Position)
46 SUBLIME_EXPORT Position dockAreaToPosition(Qt::DockWidgetArea dockArea);
50 Q_DECLARE_OPERATORS_FOR_FLAGS(Sublime::Positions)
52 #endif