1*2b949d04SAndroid Build Coastguard Worker// XFree86 special keysyms. 2*2b949d04SAndroid Build Coastguard Worker 3*2b949d04SAndroid Build Coastguard Workerdefault partial xkb_compatibility "basic" { 4*2b949d04SAndroid Build Coastguard Worker 5*2b949d04SAndroid Build Coastguard Worker interpret.repeat= True; 6*2b949d04SAndroid Build Coastguard Worker 7*2b949d04SAndroid Build Coastguard Worker interpret XF86_Switch_VT_1 { 8*2b949d04SAndroid Build Coastguard Worker action = SwitchScreen(Screen=1, !SameServer); 9*2b949d04SAndroid Build Coastguard Worker }; 10*2b949d04SAndroid Build Coastguard Worker interpret XF86_Switch_VT_2 { 11*2b949d04SAndroid Build Coastguard Worker action = SwitchScreen(Screen=2, !SameServer); 12*2b949d04SAndroid Build Coastguard Worker }; 13*2b949d04SAndroid Build Coastguard Worker interpret XF86_Switch_VT_3 { 14*2b949d04SAndroid Build Coastguard Worker action = SwitchScreen(Screen=3, !SameServer); 15*2b949d04SAndroid Build Coastguard Worker }; 16*2b949d04SAndroid Build Coastguard Worker interpret XF86_Switch_VT_4 { 17*2b949d04SAndroid Build Coastguard Worker action = SwitchScreen(Screen=4, !SameServer); 18*2b949d04SAndroid Build Coastguard Worker }; 19*2b949d04SAndroid Build Coastguard Worker interpret XF86_Switch_VT_5 { 20*2b949d04SAndroid Build Coastguard Worker action = SwitchScreen(Screen=5, !SameServer); 21*2b949d04SAndroid Build Coastguard Worker }; 22*2b949d04SAndroid Build Coastguard Worker interpret XF86_Switch_VT_6 { 23*2b949d04SAndroid Build Coastguard Worker action = SwitchScreen(Screen=6, !SameServer); 24*2b949d04SAndroid Build Coastguard Worker }; 25*2b949d04SAndroid Build Coastguard Worker interpret XF86_Switch_VT_7 { 26*2b949d04SAndroid Build Coastguard Worker action = SwitchScreen(Screen=7, !SameServer); 27*2b949d04SAndroid Build Coastguard Worker }; 28*2b949d04SAndroid Build Coastguard Worker interpret XF86_Switch_VT_8 { 29*2b949d04SAndroid Build Coastguard Worker action = SwitchScreen(Screen=8, !SameServer); 30*2b949d04SAndroid Build Coastguard Worker }; 31*2b949d04SAndroid Build Coastguard Worker interpret XF86_Switch_VT_9 { 32*2b949d04SAndroid Build Coastguard Worker action = SwitchScreen(Screen=9, !SameServer); 33*2b949d04SAndroid Build Coastguard Worker }; 34*2b949d04SAndroid Build Coastguard Worker interpret XF86_Switch_VT_10 { 35*2b949d04SAndroid Build Coastguard Worker action = SwitchScreen(Screen=10, !SameServer); 36*2b949d04SAndroid Build Coastguard Worker }; 37*2b949d04SAndroid Build Coastguard Worker interpret XF86_Switch_VT_11 { 38*2b949d04SAndroid Build Coastguard Worker action = SwitchScreen(Screen=11, !SameServer); 39*2b949d04SAndroid Build Coastguard Worker }; 40*2b949d04SAndroid Build Coastguard Worker interpret XF86_Switch_VT_12 { 41*2b949d04SAndroid Build Coastguard Worker action = SwitchScreen(Screen=12, !SameServer); 42*2b949d04SAndroid Build Coastguard Worker }; 43*2b949d04SAndroid Build Coastguard Worker 44*2b949d04SAndroid Build Coastguard Worker interpret XF86LogGrabInfo { 45*2b949d04SAndroid Build Coastguard Worker action = Private(type=0x86, data="PrGrbs"); 46*2b949d04SAndroid Build Coastguard Worker }; 47*2b949d04SAndroid Build Coastguard Worker interpret XF86LogWindowTree { 48*2b949d04SAndroid Build Coastguard Worker action = Private(type=0x86, data="PrWins"); 49*2b949d04SAndroid Build Coastguard Worker }; 50*2b949d04SAndroid Build Coastguard Worker 51*2b949d04SAndroid Build Coastguard Worker interpret XF86_Next_VMode { 52*2b949d04SAndroid Build Coastguard Worker action = Private(type=0x86, data="+VMode"); 53*2b949d04SAndroid Build Coastguard Worker }; 54*2b949d04SAndroid Build Coastguard Worker interpret XF86_Prev_VMode { 55*2b949d04SAndroid Build Coastguard Worker action = Private(type=0x86, data="-VMode"); 56*2b949d04SAndroid Build Coastguard Worker }; 57*2b949d04SAndroid Build Coastguard Worker}; 58*2b949d04SAndroid Build Coastguard Worker 59*2b949d04SAndroid Build Coastguard Workerpartial xkb_compatibility "grab_break" { 60*2b949d04SAndroid Build Coastguard Worker interpret XF86_Ungrab { 61*2b949d04SAndroid Build Coastguard Worker action = Private(type=0x86, data="Ungrab"); 62*2b949d04SAndroid Build Coastguard Worker }; 63*2b949d04SAndroid Build Coastguard Worker interpret XF86_ClearGrab { 64*2b949d04SAndroid Build Coastguard Worker action = Private(type=0x86, data="ClsGrb"); 65*2b949d04SAndroid Build Coastguard Worker }; 66*2b949d04SAndroid Build Coastguard Worker}; 67