]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - plugins/textool/2DView.h
initial
[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     {
46       ViewState = View_Idle; 
47       m_bDoGrid = false;
48       m_bPopup = false;
49     }
50   ~C2DView() { }
51   void SetGrid( float xGridStep, float yGridStep )
52     {   m_bDoGrid = true; m_GridStep[0] = xGridStep; m_GridStep[1] = yGridStep; }
53
54   // get window coordinates for space coordinates
55   void WindowForSpace( int &x, int &y, const float c[2]);
56   void SpaceForWindow( float c[2], int x, int y);
57   void GridForWindow( float c[2], int x, int y);
58   qboolean DoesSelect( int x, int y, float c[2] );
59   void PreparePaint();
60
61   bool OnRButtonDown (int x, int y);
62   bool OnMouseMove (int x, int y);
63   bool OnRButtonUp (int x, int y);
64   bool OnKeyDown (char *s);
65
66   void ZoomIn();
67   void ZoomOut();
68 };
69
70 #endif