moved kdeaccessibility kdeaddons kdeadmin kdeartwork kdebindings kdeedu kdegames...
[kdeedu.git] / kmplot / kmplot / kmplotprogress.h
bloba04bc07744c91c6e6d19d4f1b17fc25f73fdffcd
1 /*
2 * KmPlot - a math. function plotter for the KDE-Desktop
4 * Copyright (C) 2004 Fredrik Edemar
5 * f_edemar@linux.se
6 *
7 * This file is part of the KDE Project.
8 * KmPlot is part of the KDE-EDU Project.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 #ifndef kmplotprogress_included
26 #define kmplotprogress_included
28 #include <kprogress.h>
29 #include <kpushbutton.h>
30 #include <qwidget.h>
32 /// The progress-widget in the statusbar which appears when drawing integrals
33 class KmPlotProgress: public QWidget
35 Q_OBJECT
36 public:
37 KmPlotProgress( QWidget* parent = 0, const char* name = 0 );
38 ~KmPlotProgress();
39 void increase();
41 KPushButton *button;
42 KProgress *progress;
45 #endif // kmplotprogress_included