KiCad PCB EDA Suite
Loading...
Searching...
No Matches
panel_data_collection.cpp
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
25
26#include <advanced_config.h>
27#include <app_monitor.h>
28#include <bitmaps.h>
29#include <dialog_shim.h>
30#include <kiface_base.h>
31#include <kiplatform/policy.h>
32#include <kiplatform/ui.h>
33#include <policy_keys.h>
34#include <id.h>
37
38
39PANEL_DATA_COLLECTION::PANEL_DATA_COLLECTION( std::shared_ptr<PANEL_DATA_COLLECTION_MODEL> aModel,
40 wxWindow* aParent, bool aWizard ) :
42 m_model( aModel ), m_wizard( aWizard )
43{
44}
45
46
48 PANEL_DATA_COLLECTION_BASE( aParent ), m_wizard( false )
49{
50 m_model = std::make_shared<PANEL_DATA_COLLECTION_MODEL>();
51}
52
53
55{
56 if( !m_wizard )
57 {
59
60 KIPLATFORM::POLICY::PBOOL policyState =
62
64 Disable();
65
66 m_sentryUid->SetValue( APP_MONITOR::SENTRY::Instance()->GetSentryId() );
67 }
68 else
69 {
70 m_sentryUid->Hide();
71 m_buttonResetId->Hide();
72 }
73
74 return true;
75}
76
77
79{
80 m_model->m_enableSentry = m_cbOptIn->GetValue();
81
82 if( !m_wizard )
84
85 return true;
86}
87
88
93
94
99
100
101void PANEL_DATA_COLLECTION::OnResetIdClick( wxCommandEvent& aEvent )
102{
104 m_sentryUid->SetValue( APP_MONITOR::SENTRY::Instance()->GetSentryId() );
105}
void SetSentryOptIn(bool aOptIn)
static SENTRY * Instance()
PANEL_DATA_COLLECTION_BASE(wxWindow *parent, wxWindowID id=wxID_ANY, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxSize(-1,-1), long style=wxTAB_TRAVERSAL, const wxString &name=wxEmptyString)
PANEL_DATA_COLLECTION(std::shared_ptr< PANEL_DATA_COLLECTION_MODEL > model, wxWindow *aParent, bool aWizard=true)
std::shared_ptr< PANEL_DATA_COLLECTION_MODEL > m_model
bool TransferDataFromWindow() override
virtual void OnResetIdClick(wxCommandEvent &aEvent) override
void ResetPanel() override
Reset the contents of this panel.
PBOOL GetPolicyBool(const wxString &aKey)
#define POLICY_KEY_DATACOLLECTION
Definition policy_keys.h:30