]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - plugins/textool/2DView.h
Merge branch 'fix-fast' into '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     enum E2DViewState { View_Idle, View_Move } ViewState;
35     int m_xPosMove, m_yPosMove;
36     float m_MinsMove[2], m_MaxsMove[2];
37     qboolean m_bDoGrid;
38     float m_GridStep[2];
39     qboolean m_bPopup;
40 public:
41     RECT m_rect;
42     float m_Mins[2], m_Maxs[2], m_Center[2];
43
44     C2DView()
45     {
46         ViewState = View_Idle;
47         m_bDoGrid = false;
48         m_bPopup = false;
49     }
50
51     ~C2DView()
52     {}
53
54     void SetGrid(float xGridStep, float yGridStep)
55     {
56         m_bDoGrid = true;
57         m_GridStep[0] = xGridStep;
58         m_GridStep[1] = yGridStep;
59     }
60
61 // get window coordinates for space coordinates
62     void WindowForSpace(int &x, int &y, const float c[2]);
63
64     void SpaceForWindow(float c[2], int x, int y);
65
66     void GridForWindow(float c[2], int x, int y);
67
68     qboolean DoesSelect(int x, int y, float c[2]);
69
70     void PreparePaint();
71
72     bool OnRButtonDown(int x, int y);
73
74     bool OnMouseMove(int x, int y);
75
76     bool OnRButtonUp(int x, int y);
77
78     bool OnKeyDown(char *s);
79
80     void ZoomIn();
81
82     void ZoomOut();
83 };
84
85 #endif