2024-02-17 22:51:19 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2014 Hugo Pereira Da Costa <hugo.pereira@free.fr>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
|
|
|
|
2024-08-09 01:20:25 +00:00
|
|
|
#pragma once
|
2024-02-17 22:51:19 +00:00
|
|
|
|
|
|
|
namespace Breeze
|
|
|
|
{
|
|
|
|
struct PropertyNames {
|
|
|
|
static const char noAnimations[];
|
|
|
|
static const char noWindowGrab[];
|
|
|
|
static const char netWMForceShadow[];
|
|
|
|
static const char netWMSkipShadow[];
|
|
|
|
static const char sidePanelView[];
|
|
|
|
static const char toolButtonAlignment[];
|
|
|
|
static const char alteredBackground[];
|
|
|
|
static const char highlightNeutral[];
|
|
|
|
static const char noSeparator[];
|
|
|
|
static const char isTopMenu[];
|
2024-08-09 01:20:25 +00:00
|
|
|
static const char menuSeamlessEdges[];
|
2024-02-17 22:51:19 +00:00
|
|
|
static const char bordersSides[];
|
2024-08-09 01:20:25 +00:00
|
|
|
static const char forceFrame[];
|
|
|
|
static const char statusBarSeparator[];
|
2024-02-17 22:51:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|