Improve voice creation window a bit.
[maemo-rb.git] / rbutil / rbutilqt / gui / infowidget.h
blob2285b05c8b1c61c7000e2300a759411b51d01c1c
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
9 * Copyright (C) 2012 by Dominik Riebeling
11 * All files in this archive are subject to the GNU General Public License.
12 * See the file COPYING in the source tree root for full license agreement.
14 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
15 * KIND, either express or implied.
17 ****************************************************************************/
19 #ifndef INFOWIDGET_H
20 #define INFOWIDGET_H
22 #include <QtGui>
23 #include "ui_infowidgetfrm.h"
25 class InfoWidget : public QWidget
27 Q_OBJECT
28 public:
29 InfoWidget(QWidget *parent = 0);
31 public slots:
32 void updateInfo(void);
34 private:
35 Ui::InfoWidgetFrm ui;
38 #endif