rockbox/utils/themeeditor/gui/newprojectdialog.h
Robert Bieber c272144867 Theme Editor: Added New Project feature
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27439 a1c6a512-1295-4272-9138-f99709370657
2010-07-15 21:39:09 +00:00

95 lines
2.3 KiB
C++

/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
* $Id$
*
* Copyright (C) 2010 Robert Bieber
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
****************************************************************************/
#ifndef NEWPROJECTDIALOG_H
#define NEWPROJECTDIALOG_H
#include <QDialog>
namespace Ui {
class NewProjectDialog;
}
class NewProjectDialog : public QDialog {
Q_OBJECT
public:
struct NewProjectInfo
{
QString name;
QString path;
bool sbs;
bool wps;
bool fms;
bool rsbs;
bool rwps;
bool rfms;
NewProjectInfo()
{
name = "";
path = "";
sbs = true;
wps = true;
fms = false;
rsbs = false;
rwps = false;
rfms = false;
}
NewProjectInfo(const NewProjectInfo& other)
{
operator=(other);
}
const NewProjectInfo& operator=(const NewProjectInfo& other)
{
name = other.name;
path = other.path;
sbs = other.sbs;
wps = other.wps;
fms = other.fms;
rsbs = other.rsbs;
rwps = other.rwps;
rfms = other.rfms;
return *this;
}
};
NewProjectDialog(QWidget *parent = 0);
virtual ~NewProjectDialog();
NewProjectInfo results(){ return status; }
public slots:
void accept();
void reject();
private slots:
void browse();
private:
Ui::NewProjectDialog *ui;
NewProjectInfo status;
};
#endif // NEWPROJECTDIALOG_H