summaryrefslogtreecommitdiff
path: root/utils/themeeditor/gui/devicestate.cpp
diff options
context:
space:
mode:
authorRobert Bieber <robby@bieberphoto.com>2010-06-23 20:46:43 +0000
committerRobert Bieber <robby@bieberphoto.com>2010-06-23 20:46:43 +0000
commit58ad1e7c4b7e404d0bcda752914e2878c68feafd (patch)
treed1cc2e43d6c28b641d02684ac70e6c9a8f3bbf9c /utils/themeeditor/gui/devicestate.cpp
parent6d6156603cf2ac5facf08734f12e0b4d0c1fcce0 (diff)
downloadrockbox-58ad1e7c4b7e404d0bcda752914e2878c68feafd.zip
rockbox-58ad1e7c4b7e404d0bcda752914e2878c68feafd.tar.gz
rockbox-58ad1e7c4b7e404d0bcda752914e2878c68feafd.tar.bz2
rockbox-58ad1e7c4b7e404d0bcda752914e2878c68feafd.tar.xz
Theme Editor: Began working on device status dialog
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27097 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/gui/devicestate.cpp')
-rw-r--r--utils/themeeditor/gui/devicestate.cpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/utils/themeeditor/gui/devicestate.cpp b/utils/themeeditor/gui/devicestate.cpp
new file mode 100644
index 0000000..af0b846
--- /dev/null
+++ b/utils/themeeditor/gui/devicestate.cpp
@@ -0,0 +1,35 @@
+/***************************************************************************
+ * __________ __ ___.
+ * Open \______ \ ____ ____ | | _\_ |__ _______ ___
+ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
+ * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
+ * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
+ * \/ \/ \/ \/ \/
+ * $Id$
+ *
+ * Copyright (C) 2010 Robert Bieber
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
+ * KIND, either express or implied.
+ *
+ ****************************************************************************/
+
+#include "devicestate.h"
+#include "ui_devicestate.h"
+
+DeviceState::DeviceState(QWidget *parent) :
+ QWidget(parent),
+ ui(new Ui::DeviceState)
+{
+ ui->setupUi(this);
+}
+
+DeviceState::~DeviceState()
+{
+ delete ui;
+}