/** getframedialog.cpp - 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
 */
#include "getframedialog.h"
#include "ui_getframedialog.h"

GetFrameDialog::GetFrameDialog(QWidget *parent) :
    QDialog(parent),
    ui(new Ui::GetFrameDialog)
{
    ui->setupUi(this);
    ui->lineEdit->setFocus();
}

GetFrameDialog::~GetFrameDialog()
{
    delete ui;
}

int GetFrameDialog::getValue()
{
    return(ui->lineEdit->text().toInt());
}
