swift
datasettingscomponent.cpp
1 // SPDX-FileCopyrightText: Copyright (C) 2015 swift Project Community / Contributors
2 // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
3 
5 
6 #include "ui_datasettingscomponent.h"
7 
8 using namespace swift::gui;
9 using namespace swift::core::db;
10 
11 namespace swift::gui::components
12 {
13  CDataSettingsComponent::CDataSettingsComponent(QWidget *parent)
14  : COverlayMessagesFrame(parent), ui(new Ui::CDataSettingsComponent)
15  {
16  ui->setupUi(this);
17  ui->comp_GuiSettings->hideOpacity(true);
18  }
19 
21 
23  {
24  ui->comp_ModelSettings->setBackgroundUpdater(updater);
25  }
26 } // namespace swift::gui::components
Update and consolidation of DB data.
Using this class provides a QFrame with the overlay functionality already integrated.
void setBackgroundUpdater(const swift::core::db::CBackgroundDataUpdater *updater)
Background updater.
Classes interacting with the swift database (aka "datastore").
High level reusable GUI components.
Definition: aboutdialog.cpp:13
GUI related classes.