00001 /* *********************************************************************************** 00002 Writer: Sebastien Bloc 00003 Copyright: 2004 00004 eMail: sebastien.bloc@free.fr 00005 URL: http://mignonsoft.free.fr 00006 00007 This program is free software; you can redistribute it and/or 00008 modify it under the terms of the GNU General Public License 00009 as published by the Free Software Foundation; either version 2 00010 of the License, or (at your option) any later version. 00011 00012 This program is distributed in the hope that it will be useful, 00013 but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 GNU General Public License for more details. 00016 http://www.gnu.org/copyleft/gpl.html 00017 *********************************************************************************** */ 00018 00023 #ifndef INCLUDE_PICKING_H 00024 #define INCLUDE_PICKING_H 00025 00026 #include "3d.h" 00027 #include "input.h" 00028 00029 #define MAX_BUFFER_SELECT 512 // taille du buffer du picking 00030 00031 class Control; 00035 class Picking 00036 { 00037 public: 00038 StateMouse mouse,oldMouse; 00039 Control *control; 00040 int idFace; 00041 double zDist; 00042 BOOL isMoving; 00043 00044 public: 00045 void operator=(Picking &scr); 00046 BOOL Test(); 00047 void SetMousePos(int x,int y); 00048 void SetDeltaWheel(int delta); 00049 00050 void OnMouseMove(int x,int y); 00051 void OnMouseWheel(int delta); 00052 void OnLButtonUp(); 00053 void OnMButtonUp(); 00054 void OnRButtonUp(); 00055 }; 00056 00057 #endif