mirror of
https://github.com/MatMoul/g810-led.git
synced 2025-04-04 15:21:45 +00:00

Starting with GCC 13, cstdint is included by fewer headers and needs to be explicitly included in help.h, so that uint16_t is defined. See https://gcc.gnu.org/gcc-13/porting_to.html for details. Signed-off-by: Stephen Kitt <steve@sk2.org>
76 lines
2.7 KiB
C++
76 lines
2.7 KiB
C++
/*
|
|
This file is part of g810-led.
|
|
|
|
g810-led is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, version 3 of the License.
|
|
|
|
g810-led is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with g810-led. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef HELP_HELPER
|
|
#define HELP_HELPER
|
|
|
|
#include <cstdint>
|
|
#include <iostream>
|
|
|
|
namespace help {
|
|
|
|
enum class KeyboardFeatures : uint16_t {
|
|
none = 0,
|
|
rgb = 1,
|
|
intensity = 2,
|
|
commit = 4,
|
|
logo1 = 8,
|
|
logo2 = 16,
|
|
numpad = 32,
|
|
multimedia = 64,
|
|
gkeys = 128,
|
|
setall = 256,
|
|
setgroup = 512,
|
|
setkey = 1024,
|
|
setregion = 2048,
|
|
setindicators = 4096,
|
|
poweronfx = 8192,
|
|
// "user-stored lighting" can be recalled with backlight+7 on the G Pro
|
|
userstoredlighting = 16384,
|
|
onboardmode = 32768,
|
|
// fx features
|
|
|
|
all = rgb | intensity | commit | logo1 | logo2 | numpad | multimedia | gkeys |
|
|
setall | setgroup | setkey | setregion | setindicators | poweronfx | userstoredlighting | onboardmode,
|
|
|
|
g213 = rgb | logo1 | numpad | multimedia | setall | setregion | setindicators | poweronfx | userstoredlighting,
|
|
g410 = rgb | commit | setall | setgroup | setkey | poweronfx | userstoredlighting,
|
|
g413 = intensity | setall | userstoredlighting,
|
|
g512 = rgb | commit | numpad | setall | setgroup | setkey | setindicators | poweronfx | userstoredlighting,
|
|
g513 = rgb | commit | numpad | setall | setgroup | setkey | setindicators | poweronfx | userstoredlighting,
|
|
g610 = intensity | commit | logo1 | numpad | multimedia | setall | setgroup | setkey | setindicators | poweronfx | userstoredlighting,
|
|
g810 = rgb | commit | logo1 | numpad | multimedia | setall | setgroup | setkey | setindicators | poweronfx,
|
|
g815 = rgb | commit | logo1 | numpad | multimedia | gkeys | setall | setgroup | setkey | setindicators | onboardmode,
|
|
g910 = rgb | commit | logo1 | logo2 | numpad | multimedia | gkeys | setall | setgroup | setkey | setindicators | poweronfx | userstoredlighting,
|
|
gpro = rgb | commit | logo1 | setall | setgroup | setkey | setindicators | poweronfx | userstoredlighting
|
|
};
|
|
inline KeyboardFeatures operator|(KeyboardFeatures a, KeyboardFeatures b);
|
|
|
|
KeyboardFeatures getKeyboardFeatures(std::string cmdName);
|
|
|
|
void usage(char *arg0);
|
|
void keys(char *arg0);
|
|
void effects(char *arg0);
|
|
void samples(char *arg0);
|
|
|
|
}
|
|
|
|
#ifndef VERSION
|
|
#define VERSION "unspecified"
|
|
#endif
|
|
|
|
#endif
|