Warning, file /utilities/print-manager/add-printer/ChooseLpd.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_LPD_H 0008 #define CHOOSE_LPD_H 0009 0010 #include "GenericPage.h" 0011 0012 namespace Ui { 0013 class ChooseLpd; 0014 } 0015 class ChooseLpd : public GenericPage 0016 { 0017 Q_OBJECT 0018 public: 0019 explicit ChooseLpd(QWidget *parent = nullptr); 0020 ~ChooseLpd() 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 on_addressLE_textChanged(const QString &text); 0029 0030 private slots: 0031 void checkSelected(); 0032 0033 private: 0034 Ui::ChooseLpd *ui; 0035 bool m_isValid; 0036 }; 0037 0038 #endif