KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dialog_position_relative.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 (C) 2017-2022 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 __DIALOG_POSITION_RELATIVE__
25#define __DIALOG_POSITION_RELATIVE__
26
27// Include the wxFormBuider header base:
28#include <vector>
30
31#include <tool/tool_manager.h>
32#include <widgets/unit_binder.h>
34
36{
37public:
38 // Constructor and destructor
41
42 void UpdateAnchor( EDA_ITEM* aItem );
43 void UpdateAnchor( std::optional<VECTOR2I> aPoint );
44
45private:
49 void OnTextFocusLost( wxFocusEvent& event ) override;
50
51 void OnPolarChanged( wxCommandEvent& event ) override;
52 void OnClear( wxCommandEvent& event ) override;
53
54 void OnSelectItemClick( wxCommandEvent& event ) override;
55 void OnSelectPointClick( wxCommandEvent& event ) override;
56 void OnUseGridOriginClick( wxCommandEvent& event ) override;
57 void OnUseUserOriginClick( wxCommandEvent& event ) override;
58 void OnOkClick( wxCommandEvent& event ) override;
59
65 void ToPolarDeg( double x, double y, double& r, EDA_ANGLE& q );
66
74 bool getTranslationInIU( VECTOR2I& val, bool polar );
75
76 // Update controls and their labels after changing the coordinates type (polar/cartesian)
77 void updateDialogControls( bool aPolar );
78
79 // Update controls and labels after changing anchor type
80 void updateAnchorInfo( BOARD_ITEM* aItem );
81
82 // Get the current anchor position.
84
89 {
94 };
95
97 {
100 double entry1;
101 double entry2;
102
105 polarCoords( false ),
106 entry1( 0 ),
107 entry2( 0 )
108 {
109 }
110 };
111
112 // persistent settings
114
117
120
121 double m_stateX;
122 double m_stateY;
125};
126
127#endif // __DIALOG_POSITION_RELATIVE__
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition: board_item.h:80
Class DIALOG_POSITION_RELATIVE_BASE.
bool getTranslationInIU(VECTOR2I &val, bool polar)
Get the (Cartesian) translation described by the text entries.
void OnUseGridOriginClick(wxCommandEvent &event) override
void OnPolarChanged(wxCommandEvent &event) override
void OnOkClick(wxCommandEvent &event) override
void updateAnchorInfo(BOARD_ITEM *aItem)
void OnClear(wxCommandEvent &event) override
static POSITION_RELATIVE_OPTIONS m_options
void OnSelectItemClick(wxCommandEvent &event) override
void OnSelectPointClick(wxCommandEvent &event) override
void OnTextFocusLost(wxFocusEvent &event) override
Reset a text field to be 0 if it was exited while blank.
void OnUseUserOriginClick(wxCommandEvent &event) override
ANCHOR_TYPE
Persistent dialog options.
void ToPolarDeg(double x, double y, double &r, EDA_ANGLE &q)
Convert a given Cartesian point into a polar representation.
A base class for most all the KiCad significant classes used in schematics and boards.
Definition: eda_item.h:89
Base PCB main window class for Pcbnew, Gerbview, and CvPcb footprint viewer.
Master controller class:
Definition: tool_manager.h:62