From 50b48aec6ddd451a6d1709c0942477b503457663 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 3 Feb 2010 02:15:56 +0000 Subject: Added abandoned KDE3 version of K3B git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1084400 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/k3bmediaselectiondialog.h | 87 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 src/k3bmediaselectiondialog.h (limited to 'src/k3bmediaselectiondialog.h') diff --git a/src/k3bmediaselectiondialog.h b/src/k3bmediaselectiondialog.h new file mode 100644 index 0000000..317767d --- /dev/null +++ b/src/k3bmediaselectiondialog.h @@ -0,0 +1,87 @@ +/* + * + * $Id: sourceheader 380067 2005-01-19 13:03:46Z trueg $ + * Copyright (C) 2005 Sebastian Trueg + * + * This file is part of the K3b project. + * Copyright (C) 1998-2007 Sebastian Trueg + * + * This program 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. + * See the file "COPYING" for the exact licensing terms. + */ + +#ifndef _K3B_MEDIA_SELECTION_DIALOG_H_ +#define _K3B_MEDIA_SELECTION_DIALOG_H_ + +#include +#include + +class K3bMediaSelectionComboBox; +namespace K3bDevice { + class Device; +} + +class K3bMediaSelectionDialog : public KDialogBase +{ + Q_OBJECT + + public: + /** + * Do not use the constructor. Use the static method instead. + */ + K3bMediaSelectionDialog( QWidget* parent = 0, + const QString& title = QString::null, + const QString& text = QString::null, + bool modal = false ); + ~K3bMediaSelectionDialog(); + + /** + * \see K3bMediaSelectionComboBox::setWantedMediumType() + */ + void setWantedMediumType( int type ); + + /** + * \see K3bMediaSelectionComboBox::setWantedMediumState() + */ + void setWantedMediumState( int state ); + + /** + * \see K3bMediaSelectionComboBox::setWantedMediumContent() + */ + void setWantedMediumContent( int state ); + + /** + * Although the dialog is used to select a medium the result is the + * device containing that medium. + */ + K3bDevice::Device* selectedDevice() const; + + /** + * \deprecated + * + * Select a medium. + * If only one medium of the wanted type is found the method returns immideately + * without showing the dialog. + */ + static K3bDevice::Device* selectMedium( int type, int state, QWidget* parent = 0, + const QString& title = QString::null, + const QString& text = QString::null, + bool* canceled = 0 ); + + static K3bDevice::Device* selectMedium( int type, int state, int content = K3bMedium::CONTENT_ALL, + QWidget* parent = 0, + const QString& title = QString::null, + const QString& text = QString::null, + bool* canceled = 0 ); + + private slots: + void slotSelectionChanged( K3bDevice::Device* ); + + private: + K3bMediaSelectionComboBox* m_combo; +}; + +#endif -- cgit v1.2.1