File indexing completed on 2024-05-12 11:41:21

0001 /*
0002     File                 : SettingsWelcomePage.cpp
0003     Project              : LabPlot
0004     Description          : settings page for the welcome screen
0005     --------------------------------------------------------------------
0006     SPDX-FileCopyrightText: 2020 Alexander Semke <alexander.semke@web.de>
0007     SPDX-License-Identifier: GPL-2.0-or-later
0008 */
0009 
0010 #include "SettingsWelcomePage.h"
0011 
0012 /**
0013  * \brief Page for the 'General' settings of the Labplot settings dialog.
0014  */
0015 SettingsWelcomePage::SettingsWelcomePage(QWidget* parent)
0016     : SettingsPage(parent) {
0017     ui.setupUi(this);
0018 
0019     connect(ui.bResetLayout, &QPushButton::clicked, this, &SettingsWelcomePage::resetWelcomeScreen);
0020 
0021     loadSettings();
0022 }
0023 
0024 void SettingsWelcomePage::applySettings() {
0025 }
0026 
0027 void SettingsWelcomePage::restoreDefaults() {
0028 }
0029 
0030 void SettingsWelcomePage::loadSettings() {
0031 }