DOSBox-X
|
00001 /* 00002 * Copyright (C) 2002-2020 The DOSBox Team 00003 * 00004 * This program is free software; you can redistribute it and/or modify 00005 * it under the terms of the GNU General Public License as published by 00006 * the Free Software Foundation; either version 2 of the License, or 00007 * (at your option) any later version. 00008 * 00009 * This program is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 * GNU General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU General Public License along 00015 * with this program; if not, write to the Free Software Foundation, Inc., 00016 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 00017 */ 00018 00019 00020 00021 #ifndef DOSBOX_MOUSE_H 00022 #define DOSBOX_MOUSE_H 00023 00024 enum MOUSE_EMULATION 00025 { 00026 MOUSE_EMULATION_NEVER, 00027 MOUSE_EMULATION_ALWAYS, 00028 MOUSE_EMULATION_INTEGRATION, 00029 MOUSE_EMULATION_LOCKED, 00030 }; 00031 00032 bool Mouse_SetPS2State(bool use); 00033 00034 void Mouse_ChangePS2Callback(Bit16u pseg, Bit16u pofs); 00035 00036 00037 void Mouse_CursorMoved(float xrel,float yrel,float x,float y,bool emulate); 00038 #if defined(WIN32) 00039 const char* Mouse_GetSelected(int x1, int y1, int x2, int y2, int w, int h, Bit16u *textlen); 00040 void Mouse_Select(int x1, int y1, int x2, int y2, int w, int h); 00041 void Restore_Text(int x1, int y1, int x2, int y2, int w, int h); 00042 #endif 00043 void Mouse_ButtonPressed(Bit8u button); 00044 void Mouse_ButtonReleased(Bit8u button); 00045 00046 void Mouse_AutoLock(bool enable); 00047 bool Mouse_IsLocked(); 00048 void Mouse_BeforeNewVideoMode(bool setmode); 00049 void Mouse_AfterNewVideoMode(bool setmode); 00050 00051 #endif