/** getframedialog.h - Ask the user what frame he wants
 *
 * bsAniPic - http://www.buckosoft.com/bsAniPic/
 *
 * Copyright(c) BuckoSoft, 2017.
 * Released under GNU GPL v3 https://www.gnu.org/licenses/gpl-3.0.en.html
 */

#ifndef GETFRAMEDIALOG_H
#define GETFRAMEDIALOG_H

#include <QDialog>

namespace Ui {
class GetFrameDialog;
}

class GetFrameDialog : public QDialog
{
    Q_OBJECT

public:
    explicit GetFrameDialog(QWidget *parent = 0);
    virtual ~GetFrameDialog();

    int     getValue();
private:
    Ui::GetFrameDialog *ui;
};

#endif // GETFRAMEDIALOG_H
