2023-05-23 07:15:42 +02:00
|
|
|
// Copyright (C) 2023 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <utils/icon.h>
|
|
|
|
|
|
|
|
|
|
namespace Terminal {
|
|
|
|
|
|
|
|
|
|
static Utils::Icon NEW_TERMINAL_ICON(
|
|
|
|
|
{{":/terminal/images/terminal.png", Utils::Theme::IconsBaseColor},
|
|
|
|
|
{":/utils/images/iconoverlay_add_small.png", Utils::Theme::IconsRunToolBarColor}});
|
|
|
|
|
|
|
|
|
|
static Utils::Icon CLOSE_TERMINAL_ICON(
|
|
|
|
|
{{":/terminal/images/terminal.png", Utils::Theme::IconsBaseColor},
|
|
|
|
|
{":/utils/images/iconoverlay_close_small.png", Utils::Theme::IconsStopToolBarColor}});
|
|
|
|
|
|
2023-06-08 15:46:14 +02:00
|
|
|
static Utils::Icon LOCK_KEYBOARD_ICON(
|
|
|
|
|
{{":/terminal/images/keyboardlock.png", Utils::Theme::IconsBaseColor},
|
|
|
|
|
{":/codemodel/images/private.png", Utils::Theme::IconsBaseColor}});
|
|
|
|
|
|
|
|
|
|
static Utils::Icon UNLOCK_KEYBOARD_ICON(
|
|
|
|
|
{{":/terminal/images/keyboardlock.png", Utils::Theme::IconsBaseColor}});
|
|
|
|
|
|
2023-05-23 07:15:42 +02:00
|
|
|
} // namespace Terminal
|