📄 xsniffer.c
字号:
/* Ogle - A video player * Copyright (C) 2000, 2001 Vilhelm Bergman * * This program 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; either version 2 of the License, or * (at your option) any later version. * * This program 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 this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */#include <stdio.h>#include <stdlib.h>#include <unistd.h>#include <X11/Xlib.h>#include <X11/Xutil.h>#include <X11/keysym.h>#include <ogle/dvdcontrol.h>#include <ogle/msgevents.h>#include "xsniffer.h"#include "bindings.h"extern DVDNav_t *nav;void* xsniff_mouse(void* args) { MsgEvent_t mev; while(1) { if(DVDNextEvent(nav, &mev) != DVD_E_Ok) exit(1); switch(mev.type) { //case MotionNotify: case MsgEventQInputPointerMotion: { DVDResult_t res; int x, y; x = mev.input.x; y = mev.input.y; res = DVDMouseSelect(nav, x, y); if(res != DVD_E_Ok) { fprintf(stderr, "DVDMouseSelect failed. Returned: %d\n", res); } } /* { pointer_mapping_t p_ev; p_ev.type = PointerMotion; p_ev.time = mev.input.time; p_ev.x = mev.input.x; p_ev.y = mev.input.y; p_ev.modifier_mask = mev.mod_mask; do_pointer_action(&p_ev); } */ break; case MsgEventQInputButtonPress: switch(mev.input.input) { case 0x1: { DVDResult_t res; int x, y; x = mev.input.x; y = mev.input.y; res = DVDMouseActivate(nav, x, y); if(res != DVD_E_Ok) { fprintf(stderr, "DVDMouseActivate failed. Returned: %d\n", res); } } break; case 0x2: break; case 0x3: break; } break; case MsgEventQInputKeyPress: { KeySym keysym; keysym = mev.input.input; /* fprintf(stderr, "keysym: %ld, modifier: %ld\n", mev.input.input, mev.input.mod_mask); */ do_keysym_action(keysym); } break; default: break; } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -