00001 /*------------------------------------------------------------------------ 00002 *--------------------- WMPSNIFFER -------------------- 00003 *------------------------------------------------------------------------ 00004 * V7.0B 11/05/10 00005 * 00006 * 00007 * File: MyArea_glade.cc 00008 * Authors: Danilo Tardioli 00009 * ---------------------------------------------------------------------- 00010 * Copyright (C) 2000-2012, Universidad de Zaragoza, SPAIN 00011 * 00012 * Contact Addresses: Danilo Tardioli dantard@unizar.es 00013 * 00014 * RT-WMP is free software; you can redistribute it and/or modify it 00015 * under the terms of the GNU General Public License as published by the 00016 * Free Software Foundation; either version 2, or (at your option) any 00017 * later version. 00018 * 00019 * RT-WMP is distributed in the hope that it will be useful, but 00020 * WITHOUT ANY WARRANTY; without even the implied warranty of 00021 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00022 * General Public License for more details. 00023 * 00024 * You should have received a copy of the GNU General Public License 00025 * distributed with RT-WMP; see file COPYING. If not, write to the 00026 * Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 00027 * 02111-1307, USA. 00028 * 00029 * As a special exception, if you link this unit with other files to 00030 * produce an executable, this unit does not by itself cause the 00031 * resulting executable to be covered by the GNU General Public License. 00032 * This exception does not however invalidate any other reasons why the 00033 * executable file might be covered by the GNU Public License. 00034 * 00035 *----------------------------------------------------------------------*/ 00036 00037 #if defined __GNUC__ && __GNUC__ < 3 00038 #error This program will crash if compiled with g++ 2.x 00039 // see the dynamic_cast bug in the gtkmm FAQ 00040 #endif // 00041 #include "config.h" 00042 #include <gtkmmconfig.h> 00043 #if GTKMM_MAJOR_VERSION==2 && GTKMM_MINOR_VERSION>2 00044 #define GMM_GTKMM_22_24(a,b) b 00045 #else //gtkmm 2.2 00046 #define GMM_GTKMM_22_24(a,b) a 00047 #endif // 00048 #include "MyArea_glade.hh" 00049 00050 MyArea_glade::MyArea_glade(GlademmData *gmm_data 00051 ) 00052 { MyArea = this; 00053 MyArea->set_events(Gdk::POINTER_MOTION_MASK); 00054 MyArea->show(); 00055 MyArea->signal_button_press_event().connect(sigc::mem_fun(*this, &MyArea_glade::on_MyArea_button_press_event), false); 00056 MyArea->signal_button_release_event().connect(sigc::mem_fun(*this, &MyArea_glade::on_MyArea_button_release_event), false); 00057 MyArea->signal_motion_notify_event().connect(sigc::mem_fun(*this, &MyArea_glade::on_MyArea_motion_notify_event), false); 00058 } 00059 00060 MyArea_glade::~MyArea_glade() 00061 { 00062 }