]> git.xonotic.org Git - xonotic/netradiant.git/blob - libs/gtkutil/xorrectangle.h
-DGTK_DISABLE_SINGLE_INCLUDES
[xonotic/netradiant.git] / libs / gtkutil / xorrectangle.h
1 /*
2    Copyright (C) 2001-2006, William Joseph.
3    All Rights Reserved.
4
5    This file is part of GtkRadiant.
6
7    GtkRadiant is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    GtkRadiant is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with GtkRadiant; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20  */
21
22 #if !defined ( INCLUDED_XORRECTANGLE_H )
23 #define INCLUDED_XORRECTANGLE_H
24
25 #include <gtk/gtk.h>
26 #include <uilib/uilib.h>
27 #include "math/vector.h"
28
29 class rectangle_t
30 {
31 public:
32 rectangle_t()
33         : x( 0 ), y( 0 ), w( 0 ), h( 0 )
34 {}
35 rectangle_t( float _x, float _y, float _w, float _h )
36         : x( _x ), y( _y ), w( _w ), h( _h )
37 {}
38 float x;
39 float y;
40 float w;
41 float h;
42 };
43
44 struct Coord2D
45 {
46         float x, y;
47         Coord2D( float _x, float _y )
48                 : x( _x ), y( _y ){
49         }
50 };
51
52 inline Coord2D coord2d_device2screen( const Coord2D& coord, unsigned int width, unsigned int height ){
53         return Coord2D( ( ( coord.x + 1.0f ) * 0.5f ) * width, ( ( coord.y + 1.0f ) * 0.5f ) * height );
54 }
55
56 inline rectangle_t rectangle_from_area( const float min[2], const float max[2], unsigned int width, unsigned int height ){
57         Coord2D botleft( coord2d_device2screen( Coord2D( min[0], min[1] ), width, height ) );
58         Coord2D topright( coord2d_device2screen( Coord2D( max[0], max[1] ), width, height ) );
59         return rectangle_t( botleft.x, botleft.y, topright.x - botleft.x, topright.y - botleft.y );
60 }
61
62 class XORRectangle
63 {
64
65 rectangle_t m_rectangle;
66
67 GtkWidget* m_widget;
68 GdkGC* m_gc;
69
70 bool initialised() const {
71         return m_gc != 0;
72 }
73 void lazy_init(){
74         if ( !initialised() ) {
75                 m_gc = gdk_gc_new( m_widget->window );
76
77                 GdkColor color = { 0, 0xffff, 0xffff, 0xffff, };
78                 GdkColormap* colormap = gdk_window_get_colormap( m_widget->window );
79                 gdk_colormap_alloc_color( colormap, &color, FALSE, TRUE );
80                 gdk_gc_copy( m_gc, m_widget->style->white_gc );
81                 gdk_gc_set_foreground( m_gc, &color );
82                 gdk_gc_set_background( m_gc, &color );
83
84                 gdk_gc_set_function( m_gc, GDK_INVERT );
85         }
86 }
87 void draw() const {
88         const int x = float_to_integer( m_rectangle.x );
89         const int y = float_to_integer( m_rectangle.y );
90         const int w = float_to_integer( m_rectangle.w );
91         const int h = float_to_integer( m_rectangle.h );
92         gdk_draw_rectangle( m_widget->window, m_gc, FALSE, x, -( h ) - ( y - m_widget->allocation.height ), w, h );
93 }
94
95 public:
96 XORRectangle( ui::Widget widget ) : m_widget( widget ), m_gc( 0 ){
97 }
98 ~XORRectangle(){
99         if ( initialised() ) {
100                 gdk_gc_unref( m_gc );
101         }
102 }
103 void set( rectangle_t rectangle ){
104         if ( GTK_WIDGET_REALIZED( m_widget ) ) {
105                 lazy_init();
106                 draw();
107                 m_rectangle = rectangle;
108                 draw();
109         }
110 }
111 };
112
113
114 #endif