wip: ini parse baseline
This commit is contained in:
parent
8e93120555
commit
8e07b1efdd
9 changed files with 356 additions and 27 deletions
11
src/global.h
11
src/global.h
|
|
@ -10,8 +10,10 @@
|
|||
#include <string>
|
||||
#include <bitset>
|
||||
#include <locale>
|
||||
#include <map>
|
||||
|
||||
#include "debug.h"
|
||||
//#include "settings.h"
|
||||
|
||||
//TODO: Use tr();? QTranslator
|
||||
#define STRING_MUTE "Mute"
|
||||
|
|
@ -30,12 +32,17 @@
|
|||
#define STRING_CP "Open Control Panel"
|
||||
#define STRING_ABOUT "About"
|
||||
#define STRING_STARTUP "Run at startup"
|
||||
#define STRING_CHANNELS "Show endpoint channels"
|
||||
|
||||
#define STRING_NOENDPOINT "No active endpoints"
|
||||
|
||||
#define LSTRING_UNNAMED_SESSION L"Unnamed session"
|
||||
|
||||
|
||||
//INIT BACK
|
||||
|
||||
|
||||
|
||||
enum ProcessedNativeEvent {
|
||||
NONE = 0,
|
||||
COLORS = (1 << 0),
|
||||
|
|
@ -92,7 +99,11 @@ struct NGuid {
|
|||
/* }while (i < 8); */
|
||||
/* } */
|
||||
};
|
||||
namespace ini {
|
||||
class UserSettings;
|
||||
}
|
||||
|
||||
extern ini::UserSettings *set;
|
||||
class OverseerHandler;
|
||||
extern OverseerHandler *osh;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue