Files
Seth Hillbrand d9a3c17991 Fix startup wizard skipping privacy settings after migration
When the user imported settings from a previous version during the
startup wizard, the settings provider's Finish() reloaded all settings
from the migrated files. This changed the in-memory state so
data_collection_prompt became true (from the old version). The Finish
loop then re-evaluated NeedsUserInput() for each provider, causing
the privacy provider to be skipped

Fix this by tracking which providers had their wizard pages shown
using a flag

Fixes https://gitlab.com/kicad/code/kicad/-/issues/23051
2026-02-22 19:11:17 -08:00

63 lines
1.8 KiB
C++

/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2023 Mark Roszko <[email protected]>
* Copyright (C) 1992-2023 KiCad Developers, see AUTHORS.txt for contributors.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef STARTWIZARD_PROVIDER_H
#define STARTWIZARD_PROVIDER_H
#include <wx/string.h>
class wxWizardPageSimple;
class wxPanel;
class wxWindow;
class STARTWIZARD;
class KICOMMON_API STARTWIZARD_PROVIDER
{
public:
STARTWIZARD_PROVIDER( const wxString& aPageName ) :
m_pageName( aPageName ),
m_wasShown( false )
{}
virtual ~STARTWIZARD_PROVIDER() = default;
virtual wxString Name() const = 0;
virtual bool NeedsUserInput() const { return false; }
virtual wxPanel* GetWizardPanel( wxWindow* aParent, STARTWIZARD* aWizard ) { return nullptr; }
const wxString& GetPageName() const { return m_pageName; }
bool WasShown() const { return m_wasShown; }
void SetWasShown( bool aShown ) { m_wasShown = aShown; }
virtual void Finish() {}
/// Apply whatever actions and settings should happen if the user cancels the startup wizard
virtual void ApplyDefaults() {}
private:
wxString m_pageName;
bool m_wasShown;
};
#endif