Volker Hilsheimer 1f0c629a48 Move the settingseditor example into tests/manual
The example uses QTreeWidget when it should use a QTreeView with a
dedicated item model, primarily shows how to use item views (and very
little about QSettings), and is generally not useful to show how an
application could or should use QSettings to store settings.

Turn it into a manual test instead; it's useful for that as it supports
ini and plist files, and settings in different scopes.

Fixes: QTBUG-119978
Change-Id: I7ce039f6391c41c679d126d90a251eee60327c39
Reviewed-by: Ed Cooke <ed.cooke@qt.io>
Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
(cherry picked from commit bddf27cd5a5412c8282fab43111e7319874ca44e)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
2023-12-15 17:21:32 +00:00

50 lines
1.0 KiB
C++

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#ifndef LOCATIONDIALOG_H
#define LOCATIONDIALOG_H
#include <QDialog>
#include <QSettings>
QT_BEGIN_NAMESPACE
class QComboBox;
class QDialogButtonBox;
class QGroupBox;
class QLabel;
class QTableWidget;
class QTableWidgetItem;
QT_END_NAMESPACE
class LocationDialog : public QDialog
{
Q_OBJECT
public:
LocationDialog(QWidget *parent = nullptr);
QSettings::Format format() const;
QSettings::Scope scope() const;
QString organization() const;
QString application() const;
private slots:
void updateLocationsTable();
void itemActivated(QTableWidgetItem *);
private:
QLabel *formatLabel;
QLabel *scopeLabel;
QLabel *organizationLabel;
QLabel *applicationLabel;
QComboBox *formatComboBox;
QComboBox *scopeComboBox;
QComboBox *organizationComboBox;
QComboBox *applicationComboBox;
QGroupBox *locationsGroupBox;
QTableWidget *locationsTable;
QDialogButtonBox *buttonBox;
};
#endif