/* * * kryptomedia - Another KDE cryto media application. * * Copyright (C) 2006 Daniel Gollub * * * This file is part of kryptomedia. * * kbluetooth is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * libkbluetooth is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with libkbluetooth; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * */ #ifndef DIALOG_H_ #define DIALOG_H_ #include #include #include #include #include #include #include #include #include #include #include #include #include "decryptdialog.h" #include "kryptomediadevice.h" class KryptoMedia; class Dialog : public KDialogBase { Q_OBJECT public: Dialog(QValueVector *devices); ~Dialog(); QString getPassword(); public slots: void slotDialogError(QString errorName, QString errorMsg); void slotPasswordChanged(const QString &text); void setCurrentDevice(QListViewItem* cur); private: void setDeviceIcon(QString deviceType); DecryptDialog *decryptDialog; static Dialog *_ctx; QString mDevice; QValueVector *mDevices; signals: void udiChanged(QString&); }; #endif // DIALOG_H_