disc.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:1k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /***************************************************************************
  2.                           disc.h  -  description
  3.                              -------------------
  4.     begin                : Sat Apr 7 2001
  5.     copyright            : (C) 2001 by andres
  6.     email                : dae@chez.com
  7.  ***************************************************************************/
  8. #ifndef KDE_DISC_H
  9. #define KDE_DISC_H
  10. #include "common.h"
  11. #include <kdialogbase.h>
  12. #include <qstring.h>
  13. class QVButtonGroup;
  14. class QRadioButton;
  15. class QSpinBox;
  16. class KLineEdit;
  17. /**
  18.   *@author andres
  19.   */
  20. class KDiskDialog : public KDialogBase
  21. {
  22.     Q_OBJECT
  23.     public: 
  24.         KDiskDialog( QWidget *parent=0, const char *name=0 );
  25.         ~KDiskDialog();
  26.         QString    type() const;
  27.         QString    device() const;
  28.         int        title() const;
  29.         int        chapter() const;
  30.     private:
  31.         QVButtonGroup    *fButtonGroup;
  32.         QRadioButton     *fDVDButton;
  33.         QRadioButton     *fVCDButton;
  34.         QSpinBox         *fTitle;
  35.         QSpinBox         *fChapter;
  36.         KLineEdit        *fLineEdit;
  37. };
  38. #endif