Subversion Repositories public

Rev

Rev 143 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 143 Rev 232
Line 1... Line 1...
1
/***************************************************************************
1
/***************************************************************************
2
 *   Copyright (C) 2007, 2008 by Andreas Theofilu                          *
2
 *   Copyright (C) 2007 - 2009 by Andreas Theofilu                         *
3
 *   andreas@theosys.at                                                    *
3
 *   andreas@theosys.at                                                    *
4
 *                                                                         *
4
 *                                                                         *
5
 *   This program is free software; you can redistribute it and/or modify  *
5
 *   This program is free software; you can redistribute it and/or modify  *
6
 *   it under the terms of the GNU General Public License as published by  *
6
 *   it under the terms of the GNU General Public License as published by  *
7
 *   the Free Software Foundation version 3 of the License.                *
7
 *   the Free Software Foundation version 3 of the License.                *
Line 15... Line 15...
15
 *   along with this program; if not, write to the                         *
15
 *   along with this program; if not, write to the                         *
16
 *   Free Software Foundation, Inc.,                                       *
16
 *   Free Software Foundation, Inc.,                                       *
17
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
17
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
18
 ***************************************************************************/
18
 ***************************************************************************/
19
 
19
 
-
 
20
/*
-
 
21
 * Ported to KDE4 on Jul. 8 2009 by Andreas Theofilu.
-
 
22
 */
20
#ifndef PROGRESSWIDGET_H
23
#ifndef PROGRESSWIDGET_H
21
#define PROGRESSWIDGET_H
24
#define PROGRESSWIDGET_H
22
 
25
 
-
 
26
#include <QDialog>
23
#include "progresswidgetbase.h"
27
#include "ui_progresswidgetbase.h"
24
#include "garmin.h"
28
#include "garmin.h"
25
 
29
 
26
class progressWidget : public progressWidgetBase
30
class progressWidget : public QDialog, private Ui::Progress //WidgetBase
27
{
31
{
28
		Q_OBJECT
32
		Q_OBJECT
29
 
33
 
30
	public:
34
	public:
31
		progressWidget ( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
35
		progressWidget ( QWidget* parent = 0, Qt::WFlags fl = 0 );
32
		~progressWidget();
36
		~progressWidget();
33
		/*$PUBLIC_FUNCTIONS$*/
37
		/*$PUBLIC_FUNCTIONS$*/
34
		bool Download();
38
		bool Download();
35
		static void CallBack(char *str);
39
		static void CallBack(char *str);
36
 
40