File indexing completed on 2024-05-05 16:13:56

0001 /*
0002     This file is part of the KDE project
0003     SPDX-FileCopyrightText: 2000, 2005 Alexander Neundorf <neundorf@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #ifndef __SMBRODLG_H
0009 #define __SMBRODLG_H
0010 
0011 #include <QCheckBox>
0012 #include <QLineEdit>
0013 #include <QWidget>
0014 
0015 #include <KCModule>
0016 
0017 class KComboBox;
0018 
0019 class SMBRoOptions : public KCModule
0020 {
0021     Q_OBJECT
0022 public:
0023     SMBRoOptions(QWidget *parent, const QVariantList &args);
0024     ~SMBRoOptions() override;
0025 
0026     void load() override;
0027     void save() override;
0028     void defaults() override;
0029     QString quickHelp() const override;
0030 
0031 private Q_SLOTS:
0032     void changed();
0033 
0034 private:
0035     QLineEdit *m_userLe;
0036     QLineEdit *m_passwordLe;
0037     //      QLineEdit *m_workgroupLe; //currently unused, Alex
0038     //      QCheckBox *m_showHiddenShares; //currently unused, Alex
0039     //      KComboBox *m_encodingList; //currently unused
0040 };
0041 
0042 #endif