~gabriel1984sibiu/qosmic/debian

« back to all changes in this revision

Viewing changes to src/statuswidget.h

  • Committer: Grevutiu Gabriel
  • Date: 2014-07-19 09:25:04 UTC
  • Revision ID: gabriel1984sibiu@gmail.com-20140719092504-wylf8wcupzs72bc3
Delete many files

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
 *   Copyright (C) 2007, 2008, 2009, 2011 by David Bitseff                 *
3
 
 *   bitsed@gmail.com                                                      *
4
 
 *                                                                         *
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  *
7
 
 *   the Free Software Foundation; either version 2 of the License, or     *
8
 
 *   (at your option) any later version.                                   *
9
 
 *                                                                         *
10
 
 *   This program is distributed in the hope that it will be useful,       *
11
 
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12
 
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13
 
 *   GNU General Public License for more details.                          *
14
 
 *                                                                         *
15
 
 *   You should have received a copy of the GNU General Public License     *
16
 
 *   along with this program; if not, write to the                         *
17
 
 *   Free Software Foundation, Inc.,                                       *
18
 
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19
 
 ***************************************************************************/
20
 
#ifndef STATUSWIDGET_H
21
 
#define STATUSWIDGET_H
22
 
 
23
 
#include <QWidget>
24
 
#include <QResizeEvent>
25
 
 
26
 
#include "ui_statuswidget.h"
27
 
#include "renderthread.h"
28
 
 
29
 
class StatusWidget : public QWidget, private Ui::StatusWidget
30
 
{
31
 
        Q_OBJECT
32
 
 
33
 
        public:
34
 
                StatusWidget(QWidget* parent);
35
 
                ~StatusWidget();
36
 
 
37
 
        public slots:
38
 
                void setRenderStatus(RenderStatus*);
39
 
 
40
 
 
41
 
        protected:
42
 
                void resizeEvent(QResizeEvent*);
43
 
};
44
 
 
45
 
#endif