File indexing completed on 2023-10-01 08:44:27
0001 /*************************************************************************** 0002 This configuration page takes care of all settings concerning the 0003 user interface 0004 ------------------- 0005 begin : Mi Aug 30 2006 0006 copyright : (C) 2006-2019 by Alexander Reinholdt 0007 email : alexander.reinholdt@kdemail.net 0008 ***************************************************************************/ 0009 0010 /*************************************************************************** 0011 * This program is free software; you can redistribute it and/or modify * 0012 * it under the terms of the GNU General Public License as published by * 0013 * the Free Software Foundation; either version 2 of the License, or * 0014 * (at your option) any later version. * 0015 * * 0016 * This program is distributed in the hope that it will be useful, but * 0017 * WITHOUT ANY WARRANTY; without even the implied warranty of * 0018 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 0019 * General Public License for more details. * 0020 * * 0021 * You should have received a copy of the GNU General Public License * 0022 * along with this program; if not, write to the * 0023 * Free Software Foundation, Inc., 51 Franklin Street, Suite 500, Boston,* 0024 * MA 02110-1335, USA * 0025 ***************************************************************************/ 0026 0027 #ifndef SMB4KCONFIGPAGEUSERINTERFACE_H 0028 #define SMB4KCONFIGPAGEUSERINTERFACE_H 0029 0030 // Qt includes 0031 #include <QTabWidget> 0032 0033 0034 /** 0035 * The configuration page for the user interface of Smb4K. 0036 * 0037 * @author Alexander Reinholdt <alexander.reinholdt@kdemail.net> 0038 */ 0039 0040 class Smb4KConfigPageUserInterface : public QWidget 0041 { 0042 Q_OBJECT 0043 0044 public: 0045 /** 0046 * The constructor 0047 * 0048 * @param parent The parent widget of this class. 0049 */ 0050 explicit Smb4KConfigPageUserInterface(QWidget *parent = 0); 0051 0052 /** 0053 * The destructor 0054 */ 0055 ~Smb4KConfigPageUserInterface(); 0056 }; 0057 0058 #endif