diff options
author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2008-06-21 10:28:10 +0000 |
---|---|---|
committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2008-06-21 10:28:10 +0000 |
commit | 1876a0bcf227a41956c30d513c5d486b69cc2a99 (patch) | |
tree | df4b68808e603e91f5b57c006553e03177ba8288 /rbutil/rbutilqt/sysinfo.h | |
parent | 5b2d06ad513f2aa0c03726cd7d9465e70e0ae22b (diff) | |
download | rockbox-1876a0bcf227a41956c30d513c5d486b69cc2a99.tar.gz rockbox-1876a0bcf227a41956c30d513c5d486b69cc2a99.tar.bz2 rockbox-1876a0bcf227a41956c30d513c5d486b69cc2a99.zip |
Add System Info screen showing some values that could be helpful in case of problems using rbutil. Most noteable is showing the permission level of the user on windows.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17736 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil/rbutilqt/sysinfo.h')
-rw-r--r-- | rbutil/rbutilqt/sysinfo.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/rbutil/rbutilqt/sysinfo.h b/rbutil/rbutilqt/sysinfo.h new file mode 100644 index 0000000000..a3dbed9941 --- /dev/null +++ b/rbutil/rbutilqt/sysinfo.h @@ -0,0 +1,42 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * + * Copyright (C) 2007 by Dominik Riebeling + * $Id$ + * + * All files in this archive are subject to the GNU General Public License. + * See the file COPYING in the source tree root for full license agreement. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ + +#ifndef SYSINFO_H +#define SYSINFO_H + +#include <QtGui> +#include "ui_sysinfofrm.h" + +class Sysinfo : public QDialog +{ + Q_OBJECT + + public: + Sysinfo(QWidget *parent = 0); + + private: + Ui::SysinfoFrm ui; + + private slots: + void updateSysinfo(void); + +}; + +#endif + |