OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / analyzerbase / analyzerconstants.h
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Author: Nicolas Arnaud-Cormos, KDAB (nicolas.arnaud-cormos@kdab.com)
8 **
9 ** Contact: Nokia Corporation (info@qt.nokia.com)
10 **
11 **
12 ** GNU Lesser General Public License Usage
13 **
14 ** This file may be used under the terms of the GNU Lesser General Public
15 ** License version 2.1 as published by the Free Software Foundation and
16 ** appearing in the file LICENSE.LGPL included in the packaging of this file.
17 ** Please review the following information to ensure the GNU Lesser General
18 ** Public License version 2.1 requirements will be met:
19 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
20 **
21 ** In addition, as a special exception, Nokia gives you certain additional
22 ** rights. These rights are described in the Nokia Qt LGPL Exception
23 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
24 **
25 ** Other Usage
26 **
27 ** Alternatively, this file may be used in accordance with the terms and
28 ** conditions contained in a signed written agreement between you and Nokia.
29 **
30 ** If you have questions regarding the use of this file, please contact
31 ** Nokia at qt-info@nokia.com.
32 **
33 **************************************************************************/
34
35 #ifndef ANALYZERCONSTANTS_H
36 #define ANALYZERCONSTANTS_H
37
38 #include <QtCore/QtGlobal>
39
40 namespace Analyzer {
41 namespace Constants {
42
43 // modes and their priorities
44 const char * const MODE_ANALYZE   = "Analyzer.Mode.Analyze";
45 const int          P_MODE_ANALYZE = 76;
46
47 // context
48 const char * const C_ANALYZEMODE = "Analyzer.AnalyzeMode";
49
50 // menu
51 const char * const M_TOOLS_ANALYZER = "Analyzer.Tools.Menu";
52
53 const char * const START = "Analyzer.Start";
54 const char * const STOP = "Analyzer.Stop";
55
56 // options dialog
57 const char * const ANALYZER_SETTINGS_CATEGORY = "T.Analyzer";
58 const char * const ANALYZER_SETTINGS_TR_CATEGORY =
59     QT_TRANSLATE_NOOP("Analyzer", "Analyzer");
60 const char * const ANALYZER_SETTINGS_CATEGORY_ICON =
61     ":/images/analyzer_category.png";
62
63 const char * const ANALYZERTASK_ID = "Analyzer.TaskId";
64
65 } // namespace Constants
66 } // namespace Analyzer
67
68 #endif // ANALYZERCONSTANTS_H