#ifndef MENUDIALOG_H
#define MENUDIALOG_H
#include "buttonselectiondialog.h"

class MenuDialog : public ButtonSelectionDialog
{
    Q_OBJECT
public:
    MenuDialog();

    static DialogBase *createWidget( const QString &text, const QString &listHeight, const QStringList &tags, const QStringList &labels,  const QStringList &helps, bool noTags );

};

#endif // MENUDIALOG_H

