]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - plugins/textool/2DView.h
Merge remote-tracking branch 'ttimo/master'
[xonotic/netradiant.git] / plugins / textool / 2DView.h
1 /*
2    Copyright (C) 1999-2006 Id Software, Inc. and contributors.
3    For a list of contributors, see the accompanying CONTRIBUTORS file.
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 //-----------------------------------------------------------------------------
23 //
24 // DESCRIPTION:
25 // a class to provide basic services for 2D view of a world
26 // window <-> local 2D space transforms
27 // snap to grid
28 // TODO: this one could be placed under an interface, and provided to the editor as a service
29
30 #ifndef _2DVIEW_H_
31 #define _2DVIEW_H_
32
33 class C2DView
34 {
35 enum      E2DViewState { View_Idle, View_Move } ViewState;
36 int m_xPosMove, m_yPosMove;
37 float m_MinsMove[2], m_MaxsMove[2];
38 qboolean m_bDoGrid;
39 float m_GridStep[2];
40 qboolean m_bPopup;
41 public:
42 RECT m_rect;
43 float m_Mins[2],m_Maxs[2],m_Center[2];
44 C2DView(){
45         ViewState = View_Idle;
46         m_bDoGrid = false;
47         m_bPopup = false;
48 }
49 ~C2DView() { }
50 void SetGrid( float xGridStep, float yGridStep )
51 {   m_bDoGrid = true; m_GridStep[0] = xGridStep; m_GridStep[1] = yGridStep; }
52
53 // get window coordinates for space coordinates
54 void WindowForSpace( int &x, int &y, const float c[2] );
55 void SpaceForWindow( float c[2], int x, int y );
56 void GridForWindow( float c[2], int x, int y );
57 qboolean DoesSelect( int x, int y, float c[2] );
58 void PreparePaint();
59
60 bool OnRButtonDown( int x, int y );
61 bool OnMouseMove( int x, int y );
62 bool OnRButtonUp( int x, int y );
63 bool OnKeyDown( char *s );
64
65 void ZoomIn();
66 void ZoomOut();
67 };
68
69 #endif