Bump version to 3.12
[maemo-rb.git] / rbutil / rbutilqt / sysinfo.h
blobb1eda962589d5e0167009918166887882b7c4760
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
9 * Copyright (C) 2007 by Dominik Riebeling
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
19 ****************************************************************************/
21 #ifndef SYSINFO_H
22 #define SYSINFO_H
24 #include <QtGui>
25 #include "ui_sysinfofrm.h"
27 class Sysinfo : public QDialog
29 Q_OBJECT
31 public:
32 Sysinfo(QWidget *parent = 0);
34 static QString getInfo();
35 private:
36 void changeEvent(QEvent *event);
37 Ui::SysinfoFrm ui;
39 private slots:
40 void updateSysinfo(void);
44 #endif