File indexing completed on 2024-05-19 16:31:57

0001 /*
0002  *  SPDX-FileCopyrightText: 2009 David Hubner <hubnerd@ntlworld.com>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  *
0006  */
0007 
0008 #ifndef DEVINFO
0009 #define DEVINFO
0010 
0011 // kde
0012 #include <KCModule>
0013 
0014 class QLabel;
0015 class QGridLayout;
0016 
0017 class DevInfoPlugin : public KCModule
0018 {
0019     Q_OBJECT
0020 
0021 public:
0022     explicit DevInfoPlugin(QWidget *parent, const QVariantList &);
0023     ~DevInfoPlugin() override;
0024 
0025     void updateStatus(const QString &uid);
0026 
0027 private:
0028     QGridLayout *layout;
0029     QLabel *udiStatus;
0030 };
0031 
0032 #endif // DEVINFO