You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.2 KiB
56 lines
1.2 KiB
//
|
|
// C++ Interface: deviceconfiguredialog.h
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: Jeff Mitchell <kde-dev@emailgoeshere.com>, (C) 2006
|
|
// Martin Aumueller <aumuell@reserv.at>, (C) 2005
|
|
//
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
//
|
|
//
|
|
#ifndef DEVICECONFIGUREDIALOG_H
|
|
#define DEVICECONFIGUREDIALOG_H
|
|
|
|
#include "hintlineedit.h"
|
|
|
|
#include <tqcheckbox.h>
|
|
#include <tqradiobutton.h>
|
|
|
|
#include <kdialogbase.h>
|
|
|
|
class MediaBrowser;
|
|
class Medium;
|
|
|
|
/**
|
|
@author Jeff Mitchell <kde-dev@emailgoeshere.com>
|
|
*/
|
|
class DeviceConfigureDialog : public KDialogBase
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DeviceConfigureDialog( const Medium &medium );
|
|
~DeviceConfigureDialog();
|
|
bool successful() { return m_accepted; };
|
|
|
|
private slots:
|
|
void slotOk();
|
|
void slotCancel();
|
|
|
|
private:
|
|
bool m_accepted;
|
|
Medium* m_medium;
|
|
|
|
HintLineEdit *m_connectEdit;
|
|
HintLineEdit *m_disconnectEdit;
|
|
TQCheckBox *m_transcodeCheck;
|
|
TQRadioButton *m_transcodeAlways;
|
|
TQRadioButton *m_transcodeWhenNecessary;
|
|
TQCheckBox *m_transcodeRemove;
|
|
|
|
};
|
|
|
|
#endif
|