KiCad PCB EDA Suite
Loading...
Searching...
No Matches
cursors.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright The KiCad Developers, see AUTHORS.TXT for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24#ifndef CURSOR_STORE__H
25#define CURSOR_STORE__H
26
27#include <wx/cursor.h>
28
29#include <map>
30#include <vector>
31
32
33enum class KICURSOR
34{
35 DEFAULT,
36 ARROW,
37 ARROW64,
38 MOVING,
40 PENCIL,
42 REMOVE,
44 HAND,
45 HAND64,
52 TUNE,
53 TUNE64,
54 TEXT,
55 TEXT64,
56 MEASURE,
58 ADD,
59 ADD64,
62 XOR,
63 XOR64,
64 ZOOM_IN,
86 PLACE,
88};
89
97{
98public:
103 {
106
108 const unsigned char* m_image_data;
109
111 const unsigned char* m_mask_data;
112
113 const char** m_xpm;
114
116 wxSize m_size;
117
119 wxPoint m_hotspot;
120 };
121
130 CURSOR_STORE( const std::vector<CURSOR_DEF>& aDefs );
131
137 const wxCursor& Get( KICURSOR aIdKey ) const;
138
139 static const wxCursor GetCursor( KICURSOR aCursorType );
140
141 static const wxCursor GetHiDPICursor( KICURSOR aCursorType );
142
143 static wxStockCursor GetStockCursor( KICURSOR aCursorType );
144
145private:
147 std::map<KICURSOR, wxCursor> m_store;
148};
149
150#endif // CURSOR_STORE__H
Simple class to construct and store cursors against unique ID keys.
Definition: cursors.h:97
const wxCursor & Get(KICURSOR aIdKey) const
Get a given cursor by its ID.
Definition: cursors.cpp:557
static wxStockCursor GetStockCursor(KICURSOR aCursorType)
Definition: cursors.cpp:598
static const wxCursor GetHiDPICursor(KICURSOR aCursorType)
Definition: cursors.cpp:584
static const wxCursor GetCursor(KICURSOR aCursorType)
Definition: cursors.cpp:570
std::map< KICURSOR, wxCursor > m_store
< Internal store of cursors by ID
Definition: cursors.h:147
KICURSOR
Definition: cursors.h:34
@ LABEL_GLOBAL64
@ LINE_GRAPHIC64
@ SELECT_LASSO64
@ VOLTAGE_PROBE64
@ CURRENT_PROBE64
@ SELECT_WINDOW64
Definition of a cursor.
Definition: cursors.h:103
const unsigned char * m_image_data
The mask data bitmap.
Definition: cursors.h:108
KICURSOR m_id_key
< The ID key used to uniquely identify a cursor in a given store
Definition: cursors.h:105
const char ** m_xpm
The image size in pixels.
Definition: cursors.h:113
const unsigned char * m_mask_data
Definition: cursors.h:111
wxSize m_size
The "hotspot" where the cursor "is" in the image.
Definition: cursors.h:116