![]() |
OpenAlbum 1.0.b
|
00001 /* 00002 Copyright © 2011 Manuel Jesús de la Calle Brihuega 00003 00004 This file is part of open Album. 00005 00006 Open Album is free software: you can redistribute it and/or modify 00007 it under the terms of the GNU General Public License as published by 00008 the Free Software Foundation, either version 3 of the License, or 00009 (at your option) any later version. 00010 00011 Open Album is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 GNU General Public License for more details. 00015 00016 You should have received a copy of the GNU General Public License 00017 along with open Album. If not, see <http://www.gnu.org/licenses/>. 00018 */ 00019 00020 #ifndef FONDOPORTADAWIZARD_H 00021 #define FONDOPORTADAWIZARD_H 00022 00023 #include <QWizardPage> 00024 #include "formprincipal.h" 00025 00026 class FormPrincipal; 00027 00028 namespace Ui { 00029 class fondoPortadaWizard; 00030 } 00031 00033 00060 class fondoPortadaWizard : public QWizardPage 00061 { 00062 Q_OBJECT 00063 00064 public: 00065 00074 explicit fondoPortadaWizard(QWidget *parent = 0, FormPrincipal *form = 0); 00075 00082 ~fondoPortadaWizard(); 00083 00091 bool isComplete() const; 00092 00093 00094 Ui::fondoPortadaWizard *ui; 00097 public slots: 00098 00104 void elegirImagenFrontal(); 00105 00111 void elegirFondo(); 00112 00118 void elegirImagenTrasera(); 00119 00120 00121 private: 00122 bool elegidoFondo, elegidaFrontal, elegidaTrasera; 00123 FormPrincipal *form; 00124 }; 00125 00126 #endif // FONDOPORTADAWIZARD_H