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
44private:
48 void OnTextFocusLost( wxFocusEvent& event ) override;
49
50 void OnPolarChanged( wxCommandEvent& event ) override;
51 void OnClear( wxCommandEvent& event ) override;
52
53 void OnSelectItemClick( wxCommandEvent& event ) override;
54 void OnUseGridOriginClick( wxCommandEvent& event ) override;
55 void OnUseUserOriginClick( wxCommandEvent& event ) override;
56 void OnOkClick( wxCommandEvent& event ) override;
57
63 void ToPolarDeg( double x, double y, double& r, EDA_ANGLE& q );
64
72 bool getTranslationInIU( VECTOR2I& val, bool polar );
73
74 // Update controls and their labels after changing the coordinates type (polar/cartesian)
75 void updateDialogControls( bool aPolar );
76
77 // Update controls and labels after changing anchor type
78 void updateAnchorInfo( BOARD_ITEM* aItem );
79
80 // Get the current anchor position.
82
87 {
91 };
92
94 {
97 double entry1;
98 double entry2;
99
102 polarCoords( false ),
103 entry1( 0 ),
104 entry2( 0 )
105 {
106 }
107 };
108
109 // persistent settings
111
114
117
118 double m_stateX;
119 double m_stateY;
122};
123
124#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:77
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 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:88
Base PCB main window class for Pcbnew, Gerbview, and CvPcb footprint viewer.
Master controller class:
Definition: tool_manager.h:57