~librecad-dev/librecad/librecad

« back to all changes in this revision

Viewing changes to librecad/src/lib/gui/rs_grid.h

  • Committer: Scott Howard
  • Date: 2014-02-21 19:07:55 UTC
  • Revision ID: showard@debian.org-20140221190755-csjax9wb146hgdq4
first commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** This file is part of the LibreCAD project, a 2D CAD program
 
4
**
 
5
** Copyright (C) 2010 R. van Twisk (librecad@rvt.dds.nl)
 
6
** Copyright (C) 2001-2003 RibbonSoft. All rights reserved.
 
7
**
 
8
**
 
9
** This file may be distributed and/or modified under the terms of the
 
10
** GNU General Public License version 2 as published by the Free Software
 
11
** Foundation and appearing in the file gpl-2.0.txt included in the
 
12
** packaging of this file.
 
13
**
 
14
** This program is distributed in the hope that it will be useful,
 
15
** but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
** GNU General Public License for more details.
 
18
**
 
19
** You should have received a copy of the GNU General Public License
 
20
** along with this program; if not, write to the Free Software
 
21
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
22
**
 
23
** This copyright notice MUST APPEAR in all copies of the script!
 
24
**
 
25
**********************************************************************/
 
26
 
 
27
 
 
28
#ifndef RS_GRID_H
 
29
#define RS_GRID_H
 
30
 
 
31
#include "rs_graphicview.h"
 
32
#include "rs_vector.h"
 
33
 
 
34
/**
 
35
 * This class represents a grid. Grids can be drawn on graphic
 
36
 * views and snappers can snap to the grid points.
 
37
 *
 
38
 * @author Andrew Mustun
 
39
 */
 
40
class RS_Grid {
 
41
public:
 
42
    RS_Grid(RS_GraphicView* graphicView);
 
43
    ~RS_Grid();
 
44
 
 
45
    void updatePointArray();
 
46
 
 
47
        /**
 
48
         * @return Array of all visible grid points.
 
49
         */
 
50
    RS_Vector* getPoints() {
 
51
        return pt;
 
52
    }
 
53
    /**
 
54
      *@return the closest grid point
 
55
      */
 
56
    RS_Vector snapGrid(const RS_Vector& coord) const;
 
57
 
 
58
        /**
 
59
         * @return Number of visible grid points.
 
60
         */
 
61
    int count() {
 
62
        return number;
 
63
    }
 
64
    void setCrosshairType(RS2::CrosshairType chType){
 
65
        crosshairType=chType;
 
66
    }
 
67
    RS2::CrosshairType getCrosshairType(){
 
68
        return crosshairType;
 
69
    }
 
70
 
 
71
        /**
 
72
         * @return Current grid spacing.
 
73
         */
 
74
        //double getSpacing() {
 
75
        //      return spacing;
 
76
        //}
 
77
 
 
78
        /**
 
79
         * @return Current meta grid spacing.
 
80
         */
 
81
        //double getMetaSpacing() {
 
82
        //      return metaSpacing;
 
83
        //}
 
84
 
 
85
        /**
 
86
         * @return Grid info for status widget.
 
87
         */
 
88
        QString getInfo() {
 
89
                return QString("%1 / %2").arg(spacing).arg(metaSpacing);
 
90
        }
 
91
 
 
92
        /**
 
93
         * @return Meta grid positions in X.
 
94
         */
 
95
        double* getMetaX() {
 
96
                return metaX;
 
97
        }
 
98
 
 
99
        /**
 
100
         * @return Number of visible meta grid lines in X.
 
101
         */
 
102
    int countMetaX() {
 
103
        return numMetaX;
 
104
    }
 
105
 
 
106
        /**
 
107
         * @return Meta grid positions in Y.
 
108
         */
 
109
        double* getMetaY() {
 
110
                return metaY;
 
111
        }
 
112
 
 
113
        /**
 
114
         * @return Number of visible meta grid lines in Y.
 
115
         */
 
116
    int countMetaY() {
 
117
        return numMetaY;
 
118
    }
 
119
    bool isIsometric() const{
 
120
        return isometric;
 
121
    }
 
122
    void setIsometric(bool b){
 
123
        isometric=b;
 
124
    }
 
125
    RS_Vector getMetaGridWidth() const {
 
126
        return metaGridWidth;
 
127
    }
 
128
    RS_Vector getCellVector()
 
129
    {
 
130
        return cellV;
 
131
    }
 
132
 
 
133
protected:
 
134
    //! Graphic view this grid is connected to.
 
135
    RS_GraphicView* graphicView;
 
136
 
 
137
        //! Current grid spacing
 
138
        double spacing;
 
139
        //! Current meta grid spacing
 
140
        double metaSpacing;
 
141
 
 
142
    //! Pointer to array of grid points
 
143
    RS_Vector* pt;
 
144
    RS_Vector baseGrid; // the left-bottom grid point
 
145
    RS_Vector cellV;// (dx,dy)
 
146
    RS_Vector metaGridWidth;
 
147
    //! Number of points in the array
 
148
    int number;
 
149
        //! Meta grid positions in X
 
150
        double* metaX;
 
151
        //! Number of meta grid lines in X
 
152
        int numMetaX;
 
153
        //! Meta grid positions in Y
 
154
        double* metaY;
 
155
        //! Number of meta grid lines in Y
 
156
        int numMetaY;
 
157
    bool isometric;
 
158
    RS2::CrosshairType crosshairType;
 
159
 
 
160
};
 
161
 
 
162
#endif