![]() |
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 #ifndef INTROAPP_H 00020 #define INTROAPP_H 00021 00022 #include <QDialog> 00023 #include <QDir> 00024 00025 namespace Ui { 00026 class introApp; 00027 } 00029 00055 class introApp : public QDialog 00056 { 00057 Q_OBJECT 00058 00059 public: 00068 explicit introApp(QWidget *parent = 0, QDir directorioActual=QDir()); 00069 00076 ~introApp(); 00077 00085 void setMaximoBarra(int max); 00086 00094 void setValorBarra(int valor); 00095 00104 void setValorLabel(QString cadena, int num); 00105 private: 00106 Ui::introApp *ui; 00107 QDir directorioDeTrabajo; 00108 }; 00109 00110 #endif // INTROAPP_H