/* ==================================================================== * Copyright (c) 2003-2006, Martin Hauner * http://subcommander.tigris.org * * Subcommander is licensed as described in the file doc/COPYING, which * you should have received as part of this distribution. * ==================================================================== */ #ifndef _SC_REMOVEDIALOG_H #define _SC_REMOVEDIALOG_H // sc #include "svn/CommitItemTypes.h" class ScModel; // qt #include class QCheckBox; class QPushButton; class QLabel; class RemoveDialog : public QDialog { typedef QDialog super; Q_OBJECT public: RemoveDialog( QWidget *parent, bool force, bool unversioned ); virtual ~RemoveDialog(); private: QLabel* _pos; QCheckBox* _force; QPushButton* _ok; }; #endif // _SC_REMOVEDIALOG_H