]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/bobtoolz/DListener.h
uncrustify! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / contrib / bobtoolz / DListener.h
1 /*
2    BobToolz plugin for GtkRadiant
3    Copyright (C) 2001 Gordon Biggans
4
5    This library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
9
10    This library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
14
15    You should have received a copy of the GNU Lesser General Public
16    License along with this library; if not, write to the Free Software
17    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 // DListener.h: interface for the DListener class.
21 //
22 //////////////////////////////////////////////////////////////////////
23
24 #if !defined( AFX_DLISTENER_H__53EBE342_F0B2_11D4_ACF7_004095A18133__INCLUDED_ )
25 #define AFX_DLISTENER_H__53EBE342_F0B2_11D4_ACF7_004095A18133__INCLUDED_
26
27 #if _MSC_VER > 1000
28 #pragma once
29 #endif // _MSC_VER > 1000
30
31 #include "DBobView.h"
32
33 class DListener : public IWindowListener
34 {
35 public:
36 DBobView* parent;
37
38 bool OnMouseMove( guint32 nFlags, gdouble x, gdouble y );
39 bool OnLButtonDown( guint32 nFlags, gdouble x, gdouble y );
40 bool OnMButtonDown( guint32 nFlags, gdouble x, gdouble y );
41 bool OnRButtonDown( guint32 nFlags, gdouble x, gdouble y );
42 bool OnLButtonUp( guint32 nFlags, gdouble x, gdouble y );
43 bool OnMButtonUp( guint32 nFlags, gdouble x, gdouble y );
44 bool OnRButtonUp( guint32 nFlags, gdouble x, gdouble y );
45 bool OnKeyPressed( char *s ) { return false; }
46 bool Paint() { return true; }
47 void Close() { }
48
49 void UnRegister();
50 void Register();
51 DListener();
52 virtual ~DListener();
53
54 void IncRef() { refCount++; }
55 void DecRef() {
56         refCount--; if ( refCount <= 0 ) {
57                 delete this;
58         }
59 }
60
61 private:
62 bool m_bHooked;
63 int refCount;
64 };
65
66 #endif // !defined(AFX_DLISTENER_H__53EBE342_F0B2_11D4_ACF7_004095A18133__INCLUDED_)