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.
25 lines
432 B
25 lines
432 B
#ifndef SEVERITYSELECTDIALOG_H
|
|
#define SEVERITYSELECTDIALOG_H
|
|
|
|
#include <kdialogbase.h>
|
|
|
|
#include "bug.h"
|
|
|
|
class SeveritySelectDialog : public KDialogBase
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
SeveritySelectDialog(TQWidget *parent=0,const char *name=0);
|
|
|
|
void setSeverity( Bug::Severity );
|
|
|
|
Bug::Severity selectedSeverity();
|
|
TQString selectedSeverityAsString();
|
|
|
|
private:
|
|
TQButtonGroup *mButtonGroup;
|
|
};
|
|
|
|
#endif
|