Adding DEVICE_TYPE_MICROPHONE to enum
+ Adding microphone icons for light and dark theme + Adding entry into OpenRGBDialog2 to display icon + Creating `Microphone` category in "Supported Devices" + Changing Razer Seiren Emote to a `Microphone`
This commit is contained in:
parent
9786ad5e16
commit
70fdf54d5e
8 changed files with 22 additions and 5 deletions
|
|
@ -86,7 +86,7 @@ public:
|
|||
unsigned int brightness_max; /*brightness max value */
|
||||
unsigned int colors_min; /* minimum number of mode colors*/
|
||||
unsigned int colors_max; /* maximum numver of mode colors*/
|
||||
|
||||
|
||||
/*--------------------------------------------------------------*\
|
||||
| Mode Settings |
|
||||
\*--------------------------------------------------------------*/
|
||||
|
|
@ -153,6 +153,9 @@ typedef struct
|
|||
|
||||
/*------------------------------------------------------------------*\
|
||||
| Device Types |
|
||||
| The enum order should be maintained as is for the API however |
|
||||
| DEVICE_TYPE_UNKNOWN needs to remain last. Any new device types |
|
||||
| need to be inserted at the end of the list but before unknown. |
|
||||
\*------------------------------------------------------------------*/
|
||||
typedef int device_type;
|
||||
|
||||
|
|
@ -174,7 +177,8 @@ enum
|
|||
DEVICE_TYPE_VIRTUAL,
|
||||
DEVICE_TYPE_STORAGE,
|
||||
DEVICE_TYPE_CASE,
|
||||
DEVICE_TYPE_UNKNOWN
|
||||
DEVICE_TYPE_MICROPHONE,
|
||||
DEVICE_TYPE_UNKNOWN,
|
||||
};
|
||||
|
||||
/*------------------------------------------------------------------*\
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue