You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.2 KiB
C++
40 lines
1.2 KiB
C++
/*
|
|
SPDX-FileCopyrightText: 2021 Michail Vourlakos <mvourlakos@gmail.com>
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef CONTEXTMENUDATA_H
|
|
#define CONTEXTMENUDATA_H
|
|
|
|
// Qt
|
|
#include <QStringList>
|
|
|
|
namespace Latte {
|
|
namespace Data {
|
|
namespace ContextMenu {
|
|
|
|
static const char ADDVIEWACTION[]= "_add_view";
|
|
static const char LAYOUTSACTION[] = "_layouts";
|
|
static const char PREFERENCESACTION[] = "_preferences";
|
|
static const char QUITLATTEACTION[] = "_quit_latte";
|
|
static const char ADDWIDGETSACTION[] = "_add_latte_widgets";
|
|
static const char DUPLICATEVIEWACTION[] = "_duplicate_view";
|
|
static const char EDITVIEWACTION[] = "_edit_view";
|
|
static const char EXPORTVIEWTEMPLATEACTION[] = "_export_view";
|
|
static const char REMOVEVIEWACTION[] = "_remove_view";
|
|
static const char MOVEVIEWACTION[] = "_move_view";
|
|
static const char SEPARATOR1ACTION[] = "_separator1";
|
|
|
|
static QStringList ACTIONSALWAYSVISIBLE = {LAYOUTSACTION,
|
|
PREFERENCESACTION,
|
|
QUITLATTEACTION,
|
|
SEPARATOR1ACTION,
|
|
ADDWIDGETSACTION,
|
|
ADDVIEWACTION};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif
|