Source: skipdlg.h


Annotated List
Files
Globals
Hierarchy
Index
#ifndef __kio_skip_dlg__
#define __kio_skip_dlg__ "$Id: skipdlg.h,v 1.9 2000/02/19 16:39:49 faure Exp $"

#include <kdialog.h>

class QPushButton;
class QWidget;

namespace KIO {

  enum SkipDlg_Result { S_SKIP = 1, S_AUTO_SKIP = 2, S_CANCEL = 0 };

  SkipDlg_Result open_SkipDlg( bool _multi, const QString& _error_text = QString::null );

class SkipDlg : public KDialog
{
  Q_OBJECT
public:
  SkipDlg( QWidget *parent, bool _multi, const QString& _error_text, bool _modal = false );
  ~SkipDlg();

protected:
  QPushButton *b0;
  QPushButton *b1;
  QPushButton *b2;

  bool modal;

public slots:
  void b0Pressed();
  void b1Pressed();
  void b2Pressed();

signals:
  void result( SkipDlg *_this, int _button );
};

};
#endif

Generated by: dfaure@faure on Sun Mar 26 14:24:43 2000, using kdoc 2.0a35.