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.
tdesdk/kbugbuster/gui/severityselectdialog.h

25 lines
433 B

#ifndef SEVERITYSELECTDIALOG_H
#define SEVERITYSELECTDIALOG_H
#include <kdialogbase.h>
#include "bug.h"
class SeveritySelectDialog : public KDialogBase
{
TQ_OBJECT
public:
SeveritySelectDialog(TQWidget *parent=0,const char *name=0);
void setSeverity( Bug::Severity );
Bug::Severity selectedSeverity();
TQString selectedSeverityAsString();
private:
TQButtonGroup *mButtonGroup;
};
#endif