You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
426 B
C
24 lines
426 B
C
15 years ago
|
#ifndef SEVERITYSELECTDIALOG_H
|
||
|
#define SEVERITYSELECTDIALOG_H
|
||
|
|
||
|
#include <kdialogbase.h>
|
||
|
|
||
|
#include "bug.h"
|
||
|
|
||
|
class SeveritySelectDialog : public KDialogBase
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
SeveritySelectDialog(QWidget *parent=0,const char *name=0);
|
||
|
|
||
|
void setSeverity( Bug::Severity );
|
||
|
|
||
|
Bug::Severity selectedSeverity();
|
||
|
QString selectedSeverityAsString();
|
||
|
|
||
|
private:
|
||
|
QButtonGroup *mButtonGroup;
|
||
|
};
|
||
|
|
||
|
#endif
|