00001 ////////////////////////////////////////////////////////////////////// 00002 // Copyright (c) 2001-2002 David Pritchard <drpritch@alumni.uwaterloo.ca> 00003 // 00004 // This program is free software; you can redistribute it and/or 00005 // modify it under the terms of the GNU Lesser General Public License 00006 // as published by the Free Software Foundation; either 00007 // version 2 of the License, or (at your option) any later 00008 // version. 00009 // 00010 // This program is distributed in the hope that it will be useful, 00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 // GNU Lesser General Public License for more details. 00014 // 00015 // You should have received a copy of the GNU Lesser General Public License 00016 // along with this program; if not, write to the Free Software 00017 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00018 00019 #include <freecloth/gfx/gfxWindowObserver.h> 00020 00021 //////////////////////////////////////////////////////////////////////////////// 00022 // LOCAL DECLARATIONS 00023 00024 //////////////////////////////////////////////////////////////////////////////// 00025 // CLASS GfxWindowObserver 00026 00027 //------------------------------------------------------------------------------ 00028 00029 GfxWindowObserver::~GfxWindowObserver() 00030 { 00031 } 00032 00033 //------------------------------------------------------------------------------ 00034 00035 void GfxWindowObserver::idleReceived() 00036 { 00037 } 00038 00039 //------------------------------------------------------------------------------ 00040 00041 void GfxWindowObserver::destroyed( GfxWindow& ) 00042 { 00043 } 00044 00045 //------------------------------------------------------------------------------ 00046 00047 void GfxWindowObserver::closeReceived( GfxWindow& ) 00048 { 00049 } 00050 00051 //------------------------------------------------------------------------------ 00052 00053 void GfxWindowObserver::displayReceived( 00054 GfxWindow& 00055 ) { 00056 } 00057 00058 //------------------------------------------------------------------------------ 00059 00060 void GfxWindowObserver::keyPressed( 00061 GfxWindow&, GfxWindow::KeyID, GfxWindow::ModBitfield 00062 ) { 00063 } 00064 00065 //------------------------------------------------------------------------------ 00066 00067 void GfxWindowObserver::keyDownReceived( 00068 GfxWindow&, GfxWindow::KeyID, GfxWindow::ModBitfield 00069 ) { 00070 } 00071 00072 //------------------------------------------------------------------------------ 00073 00074 void GfxWindowObserver::keyUpReceived( 00075 GfxWindow&, GfxWindow::KeyID, GfxWindow::ModBitfield 00076 ) { 00077 } 00078 00079 //------------------------------------------------------------------------------ 00080 00081 void GfxWindowObserver::mouseDownReceived( 00082 GfxWindow&, UInt32 x, UInt32 y, GfxWindow::ButtonID 00083 ) { 00084 } 00085 00086 //------------------------------------------------------------------------------ 00087 00088 void GfxWindowObserver::mouseUpReceived( 00089 GfxWindow&, UInt32 x, UInt32 y, GfxWindow::ButtonID 00090 ) { 00091 } 00092 00093 //------------------------------------------------------------------------------ 00094 00095 void GfxWindowObserver::mouseMoveReceived( GfxWindow&, UInt32, UInt32 ) 00096 { 00097 } 00098 00099 //------------------------------------------------------------------------------ 00100 00101 void GfxWindowObserver::windowResized( 00102 GfxWindow&, UInt32, UInt32, UInt32, UInt32 00103 ) { 00104 } 00105 00106 //------------------------------------------------------------------------------ 00107 00108 void GfxWindowObserver::uiReceived( GfxWindow&, UInt32 ) 00109 { 00110 }