QTfrontend/binds.h
changeset 174 0b2c5b22f644
parent 167 805fa9a27e9e
child 176 533d03041dcd
equal deleted inserted replaced
173:004493dd60e4 174:0b2c5b22f644
    35 #define BINDS_H
    35 #define BINDS_H
    36 
    36 
    37 #include <QString>
    37 #include <QString>
    38 #include <QtGlobal>
    38 #include <QtGlobal>
    39 
    39 
    40 #define BINDS_NUMBER 26
    40 #define BINDS_NUMBER 28
    41 
    41 
    42 struct BindAction
    42 struct BindAction
    43 {
    43 {
    44 	QString action;
    44 	QString action;
    45 	QString strbind;
    45 	QString strbind;
    70 	{"timer 1",	"1",	QT_TRANSLATE_NOOP("binds", "timer 1 sec"),	false},
    70 	{"timer 1",	"1",	QT_TRANSLATE_NOOP("binds", "timer 1 sec"),	false},
    71 	{"timer 2",	"2",	QT_TRANSLATE_NOOP("binds", "timer 2 sec"),	false},
    71 	{"timer 2",	"2",	QT_TRANSLATE_NOOP("binds", "timer 2 sec"),	false},
    72 	{"timer 3",	"3",	QT_TRANSLATE_NOOP("binds", "timer 3 sec"),	false},
    72 	{"timer 3",	"3",	QT_TRANSLATE_NOOP("binds", "timer 3 sec"),	false},
    73 	{"timer 4",	"4",	QT_TRANSLATE_NOOP("binds", "timer 4 sec"),	false},
    73 	{"timer 4",	"4",	QT_TRANSLATE_NOOP("binds", "timer 4 sec"),	false},
    74 	{"timer 5",	"5",	QT_TRANSLATE_NOOP("binds", "timer 5 sec"),	true},
    74 	{"timer 5",	"5",	QT_TRANSLATE_NOOP("binds", "timer 5 sec"),	true},
       
    75 	{"+voldown",	"9",	QT_TRANSLATE_NOOP("binds", "volume down"),	false},
       
    76 	{"+volup",	"0",	QT_TRANSLATE_NOOP("binds", "volume up"),	false},
    75 	{"fullscr",	"f",	QT_TRANSLATE_NOOP("binds", "change mode"),	false},
    77 	{"fullscr",	"f",	QT_TRANSLATE_NOOP("binds", "change mode"),	false},
    76 	{"capture",	"c",	QT_TRANSLATE_NOOP("binds", "capture"),	false},
    78 	{"capture",	"c",	QT_TRANSLATE_NOOP("binds", "capture"),	false},
    77 	{"quit",	"escape",	QT_TRANSLATE_NOOP("binds", "quit"),	true}
    79 	{"quit",	"escape",	QT_TRANSLATE_NOOP("binds", "quit"),	true}
    78 };
    80 };
    79 
    81