2013-02-15 12:49:50 +01:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2013-02-15 12:49:50 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2013-02-15 12:49:50 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2013-02-15 12:49:50 +01:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2013-02-15 12:49:50 +01:00
|
|
|
|
2014-01-30 14:27:50 +01:00
|
|
|
#include <QtGlobal>
|
|
|
|
|
|
2013-02-21 17:03:00 +01:00
|
|
|
namespace DiffEditor {
|
2013-02-15 12:49:50 +01:00
|
|
|
namespace Constants {
|
|
|
|
|
|
2016-11-24 09:58:11 +01:00
|
|
|
const char DIFF_EDITOR_PLUGIN[] = "DiffEditorPlugin";
|
|
|
|
|
|
2013-02-15 12:49:50 +01:00
|
|
|
const char DIFF_EDITOR_ID[] = "Diff Editor";
|
|
|
|
|
const char DIFF_EDITOR_DISPLAY_NAME[] = QT_TRANSLATE_NOOP("DiffEditor", "Diff Editor");
|
2014-02-13 16:43:28 +01:00
|
|
|
const char DIFF_EDITOR_MIMETYPE[] = "text/x-patch";
|
2017-05-09 12:19:11 +02:00
|
|
|
const char C_DIFF_EDITOR_DESCRIPTION[] = "DiffEditor.Description";
|
|
|
|
|
const char SIDE_BY_SIDE_VIEW_ID[] = "DiffEditor.SideBySide";
|
|
|
|
|
const char UNIFIED_VIEW_ID[] = "DiffEditor.Unified";
|
|
|
|
|
|
2013-02-15 12:49:50 +01:00
|
|
|
const char G_TOOLS_DIFF[] = "QtCreator.Group.Tools.Options";
|
|
|
|
|
|
2014-06-24 10:53:03 +03:00
|
|
|
const char EXPAND_BRANCHES[] = "Branches: <Expand>";
|
|
|
|
|
|
2013-02-15 12:49:50 +01:00
|
|
|
} // namespace Constants
|
2013-02-21 17:03:00 +01:00
|
|
|
} // namespace DiffEditor
|