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, see <https://www.gnu.org/licenses/>.
18 */
19
21
22#include <advanced_config.h>
23#include <app_monitor.h>
24#include <bitmaps.h>
25#include <dialog_shim.h>
26#include <kiface_base.h>
27#include <kiplatform/policy.h>
28#include <kiplatform/ui.h>
29#include <policy_keys.h>
30#include <id.h>
33
34
35PANEL_DATA_COLLECTION::PANEL_DATA_COLLECTION( std::shared_ptr<PANEL_DATA_COLLECTION_MODEL> aModel,
36 wxWindow* aParent, bool aWizard ) :
38 m_model( aModel ), m_wizard( aWizard )
39{
40}
41
42
44 PANEL_DATA_COLLECTION_BASE( aParent ), m_wizard( false )
45{
46 m_model = std::make_shared<PANEL_DATA_COLLECTION_MODEL>();
47}
48
49
51{
52 if( !m_wizard )
53 {
55
56 KIPLATFORM::POLICY::PBOOL policyState =
58
60 Disable();
61
62 m_sentryUid->SetValue( APP_MONITOR::SENTRY::Instance()->GetSentryId() );
63 }
64 else
65 {
66 m_sentryUid->Hide();
67 m_buttonResetId->Hide();
68 }
69
70 return true;
71}
72
73
75{
76 m_model->m_enableSentry = m_cbOptIn->GetValue();
77
78 if( !m_wizard )
80
81 return true;
82}
83
84
89
90
95
96
97void PANEL_DATA_COLLECTION::OnResetIdClick( wxCommandEvent& aEvent )
98{
100 m_sentryUid->SetValue( APP_MONITOR::SENTRY::Instance()->GetSentryId() );
101}
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:26