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.cpp | |
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.cpp')
-rw-r--r-- | rbutil/rbutilqt/sysinfo.cpp | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/rbutil/rbutilqt/sysinfo.cpp b/rbutil/rbutilqt/sysinfo.cpp new file mode 100644 index 0000000000..413494c679 --- /dev/null +++ b/rbutil/rbutilqt/sysinfo.cpp @@ -0,0 +1,54 @@ +/*************************************************************************** + * __________ __ ___. + * 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. + * + ****************************************************************************/ + +#include <QtGui> +#include "sysinfo.h" +#include "ui_sysinfofrm.h" +#include "utils.h" + + +Sysinfo::Sysinfo(QWidget *parent) : QDialog(parent) +{ + ui.setupUi(this); + this->setModal(true); + + updateSysinfo(); + connect(ui.buttonOk, SIGNAL(clicked()), this, SLOT(close())); + connect(ui.buttonRefresh, SIGNAL(clicked()), this, SLOT(updateSysinfo())); +} + + +void Sysinfo::updateSysinfo(void) +{ + QString info; + info += tr("<b>OS</b><br/>") + getOsVersionString() + "<hr/>"; + info += tr("<b>Username:</b><br/>%1<hr/>").arg(getUserName()); +#if defined(Q_OS_WIN32) + info += tr("<b>Permissions:</b><br/>%1<hr/>").arg(getUserPermissionsString()); +#endif + info += tr("<b>Attached USB devices:</b><br/>"); + QList<uint32_t> usbids = listUsbIds(); + for(int i = 0; i < usbids.size(); i++) + info += tr("VID: %1 PID: %2<br/>") + .arg((usbids.at(i)&0xffff0000)>>16, 4, 16, QChar('0')) + .arg(usbids.at(i)&0xffff, 4, 16, QChar('0')); + + ui.textBrowser->setHtml(info); +} + |