Warning, file /utilities/print-manager/add-printer/ChooseSamba.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002     SPDX-FileCopyrightText: 2010 Daniel Nicoletti <dantti12@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef CHOOSE_SAMBA_H
0008 #define CHOOSE_SAMBA_H
0009 
0010 #include "GenericPage.h"
0011 
0012 namespace Ui {
0013     class ChooseSamba;
0014 }
0015 class ChooseSamba : public GenericPage
0016 {
0017     Q_OBJECT
0018 public:
0019     explicit ChooseSamba(QWidget *parent = nullptr);
0020     ~ChooseSamba() override;
0021 
0022     void setValues(const QVariantHash &args) override;
0023     QVariantHash values() const override;
0024     bool isValid() const override;
0025     bool canProceed() const override;
0026 
0027 public slots:
0028     void load();
0029 
0030 private slots:
0031     void checkSelected();
0032 
0033 private:
0034     Ui::ChooseSamba *ui;
0035 };
0036 
0037 #endif