File indexing completed on 2025-02-09 05:58:23
0001 /* 0002 This configuration page takes care of all settings concerning the 0003 user interface 0004 0005 SPDX-FileCopyrightText: 2006-2022 Alexander Reinholdt <alexander.reinholdt@kdemail.net> 0006 SPDX-License-Identifier: GPL-2.0-or-later 0007 */ 0008 0009 #ifndef SMB4KCONFIGPAGEUSERINTERFACE_H 0010 #define SMB4KCONFIGPAGEUSERINTERFACE_H 0011 0012 // Qt includes 0013 #include <QWidget> 0014 0015 /** 0016 * The configuration page for the user interface of Smb4K. 0017 * 0018 * @author Alexander Reinholdt <alexander.reinholdt@kdemail.net> 0019 */ 0020 0021 class Smb4KConfigPageUserInterface : public QWidget 0022 { 0023 Q_OBJECT 0024 0025 public: 0026 /** 0027 * The constructor 0028 * 0029 * @param parent The parent widget of this class. 0030 */ 0031 explicit Smb4KConfigPageUserInterface(QWidget *parent = nullptr); 0032 0033 /** 0034 * The destructor 0035 */ 0036 ~Smb4KConfigPageUserInterface(); 0037 }; 0038 0039 #endif