From c272144867f94dc7e99f8333bec5dd052878ecd8 Mon Sep 17 00:00:00 2001 From: Robert Bieber Date: Thu, 15 Jul 2010 21:39:09 +0000 Subject: Theme Editor: Added New Project feature git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27439 a1c6a512-1295-4272-9138-f99709370657 --- utils/themeeditor/gui/newprojectdialog.h | 95 ++++++++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 utils/themeeditor/gui/newprojectdialog.h (limited to 'utils/themeeditor/gui/newprojectdialog.h') diff --git a/utils/themeeditor/gui/newprojectdialog.h b/utils/themeeditor/gui/newprojectdialog.h new file mode 100644 index 0000000000..c59607c53f --- /dev/null +++ b/utils/themeeditor/gui/newprojectdialog.h @@ -0,0 +1,95 @@ +/*************************************************************************** + * __________ __ ___. + * 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 + +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 -- cgit v1.2.3