Add original resources back and update code to match
authorrobertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Mon, 19 Nov 2012 17:39:18 +0000 (17:39 +0000)
committerrobertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Mon, 19 Nov 2012 17:39:18 +0000 (17:39 +0000)
https://codereview.appspot.com/6842061/

git-svn-id: http://skia.googlecode.com/svn/trunk@6484 2bbb7eff-a529-9590-31e7-b0007b416f81

15 files changed:
debugger/QT/Icons/.qrc [new file with mode: 0644]
debugger/QT/Icons/blank.png [new file with mode: 0644]
debugger/QT/Icons/breakpoint.png [new file with mode: 0644]
debugger/QT/Icons/breakpoint_16x16.png [new file with mode: 0644]
debugger/QT/Icons/delete.png [new file with mode: 0644]
debugger/QT/Icons/doit.bat [new file with mode: 0644]
debugger/QT/Icons/next.png [new file with mode: 0644]
debugger/QT/Icons/pause.png [new file with mode: 0644]
debugger/QT/Icons/play.png [new file with mode: 0644]
debugger/QT/Icons/previous.png [new file with mode: 0644]
debugger/QT/Icons/reload.png [new file with mode: 0644]
debugger/QT/Icons/rewind.png [new file with mode: 0644]
debugger/QT/Icons/skia.png [new file with mode: 0644]
debugger/QT/SkDebuggerGUI.cpp
debugger/QT/qrc_SkIcons.cpp

diff --git a/debugger/QT/Icons/.qrc b/debugger/QT/Icons/.qrc
new file mode 100644 (file)
index 0000000..043daa1
--- /dev/null
@@ -0,0 +1,16 @@
+ <!DOCTYPE RCC><RCC version="1.0">\r
+ <qresource>\r
+   <file>skia.png</file>\r
+   <file>delete.png</file>\r
+   <file>breakpoint_16x16.png</file>\r
+   <file>blank.png</file>\r
+   <file>breakpoint.png</file>\r
+   <file>inspector.png</file>\r
+   <file>reload.png</file>\r
+   <file>play.png</file>\r
+   <file>pause.png</file>\r
+   <file>rewind.png</file>\r
+   <file>previous.png</file>\r
+   <file>next.png</file>\r
+ </qresource>\r
+ </RCC>
\ No newline at end of file
diff --git a/debugger/QT/Icons/blank.png b/debugger/QT/Icons/blank.png
new file mode 100644 (file)
index 0000000..97246fb
Binary files /dev/null and b/debugger/QT/Icons/blank.png differ
diff --git a/debugger/QT/Icons/breakpoint.png b/debugger/QT/Icons/breakpoint.png
new file mode 100644 (file)
index 0000000..b6290b4
Binary files /dev/null and b/debugger/QT/Icons/breakpoint.png differ
diff --git a/debugger/QT/Icons/breakpoint_16x16.png b/debugger/QT/Icons/breakpoint_16x16.png
new file mode 100644 (file)
index 0000000..a25ece8
Binary files /dev/null and b/debugger/QT/Icons/breakpoint_16x16.png differ
diff --git a/debugger/QT/Icons/delete.png b/debugger/QT/Icons/delete.png
new file mode 100644 (file)
index 0000000..50b604f
Binary files /dev/null and b/debugger/QT/Icons/delete.png differ
diff --git a/debugger/QT/Icons/doit.bat b/debugger/QT/Icons/doit.bat
new file mode 100644 (file)
index 0000000..09d7149
--- /dev/null
@@ -0,0 +1 @@
+c:\Qt\4.8.3\bin\rcc.exe .qrc -o qrc_SkIcons.cpp -no-compress\r
diff --git a/debugger/QT/Icons/next.png b/debugger/QT/Icons/next.png
new file mode 100644 (file)
index 0000000..aae8934
Binary files /dev/null and b/debugger/QT/Icons/next.png differ
diff --git a/debugger/QT/Icons/pause.png b/debugger/QT/Icons/pause.png
new file mode 100644 (file)
index 0000000..a026a54
Binary files /dev/null and b/debugger/QT/Icons/pause.png differ
diff --git a/debugger/QT/Icons/play.png b/debugger/QT/Icons/play.png
new file mode 100644 (file)
index 0000000..5528baf
Binary files /dev/null and b/debugger/QT/Icons/play.png differ
diff --git a/debugger/QT/Icons/previous.png b/debugger/QT/Icons/previous.png
new file mode 100644 (file)
index 0000000..3396a3f
Binary files /dev/null and b/debugger/QT/Icons/previous.png differ
diff --git a/debugger/QT/Icons/reload.png b/debugger/QT/Icons/reload.png
new file mode 100644 (file)
index 0000000..316f36c
Binary files /dev/null and b/debugger/QT/Icons/reload.png differ
diff --git a/debugger/QT/Icons/rewind.png b/debugger/QT/Icons/rewind.png
new file mode 100644 (file)
index 0000000..d8d4902
Binary files /dev/null and b/debugger/QT/Icons/rewind.png differ
diff --git a/debugger/QT/Icons/skia.png b/debugger/QT/Icons/skia.png
new file mode 100644 (file)
index 0000000..017ee4f
Binary files /dev/null and b/debugger/QT/Icons/skia.png differ
index 20fb5ec..d548d7b 100644 (file)
@@ -305,14 +305,14 @@ void SkDebuggerGUI::actionClearBreakpoints() {
         QListWidgetItem* item = fListWidget.item(row);
         item->setCheckState(Qt::Unchecked);
         item->setData(Qt::DecorationRole,
-                QPixmap(":/images/Icons/blank.png"));
+                QPixmap(":/blank.png"));
     }
 }
 
 void SkDebuggerGUI::actionClearDeletes() {
     for (int row = 0; row < fListWidget.count(); row++) {
         QListWidgetItem* item = fListWidget.item(row);
-        item->setData(Qt::UserRole + 2, QPixmap(":/images/Icons/blank.png"));
+        item->setData(Qt::UserRole + 2, QPixmap(":/blank.png"));
         fDebugger.setCommandVisible(row, true);
     }
     if (fPause) {
@@ -337,10 +337,10 @@ void SkDebuggerGUI::actionDelete() {
     QListWidgetItem* item = fListWidget.currentItem();
 
     if (fDebugger.isCommandVisible(currentRow)) {
-        item->setData(Qt::UserRole + 2, QPixmap(":/images/Icons/delete.png"));
+        item->setData(Qt::UserRole + 2, QPixmap(":/delete.png"));
         fDebugger.setCommandVisible(currentRow, false);
     } else {
-        item->setData(Qt::UserRole + 2, QPixmap(":/images/Icons/blank.png"));
+        item->setData(Qt::UserRole + 2, QPixmap(":/blank.png"));
         fDebugger.setCommandVisible(currentRow, true);
     }
 
@@ -505,11 +505,11 @@ void SkDebuggerGUI::toggleBreakpoint() {
     if (item->checkState() == Qt::Unchecked) {
         item->setCheckState(Qt::Checked);
         item->setData(Qt::DecorationRole,
-                QPixmap(":/images/Icons/breakpoint_16x16.png"));
+                QPixmap(":/breakpoint_16x16.png"));
     } else {
         item->setCheckState(Qt::Unchecked);
         item->setData(Qt::DecorationRole,
-                QPixmap(":/images/Icons/blank.png"));
+                QPixmap(":/blank.png"));
     }
 }
 
@@ -526,7 +526,7 @@ void SkDebuggerGUI::toggleFilter(QString string) {
 
 void SkDebuggerGUI::setupUi(QMainWindow *SkDebuggerGUI) {
     QIcon windowIcon;
-    windowIcon.addFile(QString::fromUtf8(":/images/Icons/skia.png"), QSize(),
+    windowIcon.addFile(QString::fromUtf8(":/skia.png"), QSize(),
             QIcon::Normal, QIcon::Off);
     SkDebuggerGUI->setObjectName(QString::fromUtf8("SkDebuggerGUI"));
     SkDebuggerGUI->resize(1200, 1000);
@@ -537,14 +537,14 @@ void SkDebuggerGUI::setupUi(QMainWindow *SkDebuggerGUI) {
     fActionOpen.setText("Open");
 
     QIcon breakpoint;
-    breakpoint.addFile(QString::fromUtf8(":/images/Icons/breakpoint.png"),
+    breakpoint.addFile(QString::fromUtf8(":/breakpoint.png"),
             QSize(), QIcon::Normal, QIcon::Off);
     fActionBreakpoint.setShortcut(QKeySequence(tr("Ctrl+B")));
     fActionBreakpoint.setIcon(breakpoint);
     fActionBreakpoint.setText("Breakpoints");
 
     QIcon cancel;
-    cancel.addFile(QString::fromUtf8(":/images/Ico/reload.png"), QSize(),
+    cancel.addFile(QString::fromUtf8(":/reload.png"), QSize(),
             QIcon::Normal, QIcon::Off);
     fActionCancel.setIcon(cancel);
     fActionCancel.setText("Clear Filter");
@@ -597,7 +597,7 @@ void SkDebuggerGUI::setupUi(QMainWindow *SkDebuggerGUI) {
     fActionPause.setText("Pause");
 
     QIcon rewind;
-    rewind.addFile(QString::fromUtf8(":/images/Ico/rewind.png"), QSize(),
+    rewind.addFile(QString::fromUtf8(":/rewind.png"), QSize(),
             QIcon::Normal, QIcon::Off);
     fActionRewind.setShortcut(QKeySequence(tr("Ctrl+R")));
     fActionRewind.setIcon(rewind);
@@ -614,14 +614,14 @@ void SkDebuggerGUI::setupUi(QMainWindow *SkDebuggerGUI) {
     fActionShowDeletes.setText("Deleted Commands");
 
     QIcon stepBack;
-    stepBack.addFile(QString::fromUtf8(":/images/Ico/previous.png"), QSize(),
+    stepBack.addFile(QString::fromUtf8(":/previous.png"), QSize(),
             QIcon::Normal, QIcon::Off);
     fActionStepBack.setShortcut(QKeySequence(tr("[")));
     fActionStepBack.setIcon(stepBack);
     fActionStepBack.setText("Step Back");
 
     QIcon stepForward;
-    stepForward.addFile(QString::fromUtf8(":/images/Ico/next.png"),
+    stepForward.addFile(QString::fromUtf8(":/next.png"),
             QSize(), QIcon::Normal, QIcon::Off);
     fActionStepForward.setShortcut(QKeySequence(tr("]")));
     fActionStepForward.setIcon(stepForward);
index 2e873b0..cda45f9 100644 (file)
@@ -1,8 +1,8 @@
 /****************************************************************************
 ** Resource object code
 **
-** Created: Mon Jul 16 13:14:59 2012
-**      by: The Resource Compiler for Qt version 4.8.1
+** Created: Sat Nov 17 10:29:08 2012
+**      by: The Resource Compiler for Qt version 4.8.3
 **
 ** WARNING! All changes made in this file will be lost!
 *****************************************************************************/
@@ -10,7 +10,7 @@
 #include <QtCore/qglobal.h>
 
 static const unsigned char qt_resource_data[] = {
-  // /usr/local/google/home/chudy/Icons/skia.png
+  // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/skia.png
   0x0,0x0,0x4,0x1e,
   0x89,
   0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
@@ -79,7 +79,7 @@ static const unsigned char qt_resource_data[] = {
   0x69,0x86,0xa2,0x6f,0x34,0xf6,0x6,0x39,0x2f,0x1,0x98,0xc7,0xcc,0xe6,0x31,0xcc,
   0x43,0xe0,0x85,0xe9,0xf,0xe0,0xb7,0xf8,0x5,0xfe,0x47,0xd1,0xc6,0x31,0x88,0x99,
   0xe7,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
-    // /usr/local/google/home/chudy/Icons/delete.png
+    // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/delete.png
   0x0,0x0,0x5,0x87,
   0x89,
   0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
@@ -171,237 +171,7 @@ static const unsigned char qt_resource_data[] = {
   0xe9,0x96,0xe,0x90,0x34,0x95,0x67,0xde,0xbc,0x1,0xfe,0x2f,0xbb,0xe1,0xff,0x8e,
   0xff,0x6,0xd,0xb3,0xf2,0x0,0x51,0x1b,0x2c,0x34,0x0,0x0,0x0,0x0,0x49,0x45,
   0x4e,0x44,0xae,0x42,0x60,0x82,
-    // /usr/local/google/home/chudy/Icons/breakpoint_16x16.png
-  0x0,0x0,0x4,0x54,
-  0x89,
-  0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
-  0x0,0x0,0x10,0x0,0x0,0x0,0x10,0x8,0x6,0x0,0x0,0x0,0x1f,0xf3,0xff,0x61,
-  0x0,0x0,0x4,0x1b,0x49,0x44,0x41,0x54,0x38,0x11,0x1,0x10,0x4,0xef,0xfb,0x0,
-  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-  0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x40,0xc,
-  0xcf,0x14,0x4d,0x5c,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0xe4,0xdf,
-  0x0,0x1e,0xe4,0xb9,0x3,0x1,0xab,0x0,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x39,0xe,0x12,0xe3,0x7e,
-  0x57,0xff,0xf4,0xd5,0xcb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
-  0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xde,0x68,
-  0x3c,0xff,0xcc,0x3d,0xb,0xed,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-  0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x49,0x1c,0xfd,0xa,
-  0x16,0x19,0x2,0x14,0x2d,0x30,0x0,0xf5,0xda,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,
-  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0xc,
-  0x58,0x79,0x0,0xf6,0xbb,0xa0,0x0,0xe2,0xbb,0xbb,0x31,0x3b,0xcb,0xf5,0xd0,0x0,
-  0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0xbe,0x33,0xa,0x4a,0x12,0x25,0x28,0x2,
-  0x23,0x92,0xb7,0x0,0xf2,0xd5,0xce,0x0,0xfd,0xfb,0xfd,0x0,0xfd,0xfb,0xfd,0x0,
-  0xfd,0xfb,0xfd,0x0,0xfd,0xfb,0xfd,0x0,0xfd,0xfb,0xfd,0x0,0xfc,0xfa,0xfc,0x0,
-  0xfe,0xdb,0xc8,0x0,0xf2,0xe1,0xe1,0x0,0x4,0xc,0x9,0xcf,0x0,0x0,0x0,0x0,
-  0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x6f,0x3c,0x29,0xda,0xfe,0xd,0x16,
-  0x0,0xf8,0xb8,0x9c,0x0,0xfb,0xf8,0xf9,0x0,0xfe,0xfe,0xfe,0x0,0xfe,0xfe,0xfe,
-  0x0,0xfe,0xfe,0xfe,0x0,0xfe,0xfe,0xfe,0x0,0xfe,0xfe,0xfe,0x0,0xfe,0xfe,0xfe,
-  0x0,0xf7,0xe1,0xdc,0x0,0x1c,0x8a,0xb0,0x0,0xff,0xda,0xc9,0x0,0x4d,0xfb,0xe8,
-  0xf9,0xa3,0xe8,0xfc,0xc4,0x2,0xb4,0x2c,0xa,0x9d,0x7,0x5,0x4,0x0,0x16,0x5d,
-  0x70,0x0,0xf6,0xef,0xf3,0x0,0xfc,0xfa,0xfd,0x0,0xfc,0xfa,0xfd,0x0,0xfc,0xfa,
-  0xfd,0x0,0xfc,0xfa,0xfd,0x0,0xfc,0xfa,0xfd,0x0,0xfc,0xfa,0xfd,0x0,0xfc,0xfa,
-  0xfd,0x0,0xfc,0xfa,0xfd,0x0,0xe8,0x84,0x62,0x0,0xef,0xf1,0xfc,0x0,0xd,0x1a,
-  0x1c,0x87,0x0,0x0,0x0,0x0,0x1,0xc7,0x50,0x2c,0xff,0x11,0x4a,0x5b,0x0,0xfa,
-  0xb9,0xa3,0x0,0xfd,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x7f,0xa0,0x0,0xef,
-  0x83,0x63,0x0,0xda,0xd4,0xdc,0xc4,0x4,0xea,0xe7,0xed,0x0,0x4,0xa3,0x8d,0x0,
-  0xf2,0xb,0x17,0x0,0x7,0xe9,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xff,0x0,0x0,0xa,0xdb,0xd2,0x0,
-  0xfd,0xfe,0xff,0x0,0xfa,0xfe,0x2,0x6d,0x2,0xe6,0xe5,0xf0,0x1b,0xfa,0xa,0x13,
-  0x0,0x15,0x6d,0x81,0x0,0xf9,0xfb,0xff,0x0,0xfa,0xfb,0xff,0x0,0xfa,0xfb,0xff,
-  0x0,0xfa,0xfb,0xff,0x0,0xfa,0xfb,0xff,0x0,0xfa,0xfb,0xff,0x0,0xfa,0xfb,0xff,
-  0x0,0xfa,0xfb,0xff,0x0,0xfa,0xfb,0xff,0x0,0x5,0x59,0x70,0x0,0xe7,0x83,0x6f,
-  0x0,0xcf,0xd0,0xdd,0xf4,0x5b,0xdb,0xf5,0xd0,0x2,0x69,0xe4,0xf7,0xe6,0xce,0xd6,
-  0xe2,0xde,0xeb,0x74,0x5e,0x0,0x0,0x48,0x5b,0x0,0xfc,0xfc,0x0,0x0,0xfc,0xfc,
-  0x0,0x0,0xfc,0xfc,0x0,0x0,0xfc,0xfc,0x0,0x0,0xfc,0xfc,0x0,0x0,0xfc,0xfc,
-  0x0,0x0,0xfc,0xfc,0x0,0x0,0xf6,0xfa,0x0,0x0,0x4,0xe5,0xdb,0x0,0xfc,0x16,
-  0x1d,0x0,0xd,0xa,0xf7,0x13,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x6d,
-  0xe3,0xf7,0x23,0xf6,0x13,0x1b,0x0,0x6,0xfc,0xf8,0x0,0xf8,0xfa,0x0,0x0,0xfb,
-  0xfc,0x0,0x0,0xfb,0xfc,0x0,0x0,0xfb,0xfc,0x0,0x0,0xfb,0xfc,0x0,0x0,0xfb,
-  0xfc,0x0,0x0,0xfb,0xfc,0x0,0x0,0xe,0x8c,0xa4,0x0,0xef,0xba,0xb8,0x0,0xd1,
-  0xd4,0xdf,0xc4,0x56,0xd5,0x0,0xfa,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,
-  0x0,0x0,0x0,0x0,0x2d,0xf6,0xf5,0x18,0xf,0xde,0xda,0x34,0x5,0x7a,0x8c,0x0,
-  0xeb,0xb9,0xb9,0x0,0xf6,0xfa,0x0,0x0,0xf6,0xfa,0x0,0x0,0xf6,0xfa,0x0,0x0,
-  0xf6,0xfa,0x0,0x0,0xf9,0x8,0xe,0x0,0x9,0xc6,0xb8,0x0,0xe9,0xfc,0x2,0x0,
-  0x68,0xe0,0xf2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
-  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x24,0x14,0xff,0x1e,0xfc,0xf8,
-  0x0,0x4,0x2,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x2,0x6,0x0,0xcf,0xef,0xf4,
-  0x6d,0x80,0xed,0xf9,0x94,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,
-  0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0xa,0x5b,0xa,0x5,0x48,0x22,0x6,
-  0x1,0x9b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0xf0,
-  0xfa,0x27,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0xf2,0x1,0x0,
-  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
-  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,
-  0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0x0,
-  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,
-  0xf,0x4b,0x5c,0x44,0xc0,0xce,0x74,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,
-  0x42,0x60,0x82,
-    // /usr/local/google/home/chudy/Icons/blank.png
-  0x0,0x0,0x0,0x92,
-  0x89,
-  0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
-  0x0,0x0,0x10,0x0,0x0,0x0,0x10,0x8,0x6,0x0,0x0,0x0,0x1f,0xf3,0xff,0x61,
-  0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
-  0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,0xa7,0x93,0x0,
-  0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,0x1,
-  0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,0xdc,0x6,0xb,
-  0x14,0xb,0x34,0x28,0x6,0x22,0x87,0x0,0x0,0x0,0x12,0x49,0x44,0x41,0x54,0x38,
-  0xcb,0x63,0x60,0x18,0x5,0xa3,0x60,0x14,0x8c,0x2,0x8,0x0,0x0,0x4,0x10,0x0,
-  0x1,0x85,0x3f,0xaa,0x72,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,
-  0x82,
-    // /usr/local/google/home/chudy/Icons/breakpoint.png
-  0x0,0x0,0x8,0xc7,
-  0x89,
-  0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
-  0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x6,0x0,0x0,0x1,0x4,0x7d,0x4a,0x62,
-  0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,
-  0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xd7,
-  0xfb,0x6f,0x33,0x18,0x1,0x0,0x0,0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x6c,
-  0x9b,0x0,0x0,0x72,0x6f,0x0,0x0,0xf6,0xae,0x0,0x0,0x85,0x83,0x0,0x0,0x6e,
-  0xf7,0x0,0x0,0xe8,0x41,0x0,0x0,0x31,0x74,0x0,0x0,0x17,0x6c,0xa1,0xb6,0x2d,
-  0x9b,0x0,0x0,0x8,0x3d,0x49,0x44,0x41,0x54,0x78,0xda,0x62,0xfc,0xff,0xff,0x3f,
-  0x3,0x32,0x60,0x61,0x60,0x60,0x60,0xf8,0x7a,0x62,0xeb,0xff,0xd7,0x73,0x1a,0x19,
-  0x7e,0x89,0xaa,0x30,0x30,0x2e,0x53,0xe3,0x3c,0xac,0x22,0x23,0x64,0xc3,0xcc,0xcd,
-  0xcb,0xf0,0xe7,0xd3,0x7b,0x6,0x86,0xff,0xff,0xff,0x33,0xec,0x5b,0xb7,0xfa,0xff,
-  0x16,0x45,0xae,0xff,0x3b,0x54,0xb8,0xfe,0x3,0x0,0x0,0x0,0xff,0xff,0x62,0x44,
-  0x37,0x83,0xf1,0x98,0x25,0xf7,0x16,0x49,0x2d,0x2d,0x6f,0x6,0x6,0x6,0x6,0x85,
-  0x39,0xa7,0x18,0x19,0xaf,0x2f,0x9c,0xf4,0xff,0xeb,0xf2,0x9,0x10,0x1b,0x64,0x94,
-  0x18,0x18,0xbb,0x44,0x59,0xd,0xb4,0x78,0x58,0xcf,0x33,0x30,0x30,0x30,0x78,0xdf,
-  0xfb,0xca,0x8,0x0,0x0,0x0,0xff,0xff,0x82,0x9b,0xf1,0xb8,0xcc,0xfb,0xff,0xcb,
-  0x3b,0x4f,0xe0,0x66,0xf1,0xfe,0xff,0xc8,0xa0,0xbe,0xfe,0x1,0x23,0xe3,0xff,0xff,
-  0xff,0x19,0x2e,0x5,0x6b,0xff,0x67,0x63,0x63,0x86,0xda,0xc2,0x8,0xa5,0x18,0x19,
-  0x18,0xf8,0x4,0x19,0x18,0xff,0xff,0xff,0xcf,0xb0,0xdf,0x50,0xe0,0xff,0xbf,0x9f,
-  0xbf,0x51,0x5c,0xf3,0x53,0x42,0x8e,0xe1,0xf7,0xe7,0xf,0x10,0x5,0x8c,0x8c,0x8c,
-  0x4c,0x6b,0xc,0x95,0xfe,0xf2,0xb2,0xb2,0xc1,0x15,0x1c,0xbd,0x73,0xef,0x5e,0xe3,
-  0xdb,0x9f,0xca,0x0,0x0,0x0,0x0,0xff,0xff,0xc2,0xf0,0x7,0x3a,0x60,0x61,0x60,
-  0x60,0x60,0xb8,0x64,0xcd,0x9d,0xf9,0x4b,0x5c,0x65,0x1a,0x4c,0x90,0x9b,0x87,0x9d,
-  0x41,0x73,0xd1,0x29,0x46,0x6,0x6,0x6,0x88,0x15,0xf7,0x52,0x2d,0xff,0x33,0xfd,
-  0xff,0x8b,0xd0,0xc5,0xcd,0xc5,0xf0,0xed,0xf3,0x77,0x6,0xb5,0x79,0x27,0x19,0x99,
-  0x76,0x59,0x8,0x7f,0xe6,0xd0,0xb3,0x62,0xf8,0xf1,0xed,0x27,0xc3,0x8f,0xaf,0x3f,
-  0x18,0x7e,0x7c,0xfd,0xc1,0xf0,0xe5,0xf5,0x7b,0x6,0x16,0xbb,0x70,0x86,0x2d,0x6,
-  0x5c,0xd2,0x8c,0xc7,0x8c,0xb8,0xff,0x33,0x71,0x72,0x32,0xb0,0xf0,0xf2,0x31,0x30,
-  0x32,0x33,0x33,0xfc,0xff,0xfb,0x97,0xe1,0xff,0xdf,0x7f,0xc,0x5f,0x3f,0x7e,0x66,
-  0x60,0x97,0x96,0x61,0x60,0xba,0xfc,0xe6,0x5f,0x25,0x7b,0xf3,0x32,0x86,0xf,0xf,
-  0x5f,0x30,0xbc,0xbf,0xf7,0x94,0xe1,0xc3,0xc3,0x17,0xc,0x1f,0x9f,0xbc,0x62,0x60,
-  0x65,0x60,0x60,0xb0,0x58,0x77,0x1,0x12,0x50,0x7b,0x4c,0xa4,0xff,0xff,0x7c,0xf7,
-  0x1,0xee,0x86,0xff,0xbe,0x91,0xc,0x37,0xd7,0x2c,0xff,0x5b,0xfc,0xf4,0x2b,0xb,
-  0xe3,0xff,0xff,0xff,0x19,0x14,0x19,0x19,0x5,0x66,0x9a,0x69,0xbc,0x47,0xf6,0x9e,
-  0xfb,0xa9,0x1b,0xec,0xff,0xff,0xff,0xff,0x5,0x20,0x94,0xec,0x41,0x12,0xa,0xa3,
-  0x30,0xfc,0x7c,0xf8,0x57,0x69,0xa4,0x9,0xa1,0x4b,0x4e,0x12,0x54,0x50,0x12,0x41,
-  0x63,0x21,0x41,0xb9,0x38,0x35,0x44,0x63,0x5b,0x18,0x8d,0xd5,0x52,0x20,0x84,0x53,
-  0x53,0x83,0x6e,0x6d,0x77,0x8,0x22,0xa8,0xa0,0xa1,0x1f,0x34,0x70,0xac,0x1c,0xc2,
-  0x96,0x74,0xc8,0x8a,0x9b,0x95,0x18,0x7a,0x43,0x3,0xfd,0x5a,0xf2,0x56,0x28,0xf5,
-  0xc2,0xe1,0x3d,0xcb,0x79,0x87,0xe7,0x3d,0x4d,0x1c,0xd2,0xe3,0xb6,0xbf,0xc1,0x48,
-  0xe1,0xef,0x4f,0x94,0xce,0xf4,0xfe,0x7f,0x6,0x64,0x43,0x7e,0x29,0x5d,0x5e,0x3a,
-  0x5e,0x6e,0x40,0xd6,0x9b,0x6e,0x7b,0x36,0xe,0x78,0xc,0xcf,0xa1,0x26,0xe3,0xd1,
-  0xd1,0xa4,0xb6,0xa0,0x7,0xa4,0x7,0x85,0xd9,0x34,0x39,0x5d,0xed,0xa,0xcc,0x53,
-  0x56,0x22,0xd4,0x1b,0xa1,0xd,0x17,0x42,0xdf,0x5d,0xcb,0x31,0xd4,0xcd,0x45,0x72,
-  0xa9,0xeb,0xdb,0x89,0xb,0xcd,0x2b,0xf6,0x6,0xac,0xc3,0x7d,0x63,0x23,0x57,0xce,
-  0x95,0x18,0xf9,0xd5,0x19,0x40,0x2,0xa2,0x85,0x7f,0xcb,0x3e,0x35,0x4b,0xfe,0x50,
-  0xe1,0x3e,0x9b,0xab,0x9,0x29,0x25,0x89,0xa0,0x4f,0x3a,0x3c,0x1e,0x9e,0x4e,0x8f,
-  0x31,0x9b,0x4,0xff,0xc9,0xbd,0x1d,0xe7,0x39,0x14,0x20,0xa3,0x96,0x14,0x9d,0x81,
-  0xe2,0x73,0xcb,0xde,0x4e,0x23,0x5,0xad,0x8e,0x45,0x2b,0xb6,0xe6,0x7,0xd8,0xc3,
-  0x51,0xaa,0x5b,0x6b,0xa4,0xb2,0x6a,0x70,0xe9,0xa1,0xb2,0xff,0xb,0x62,0xc4,0x6d,
-  0x7d,0x1d,0x6a,0x13,0xdd,0x86,0xd8,0x6e,0xeb,0xcf,0x3c,0xda,0xe1,0xfd,0xfc,0x84,
-  0xcb,0xcc,0x9d,0x73,0xfd,0x4d,0x16,0x74,0x88,0x42,0x8,0x23,0x60,0x5,0x6c,0x80,
-  0x3,0x68,0xff,0x1a,0xb,0x60,0x0,0x6a,0xc0,0x7,0x50,0x1,0x8a,0x80,0x6,0x14,
-  0xa5,0x94,0xe5,0x4f,0x42,0xaa,0x26,0x24,0xaa,0x28,0xa,0x7f,0x77,0x9c,0x9f,0xe7,
-  0xbc,0xe1,0x8d,0x3e,0x9d,0x81,0x71,0xb0,0xd2,0x46,0x14,0x4b,0x71,0x48,0x1c,0x6a,
-  0x84,0x82,0x6a,0x11,0x12,0x41,0xed,0x92,0x5c,0x95,0xe4,0xaa,0x88,0x5a,0x44,0x41,
-  0xf4,0xb3,0x88,0x70,0x21,0x24,0xe6,0x36,0x50,0x74,0xd3,0x26,0x6c,0xe3,0xa2,0xda,
-  0x48,0x50,0x10,0x95,0xda,0x8f,0x36,0xd,0x8a,0x39,0x68,0xcc,0xbc,0x19,0xc7,0xe7,
-  0x9b,0x77,0xdf,0x7d,0xf3,0x5a,0xcc,0x4f,0x4f,0xa6,0x71,0x2e,0x7c,0x9c,0x73,0x16,
-  0xe7,0xbb,0xdc,0xfb,0x9d,0xf3,0x55,0xdc,0x87,0x4a,0xc7,0x6a,0x2e,0x16,0x4e,0xb8,
-  0x4e,0x5b,0x80,0xd9,0xbd,0x1a,0xda,0xdf,0x6e,0x93,0xb2,0x4,0x5c,0xe0,0xd0,0xec,
-  0x4e,0x9a,0x82,0x52,0xfd,0x9f,0xf6,0xa6,0xe8,0xeb,0x68,0xc5,0x97,0x30,0x3f,0xd4,
-  0x39,0x27,0x3f,0x2b,0xf4,0x58,0xa,0xc9,0x87,0x30,0x3f,0x66,0xab,0xe6,0xd1,0x36,
-  0x3c,0xd,0xff,0x3e,0x37,0xfc,0x8d,0xc2,0xae,0xb8,0x3f,0xd8,0x86,0xf4,0x1f,0x9,
-  0x8e,0x3,0x7,0xc7,0xcc,0x97,0x16,0x9,0xc4,0xd0,0xf1,0x21,0xeb,0x91,0x33,0x88,
-  0x3d,0x1c,0x80,0x2a,0xab,0x25,0x90,0x57,0xa2,0x68,0x79,0x34,0x1,0xae,0x56,0xc4,
-  0xbb,0x10,0x3f,0xb3,0x8b,0xe0,0x4d,0x88,0x5f,0xd6,0x36,0x62,0x70,0x8a,0x6e,0x68,
-  0xaa,0x6,0xa6,0x31,0x30,0xa6,0xe7,0xa2,0x9,0xab,0x37,0xfb,0xa0,0x35,0x6,0x21,
-  0x76,0x75,0xf7,0x7d,0x3d,0x4c,0xec,0x0,0x60,0x99,0xe9,0x72,0xfa,0xfd,0x3d,0xbd,
-  0x81,0xba,0xeb,0x23,0xd8,0x98,0x1a,0x5,0xa3,0xc,0x4c,0xd3,0xc1,0x54,0x2d,0x97,
-  0x17,0x6a,0xca,0xa0,0x2a,0x14,0xee,0xee,0x30,0x58,0x4a,0x42,0xd4,0xea,0x8c,0x3,
-  0x0,0x79,0x15,0xf6,0x31,0x8f,0xc7,0x53,0x55,0xdf,0xde,0xa,0x79,0x69,0xd1,0x34,
-  0xf7,0x66,0x79,0x49,0xb1,0x26,0x84,0xc0,0x75,0xf9,0x1,0x32,0x2f,0x46,0xf1,0x6d,
-  0xee,0x7d,0xd0,0x5a,0xdf,0xe0,0xaf,0x12,0x8e,0x9e,0xc4,0xfa,0xf4,0x38,0x6c,0x9c,
-  0x3,0xc4,0xce,0xc1,0x62,0xcd,0x89,0x43,0xf2,0x46,0x6a,0x68,0x14,0x0,0x90,0xa5,
-  0x2a,0xc,0x4a,0xc1,0xd7,0x78,0x21,0x7d,0xfe,0x8,0x45,0xd3,0x9f,0x92,0xe7,0xcd,
-  0xdc,0x64,0x53,0x8d,0xed,0xa2,0xfb,0xee,0x38,0xa4,0xfb,0x83,0x15,0x7,0x87,0x3a,
-  0xdd,0x10,0x6b,0x5d,0x90,0x14,0x1d,0xa7,0x5e,0xff,0x24,0x96,0x81,0x88,0xd2,0x9f,
-  0x16,0xbc,0xa0,0x53,0x23,0x90,0xb3,0x76,0x30,0x6a,0xec,0x9,0xcf,0x93,0x49,0x28,
-  0xdb,0xa,0x7e,0x45,0xd6,0x6f,0x17,0x55,0x58,0x5e,0x5a,0x3b,0xb7,0x15,0x89,0x42,
-  0x1c,0x9e,0x0,0xcb,0xa2,0x2c,0x32,0x9d,0xbd,0x90,0xae,0x9e,0x45,0x24,0x96,0xc4,
-  0xe0,0xca,0xce,0xe3,0x22,0xc1,0xb5,0xdf,0x99,0x97,0xf3,0x12,0xd3,0xe5,0x1b,0xfd,
-  0x90,0x7d,0x1,0x30,0x8a,0x12,0x50,0x15,0x70,0x5,0x7b,0x60,0x8,0x1e,0x6c,0x26,
-  0x33,0xc1,0x92,0x51,0x4e,0xc6,0x93,0x5e,0x99,0x6f,0x88,0xbb,0x2e,0x5c,0x82,0xd1,
-  0xd2,0xf1,0xdf,0xf7,0xa7,0xae,0x9c,0xc7,0xbc,0x9a,0x4d,0xdc,0xd9,0xa4,0x9f,0x4a,
-  0x4c,0x95,0x10,0x62,0xbb,0x27,0x3a,0xbe,0x1f,0xb,0x34,0x35,0x97,0xfb,0xc0,0x44,
-  0x2a,0x85,0x5b,0x3f,0x62,0x75,0x6b,0xb9,0x55,0xce,0x9a,0xfd,0xa0,0x1a,0x80,0x90,
-  0xf7,0x3,0x21,0xef,0x5,0x1c,0x0,0x5b,0xbe,0x57,0x3,0xa0,0x2,0x50,0x0,0x24,
-  0x0,0x6c,0x1,0x48,0x1b,0x86,0xa1,0xfd,0x65,0xbd,0x5c,0x43,0x9a,0x8c,0xc2,0x38,
-  0xfe,0x3f,0xdb,0xde,0xdd,0xde,0x6d,0xba,0x4d,0x27,0x39,0x15,0xd3,0xd6,0xc5,0x12,
-  0x2c,0x56,0x94,0xd4,0x87,0xca,0xbe,0x74,0x81,0x12,0x8a,0x40,0x30,0xc8,0xa0,0x12,
-  0x24,0xca,0x3e,0xa4,0x41,0xd1,0x45,0xa4,0x48,0xa9,0x28,0xb,0x53,0x8c,0xa2,0xa2,
-  0x24,0xe8,0xe6,0x97,0xae,0x94,0x62,0x11,0x6a,0x66,0x77,0x67,0x99,0xe8,0xa6,0x6e,
-  0x66,0x6d,0xee,0x7d,0xdb,0xfb,0xee,0x72,0xfa,0x90,0xc5,0xa2,0x2c,0xe7,0x7a,0xe0,
-  0x7c,0x3a,0xf0,0xfc,0x1f,0xce,0xf3,0x9c,0xff,0xef,0x9c,0xa8,0xfd,0x20,0xda,0x90,
-  0x8d,0xb9,0xb3,0x8e,0x48,0x5f,0xba,0x34,0x2d,0xfa,0xa5,0xab,0xb3,0xa4,0x6a,0xcd,
-  0x84,0x92,0x8b,0x7d,0xdd,0xf0,0xb4,0x35,0xb5,0xcf,0x32,0x71,0x56,0x5c,0x9,0xe3,
-  0x77,0xf8,0x1d,0xf9,0xd3,0x9,0xbc,0xce,0x8e,0x31,0xf8,0x59,0xc6,0x66,0xcc,0xce,
-  0x31,0xf0,0x7d,0xdd,0x30,0x17,0x9f,0x4,0x9b,0x61,0x8d,0x48,0xdc,0x7e,0xae,0x2,
-  0xe2,0xe3,0x6b,0x90,0x19,0xe2,0xe1,0x6c,0xbc,0x3d,0xac,0xa,0x48,0x2d,0x19,0xcd,
-  0xee,0xe1,0x7f,0x16,0xd0,0x3c,0x4f,0x93,0xa5,0x8c,0xd3,0xb7,0x24,0xcc,0xb6,0x4a,
-  0x47,0xec,0x76,0xa4,0x95,0xd7,0xc3,0x73,0xb1,0xc,0x5c,0xe7,0xf3,0x71,0x8b,0x13,
-  0x42,0x10,0xbb,0x66,0x33,0x2,0xa,0x3,0x86,0xcf,0x95,0x41,0x39,0xc9,0xc,0xc7,
-  0xa3,0xfb,0xc1,0x80,0x10,0xb4,0x66,0x3f,0xf5,0xb6,0x8f,0x59,0xc0,0x3,0x2b,0xbb,
-  0x22,0x36,0x25,0xe9,0x96,0x3e,0x39,0x5,0x1c,0xef,0xc7,0xd4,0x8a,0xab,0x70,0x1e,
-  0x2a,0x80,0xd0,0xdf,0x37,0xa1,0x16,0xe8,0x16,0x2c,0x83,0x6a,0x49,0x1e,0x7a,0xf6,
-  0xe6,0x43,0x93,0x68,0xc6,0x40,0xcb,0x13,0x70,0x1e,0x7e,0xe5,0xe2,0x16,0xae,0xe1,
-  0xb7,0x2,0xee,0xce,0x51,0xef,0x32,0x4e,0xb1,0x94,0x6b,0x63,0x35,0x10,0x54,0xf1,
-  0x48,0xdd,0x75,0x1c,0xae,0x7d,0xeb,0x21,0x72,0x7c,0x54,0x43,0xc6,0xa6,0x4d,0x43,
-  0xcc,0xe6,0xc3,0xe8,0xda,0x99,0xb,0x5d,0x9c,0x1e,0x43,0x9d,0x36,0x78,0x9c,0xae,
-  0x92,0x9c,0xb6,0xef,0x4e,0x40,0x28,0xa5,0x68,0xc8,0x64,0x6b,0x12,0xb3,0x32,0xb,
-  0x14,0x21,0x3f,0xa8,0x65,0x2e,0x4c,0x2b,0xd7,0x63,0xb8,0x72,0x1b,0x82,0xc1,0x50,
-  0xe4,0x8a,0x3f,0x38,0x16,0x16,0x72,0xa3,0x9,0xc6,0xdd,0x75,0xf8,0x50,0x9a,0xf,
-  0x56,0x26,0xc2,0x3d,0x38,0x84,0xa1,0x1e,0x7b,0xed,0x8a,0x17,0xdc,0x26,0x52,0x3f,
-  0x4d,0xd5,0x98,0x34,0x23,0x7d,0xa1,0x32,0x28,0x40,0xb5,0x6a,0x23,0xe4,0x71,0x93,
-  0xe0,0xbd,0x70,0x18,0x13,0xd1,0xfe,0x5b,0x30,0x8c,0x1c,0xba,0xd2,0x6a,0xb8,0x2f,
-  0x1e,0x43,0xe8,0x7d,0x7,0xbc,0x5f,0x5,0x38,0xde,0xf7,0x36,0xc9,0xc4,0x90,0xa4,
-  0xc8,0xd9,0xff,0xe9,0x59,0x62,0x8c,0x12,0x23,0xe7,0x2b,0x60,0xa8,0xbc,0x1,0x17,
-  0x47,0xa0,0x18,0xfc,0xf8,0xdf,0xc4,0x83,0x14,0x50,0x2c,0xcf,0x3,0x63,0xeb,0x0,
-  0x77,0xef,0x3a,0xe4,0x29,0xa9,0x70,0x7c,0x74,0x40,0xc,0x49,0x8a,0x8,0xa5,0x14,
-  0xa7,0x93,0xd5,0x66,0x95,0x56,0xf1,0xce,0x92,0x92,0xc0,0x52,0xa7,0x1d,0xba,0x83,
-  0x67,0xe1,0xbc,0x52,0xb,0xd2,0xfa,0x10,0x24,0x5a,0xf1,0x10,0xc0,0x6e,0xd8,0xe,
-  0x75,0x88,0xc7,0x97,0x4b,0xd5,0x50,0x4e,0xb6,0xe0,0x55,0xc7,0x3b,0xaf,0xe8,0xc7,
-  0xf4,0x2d,0xbd,0xbc,0xfd,0xe7,0x10,0xd6,0xcf,0x22,0xf2,0x41,0x8f,0xea,0xf5,0x8c,
-  0x29,0x49,0xe9,0x64,0xc0,0xe,0x6d,0x61,0x29,0x46,0x7a,0x7a,0xe0,0xbf,0x79,0x1,
-  0x92,0x9,0x56,0x21,0x86,0x0,0xfd,0xee,0xa3,0x60,0x5a,0xef,0xc2,0x7d,0xa7,0x1,
-  0xc4,0x9c,0x8c,0x37,0x6f,0xbb,0xbb,0x12,0x62,0x84,0x99,0x6b,0x5f,0x52,0xf1,0x8f,
-  0x3e,0x50,0x99,0xa8,0x6a,0x9c,0x9a,0x9e,0xbc,0x90,0x71,0x3a,0xc0,0x2e,0xcf,0x5,
-  0x6f,0x4a,0x85,0x50,0x53,0x1,0xa9,0x24,0x42,0x71,0x9,0x3,0xe3,0x91,0x3a,0x90,
-  0x33,0x65,0xe0,0x6d,0x36,0xf8,0xb4,0x7a,0x74,0xf5,0xe,0x34,0xed,0xe8,0xf7,0x2d,
-  0xfa,0xa7,0x13,0x96,0xc7,0x2b,0xab,0x52,0xcd,0xf1,0x5b,0xb5,0xee,0x2f,0x60,0xe7,
-  0x2f,0x80,0xb0,0x34,0x17,0xae,0x3d,0xc5,0x18,0x2f,0x37,0xa4,0x3a,0x1d,0x4c,0x87,
-  0xaa,0x20,0x39,0x50,0x4,0x1f,0xef,0xc3,0x67,0x22,0x43,0xaf,0xcb,0x7d,0xaa,0xc4,
-  0xe5,0x2b,0x1c,0x97,0x15,0x3,0xc0,0x7e,0xa3,0x72,0x5b,0x92,0x41,0x7b,0xd4,0x20,
-  0x8,0xd0,0x48,0x29,0x64,0x11,0xf6,0xc1,0x17,0xa0,0x10,0xe5,0xa,0x38,0x44,0x3f,
-  0x6,0x39,0xa1,0x68,0xef,0x90,0xef,0xc4,0x98,0x2c,0x20,0x84,0x90,0xb0,0x27,0x35,
-  0x33,0xa,0x29,0x26,0x4f,0xcd,0xe4,0xa4,0xc9,0x49,0x75,0x34,0x43,0xd8,0x19,0xa0,
-  0x85,0x97,0xbd,0xfe,0x7b,0x0,0x2,0xa3,0xeb,0x7,0x96,0x47,0x28,0xa5,0x34,0x62,
-  0x1c,0x8f,0xb2,0x9f,0x9,0x7b,0xf0,0xfd,0xf2,0x4f,0xa6,0x94,0xfa,0x22,0xc9,0xf7,
-  0x6d,0x0,0xe,0x19,0xb9,0x2a,0xab,0x3b,0x72,0x2d,0x0,0x0,0x0,0x0,0x49,0x45,
-  0x4e,0x44,0xae,0x42,0x60,0x82,
-    // /usr/local/google/home/chudy/Ico/next.png
+    // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/next.png
   0x0,0x0,0x3,0xaa,
   0x89,
   0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
@@ -463,7 +233,7 @@ static const unsigned char qt_resource_data[] = {
   0xe1,0x2,0xe3,0xd8,0xcb,0xe5,0xd7,0xed,0x88,0xf7,0x33,0x1c,0xfa,0x35,0x4f,0x3b,
   0xf1,0xbf,0x8b,0xbf,0x1,0x89,0x9f,0x95,0xb4,0x21,0x16,0x51,0x5d,0x0,0x0,0x0,
   0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
-    // /usr/local/google/home/chudy/Ico/inspector.png
+    // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/inspector.png
   0x0,0x0,0x7,0xa8,
   0x89,
   0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
@@ -589,7 +359,93 @@ static const unsigned char qt_resource_data[] = {
   0xc4,0xfc,0xeb,0xc7,0xff,0x95,0xdb,0xff,0x5d,0xb6,0xdd,0x1,0x13,0x77,0xfc,0x5f,
   0x2e,0xfe,0x3,0x8e,0x26,0xc0,0xa6,0x8,0xff,0x6,0x23,0x0,0x0,0x0,0x0,0x49,
   0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
-    // /usr/local/google/home/chudy/Ico/reload.png
+    // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/breakpoint_16x16.png
+  0x0,0x0,0x4,0x54,
+  0x89,
+  0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
+  0x0,0x0,0x10,0x0,0x0,0x0,0x10,0x8,0x6,0x0,0x0,0x0,0x1f,0xf3,0xff,0x61,
+  0x0,0x0,0x4,0x1b,0x49,0x44,0x41,0x54,0x38,0x11,0x1,0x10,0x4,0xef,0xfb,0x0,
+  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+  0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x40,0xc,
+  0xcf,0x14,0x4d,0x5c,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0xe4,0xdf,
+  0x0,0x1e,0xe4,0xb9,0x3,0x1,0xab,0x0,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x39,0xe,0x12,0xe3,0x7e,
+  0x57,0xff,0xf4,0xd5,0xcb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+  0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xde,0x68,
+  0x3c,0xff,0xcc,0x3d,0xb,0xed,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+  0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x49,0x1c,0xfd,0xa,
+  0x16,0x19,0x2,0x14,0x2d,0x30,0x0,0xf5,0xda,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,
+  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0xc,
+  0x58,0x79,0x0,0xf6,0xbb,0xa0,0x0,0xe2,0xbb,0xbb,0x31,0x3b,0xcb,0xf5,0xd0,0x0,
+  0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0xbe,0x33,0xa,0x4a,0x12,0x25,0x28,0x2,
+  0x23,0x92,0xb7,0x0,0xf2,0xd5,0xce,0x0,0xfd,0xfb,0xfd,0x0,0xfd,0xfb,0xfd,0x0,
+  0xfd,0xfb,0xfd,0x0,0xfd,0xfb,0xfd,0x0,0xfd,0xfb,0xfd,0x0,0xfc,0xfa,0xfc,0x0,
+  0xfe,0xdb,0xc8,0x0,0xf2,0xe1,0xe1,0x0,0x4,0xc,0x9,0xcf,0x0,0x0,0x0,0x0,
+  0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x6f,0x3c,0x29,0xda,0xfe,0xd,0x16,
+  0x0,0xf8,0xb8,0x9c,0x0,0xfb,0xf8,0xf9,0x0,0xfe,0xfe,0xfe,0x0,0xfe,0xfe,0xfe,
+  0x0,0xfe,0xfe,0xfe,0x0,0xfe,0xfe,0xfe,0x0,0xfe,0xfe,0xfe,0x0,0xfe,0xfe,0xfe,
+  0x0,0xf7,0xe1,0xdc,0x0,0x1c,0x8a,0xb0,0x0,0xff,0xda,0xc9,0x0,0x4d,0xfb,0xe8,
+  0xf9,0xa3,0xe8,0xfc,0xc4,0x2,0xb4,0x2c,0xa,0x9d,0x7,0x5,0x4,0x0,0x16,0x5d,
+  0x70,0x0,0xf6,0xef,0xf3,0x0,0xfc,0xfa,0xfd,0x0,0xfc,0xfa,0xfd,0x0,0xfc,0xfa,
+  0xfd,0x0,0xfc,0xfa,0xfd,0x0,0xfc,0xfa,0xfd,0x0,0xfc,0xfa,0xfd,0x0,0xfc,0xfa,
+  0xfd,0x0,0xfc,0xfa,0xfd,0x0,0xe8,0x84,0x62,0x0,0xef,0xf1,0xfc,0x0,0xd,0x1a,
+  0x1c,0x87,0x0,0x0,0x0,0x0,0x1,0xc7,0x50,0x2c,0xff,0x11,0x4a,0x5b,0x0,0xfa,
+  0xb9,0xa3,0x0,0xfd,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x7f,0xa0,0x0,0xef,
+  0x83,0x63,0x0,0xda,0xd4,0xdc,0xc4,0x4,0xea,0xe7,0xed,0x0,0x4,0xa3,0x8d,0x0,
+  0xf2,0xb,0x17,0x0,0x7,0xe9,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xff,0x0,0x0,0xa,0xdb,0xd2,0x0,
+  0xfd,0xfe,0xff,0x0,0xfa,0xfe,0x2,0x6d,0x2,0xe6,0xe5,0xf0,0x1b,0xfa,0xa,0x13,
+  0x0,0x15,0x6d,0x81,0x0,0xf9,0xfb,0xff,0x0,0xfa,0xfb,0xff,0x0,0xfa,0xfb,0xff,
+  0x0,0xfa,0xfb,0xff,0x0,0xfa,0xfb,0xff,0x0,0xfa,0xfb,0xff,0x0,0xfa,0xfb,0xff,
+  0x0,0xfa,0xfb,0xff,0x0,0xfa,0xfb,0xff,0x0,0x5,0x59,0x70,0x0,0xe7,0x83,0x6f,
+  0x0,0xcf,0xd0,0xdd,0xf4,0x5b,0xdb,0xf5,0xd0,0x2,0x69,0xe4,0xf7,0xe6,0xce,0xd6,
+  0xe2,0xde,0xeb,0x74,0x5e,0x0,0x0,0x48,0x5b,0x0,0xfc,0xfc,0x0,0x0,0xfc,0xfc,
+  0x0,0x0,0xfc,0xfc,0x0,0x0,0xfc,0xfc,0x0,0x0,0xfc,0xfc,0x0,0x0,0xfc,0xfc,
+  0x0,0x0,0xfc,0xfc,0x0,0x0,0xf6,0xfa,0x0,0x0,0x4,0xe5,0xdb,0x0,0xfc,0x16,
+  0x1d,0x0,0xd,0xa,0xf7,0x13,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x6d,
+  0xe3,0xf7,0x23,0xf6,0x13,0x1b,0x0,0x6,0xfc,0xf8,0x0,0xf8,0xfa,0x0,0x0,0xfb,
+  0xfc,0x0,0x0,0xfb,0xfc,0x0,0x0,0xfb,0xfc,0x0,0x0,0xfb,0xfc,0x0,0x0,0xfb,
+  0xfc,0x0,0x0,0xfb,0xfc,0x0,0x0,0xe,0x8c,0xa4,0x0,0xef,0xba,0xb8,0x0,0xd1,
+  0xd4,0xdf,0xc4,0x56,0xd5,0x0,0xfa,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,
+  0x0,0x0,0x0,0x0,0x2d,0xf6,0xf5,0x18,0xf,0xde,0xda,0x34,0x5,0x7a,0x8c,0x0,
+  0xeb,0xb9,0xb9,0x0,0xf6,0xfa,0x0,0x0,0xf6,0xfa,0x0,0x0,0xf6,0xfa,0x0,0x0,
+  0xf6,0xfa,0x0,0x0,0xf9,0x8,0xe,0x0,0x9,0xc6,0xb8,0x0,0xe9,0xfc,0x2,0x0,
+  0x68,0xe0,0xf2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
+  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x24,0x14,0xff,0x1e,0xfc,0xf8,
+  0x0,0x4,0x2,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x2,0x6,0x0,0xcf,0xef,0xf4,
+  0x6d,0x80,0xed,0xf9,0x94,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,
+  0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0xa,0x5b,0xa,0x5,0x48,0x22,0x6,
+  0x1,0x9b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0xf0,
+  0xfa,0x27,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0xf2,0x1,0x0,
+  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,
+  0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0x0,
+  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,
+  0xf,0x4b,0x5c,0x44,0xc0,0xce,0x74,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,
+  0x42,0x60,0x82,
+    // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/blank.png
+  0x0,0x0,0x0,0x92,
+  0x89,
+  0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
+  0x0,0x0,0x10,0x0,0x0,0x0,0x10,0x8,0x6,0x0,0x0,0x0,0x1f,0xf3,0xff,0x61,
+  0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
+  0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,0xa7,0x93,0x0,
+  0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,0x1,
+  0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,0xdc,0x6,0xb,
+  0x14,0xb,0x34,0x28,0x6,0x22,0x87,0x0,0x0,0x0,0x12,0x49,0x44,0x41,0x54,0x38,
+  0xcb,0x63,0x60,0x18,0x5,0xa3,0x60,0x14,0x8c,0x2,0x8,0x0,0x0,0x4,0x10,0x0,
+  0x1,0x85,0x3f,0xaa,0x72,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,
+  0x82,
+    // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/reload.png
   0x0,0x0,0x7,0x8c,
   0x89,
   0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
@@ -713,7 +569,151 @@ static const unsigned char qt_resource_data[] = {
   0x4a,0x25,0x73,0x0,0x44,0x0,0x84,0x0,0xdc,0x78,0x6b,0x5,0x4a,0x17,0xac,0x88,
   0x52,0x57,0x54,0xcb,0x75,0xf8,0x7f,0xd4,0xec,0x69,0x2,0x3f,0xb2,0xd3,0x69,0x0,
   0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
-    // /usr/local/google/home/chudy/Ico/play.png
+    // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/breakpoint.png
+  0x0,0x0,0x8,0xc7,
+  0x89,
+  0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
+  0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x6,0x0,0x0,0x1,0x4,0x7d,0x4a,0x62,
+  0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,
+  0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xd7,
+  0xfb,0x6f,0x33,0x18,0x1,0x0,0x0,0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x6c,
+  0x9b,0x0,0x0,0x72,0x6f,0x0,0x0,0xf6,0xae,0x0,0x0,0x85,0x83,0x0,0x0,0x6e,
+  0xf7,0x0,0x0,0xe8,0x41,0x0,0x0,0x31,0x74,0x0,0x0,0x17,0x6c,0xa1,0xb6,0x2d,
+  0x9b,0x0,0x0,0x8,0x3d,0x49,0x44,0x41,0x54,0x78,0xda,0x62,0xfc,0xff,0xff,0x3f,
+  0x3,0x32,0x60,0x61,0x60,0x60,0x60,0xf8,0x7a,0x62,0xeb,0xff,0xd7,0x73,0x1a,0x19,
+  0x7e,0x89,0xaa,0x30,0x30,0x2e,0x53,0xe3,0x3c,0xac,0x22,0x23,0x64,0xc3,0xcc,0xcd,
+  0xcb,0xf0,0xe7,0xd3,0x7b,0x6,0x86,0xff,0xff,0xff,0x33,0xec,0x5b,0xb7,0xfa,0xff,
+  0x16,0x45,0xae,0xff,0x3b,0x54,0xb8,0xfe,0x3,0x0,0x0,0x0,0xff,0xff,0x62,0x44,
+  0x37,0x83,0xf1,0x98,0x25,0xf7,0x16,0x49,0x2d,0x2d,0x6f,0x6,0x6,0x6,0x6,0x85,
+  0x39,0xa7,0x18,0x19,0xaf,0x2f,0x9c,0xf4,0xff,0xeb,0xf2,0x9,0x10,0x1b,0x64,0x94,
+  0x18,0x18,0xbb,0x44,0x59,0xd,0xb4,0x78,0x58,0xcf,0x33,0x30,0x30,0x30,0x78,0xdf,
+  0xfb,0xca,0x8,0x0,0x0,0x0,0xff,0xff,0x82,0x9b,0xf1,0xb8,0xcc,0xfb,0xff,0xcb,
+  0x3b,0x4f,0xe0,0x66,0xf1,0xfe,0xff,0xc8,0xa0,0xbe,0xfe,0x1,0x23,0xe3,0xff,0xff,
+  0xff,0x19,0x2e,0x5,0x6b,0xff,0x67,0x63,0x63,0x86,0xda,0xc2,0x8,0xa5,0x18,0x19,
+  0x18,0xf8,0x4,0x19,0x18,0xff,0xff,0xff,0xcf,0xb0,0xdf,0x50,0xe0,0xff,0xbf,0x9f,
+  0xbf,0x51,0x5c,0xf3,0x53,0x42,0x8e,0xe1,0xf7,0xe7,0xf,0x10,0x5,0x8c,0x8c,0x8c,
+  0x4c,0x6b,0xc,0x95,0xfe,0xf2,0xb2,0xb2,0xc1,0x15,0x1c,0xbd,0x73,0xef,0x5e,0xe3,
+  0xdb,0x9f,0xca,0x0,0x0,0x0,0x0,0xff,0xff,0xc2,0xf0,0x7,0x3a,0x60,0x61,0x60,
+  0x60,0x60,0xb8,0x64,0xcd,0x9d,0xf9,0x4b,0x5c,0x65,0x1a,0x4c,0x90,0x9b,0x87,0x9d,
+  0x41,0x73,0xd1,0x29,0x46,0x6,0x6,0x6,0x88,0x15,0xf7,0x52,0x2d,0xff,0x33,0xfd,
+  0xff,0x8b,0xd0,0xc5,0xcd,0xc5,0xf0,0xed,0xf3,0x77,0x6,0xb5,0x79,0x27,0x19,0x99,
+  0x76,0x59,0x8,0x7f,0xe6,0xd0,0xb3,0x62,0xf8,0xf1,0xed,0x27,0xc3,0x8f,0xaf,0x3f,
+  0x18,0x7e,0x7c,0xfd,0xc1,0xf0,0xe5,0xf5,0x7b,0x6,0x16,0xbb,0x70,0x86,0x2d,0x6,
+  0x5c,0xd2,0x8c,0xc7,0x8c,0xb8,0xff,0x33,0x71,0x72,0x32,0xb0,0xf0,0xf2,0x31,0x30,
+  0x32,0x33,0x33,0xfc,0xff,0xfb,0x97,0xe1,0xff,0xdf,0x7f,0xc,0x5f,0x3f,0x7e,0x66,
+  0x60,0x97,0x96,0x61,0x60,0xba,0xfc,0xe6,0x5f,0x25,0x7b,0xf3,0x32,0x86,0xf,0xf,
+  0x5f,0x30,0xbc,0xbf,0xf7,0x94,0xe1,0xc3,0xc3,0x17,0xc,0x1f,0x9f,0xbc,0x62,0x60,
+  0x65,0x60,0x60,0xb0,0x58,0x77,0x1,0x12,0x50,0x7b,0x4c,0xa4,0xff,0xff,0x7c,0xf7,
+  0x1,0xee,0x86,0xff,0xbe,0x91,0xc,0x37,0xd7,0x2c,0xff,0x5b,0xfc,0xf4,0x2b,0xb,
+  0xe3,0xff,0xff,0xff,0x19,0x14,0x19,0x19,0x5,0x66,0x9a,0x69,0xbc,0x47,0xf6,0x9e,
+  0xfb,0xa9,0x1b,0xec,0xff,0xff,0xff,0xff,0x5,0x20,0x94,0xec,0x41,0x12,0xa,0xa3,
+  0x30,0xfc,0x7c,0xf8,0x57,0x69,0xa4,0x9,0xa1,0x4b,0x4e,0x12,0x54,0x50,0x12,0x41,
+  0x63,0x21,0x41,0xb9,0x38,0x35,0x44,0x63,0x5b,0x18,0x8d,0xd5,0x52,0x20,0x84,0x53,
+  0x53,0x83,0x6e,0x6d,0x77,0x8,0x22,0xa8,0xa0,0xa1,0x1f,0x34,0x70,0xac,0x1c,0xc2,
+  0x96,0x74,0xc8,0x8a,0x9b,0x95,0x18,0x7a,0x43,0x3,0xfd,0x5a,0xf2,0x56,0x28,0xf5,
+  0xc2,0xe1,0x3d,0xcb,0x79,0x87,0xe7,0x3d,0x4d,0x1c,0xd2,0xe3,0xb6,0xbf,0xc1,0x48,
+  0xe1,0xef,0x4f,0x94,0xce,0xf4,0xfe,0x7f,0x6,0x64,0x43,0x7e,0x29,0x5d,0x5e,0x3a,
+  0x5e,0x6e,0x40,0xd6,0x9b,0x6e,0x7b,0x36,0xe,0x78,0xc,0xcf,0xa1,0x26,0xe3,0xd1,
+  0xd1,0xa4,0xb6,0xa0,0x7,0xa4,0x7,0x85,0xd9,0x34,0x39,0x5d,0xed,0xa,0xcc,0x53,
+  0x56,0x22,0xd4,0x1b,0xa1,0xd,0x17,0x42,0xdf,0x5d,0xcb,0x31,0xd4,0xcd,0x45,0x72,
+  0xa9,0xeb,0xdb,0x89,0xb,0xcd,0x2b,0xf6,0x6,0xac,0xc3,0x7d,0x63,0x23,0x57,0xce,
+  0x95,0x18,0xf9,0xd5,0x19,0x40,0x2,0xa2,0x85,0x7f,0xcb,0x3e,0x35,0x4b,0xfe,0x50,
+  0xe1,0x3e,0x9b,0xab,0x9,0x29,0x25,0x89,0xa0,0x4f,0x3a,0x3c,0x1e,0x9e,0x4e,0x8f,
+  0x31,0x9b,0x4,0xff,0xc9,0xbd,0x1d,0xe7,0x39,0x14,0x20,0xa3,0x96,0x14,0x9d,0x81,
+  0xe2,0x73,0xcb,0xde,0x4e,0x23,0x5,0xad,0x8e,0x45,0x2b,0xb6,0xe6,0x7,0xd8,0xc3,
+  0x51,0xaa,0x5b,0x6b,0xa4,0xb2,0x6a,0x70,0xe9,0xa1,0xb2,0xff,0xb,0x62,0xc4,0x6d,
+  0x7d,0x1d,0x6a,0x13,0xdd,0x86,0xd8,0x6e,0xeb,0xcf,0x3c,0xda,0xe1,0xfd,0xfc,0x84,
+  0xcb,0xcc,0x9d,0x73,0xfd,0x4d,0x16,0x74,0x88,0x42,0x8,0x23,0x60,0x5,0x6c,0x80,
+  0x3,0x68,0xff,0x1a,0xb,0x60,0x0,0x6a,0xc0,0x7,0x50,0x1,0x8a,0x80,0x6,0x14,
+  0xa5,0x94,0xe5,0x4f,0x42,0xaa,0x26,0x24,0xaa,0x28,0xa,0x7f,0x77,0x9c,0x9f,0xe7,
+  0xbc,0xe1,0x8d,0x3e,0x9d,0x81,0x71,0xb0,0xd2,0x46,0x14,0x4b,0x71,0x48,0x1c,0x6a,
+  0x84,0x82,0x6a,0x11,0x12,0x41,0xed,0x92,0x5c,0x95,0xe4,0xaa,0x88,0x5a,0x44,0x41,
+  0xf4,0xb3,0x88,0x70,0x21,0x24,0xe6,0x36,0x50,0x74,0xd3,0x26,0x6c,0xe3,0xa2,0xda,
+  0x48,0x50,0x10,0x95,0xda,0x8f,0x36,0xd,0x8a,0x39,0x68,0xcc,0xbc,0x19,0xc7,0xe7,
+  0x9b,0x77,0xdf,0x7d,0xf3,0x5a,0xcc,0x4f,0x4f,0xa6,0x71,0x2e,0x7c,0x9c,0x73,0x16,
+  0xe7,0xbb,0xdc,0xfb,0x9d,0xf3,0x55,0xdc,0x87,0x4a,0xc7,0x6a,0x2e,0x16,0x4e,0xb8,
+  0x4e,0x5b,0x80,0xd9,0xbd,0x1a,0xda,0xdf,0x6e,0x93,0xb2,0x4,0x5c,0xe0,0xd0,0xec,
+  0x4e,0x9a,0x82,0x52,0xfd,0x9f,0xf6,0xa6,0xe8,0xeb,0x68,0xc5,0x97,0x30,0x3f,0xd4,
+  0x39,0x27,0x3f,0x2b,0xf4,0x58,0xa,0xc9,0x87,0x30,0x3f,0x66,0xab,0xe6,0xd1,0x36,
+  0x3c,0xd,0xff,0x3e,0x37,0xfc,0x8d,0xc2,0xae,0xb8,0x3f,0xd8,0x86,0xf4,0x1f,0x9,
+  0x8e,0x3,0x7,0xc7,0xcc,0x97,0x16,0x9,0xc4,0xd0,0xf1,0x21,0xeb,0x91,0x33,0x88,
+  0x3d,0x1c,0x80,0x2a,0xab,0x25,0x90,0x57,0xa2,0x68,0x79,0x34,0x1,0xae,0x56,0xc4,
+  0xbb,0x10,0x3f,0xb3,0x8b,0xe0,0x4d,0x88,0x5f,0xd6,0x36,0x62,0x70,0x8a,0x6e,0x68,
+  0xaa,0x6,0xa6,0x31,0x30,0xa6,0xe7,0xa2,0x9,0xab,0x37,0xfb,0xa0,0x35,0x6,0x21,
+  0x76,0x75,0xf7,0x7d,0x3d,0x4c,0xec,0x0,0x60,0x99,0xe9,0x72,0xfa,0xfd,0x3d,0xbd,
+  0x81,0xba,0xeb,0x23,0xd8,0x98,0x1a,0x5,0xa3,0xc,0x4c,0xd3,0xc1,0x54,0x2d,0x97,
+  0x17,0x6a,0xca,0xa0,0x2a,0x14,0xee,0xee,0x30,0x58,0x4a,0x42,0xd4,0xea,0x8c,0x3,
+  0x0,0x79,0x15,0xf6,0x31,0x8f,0xc7,0x53,0x55,0xdf,0xde,0xa,0x79,0x69,0xd1,0x34,
+  0xf7,0x66,0x79,0x49,0xb1,0x26,0x84,0xc0,0x75,0xf9,0x1,0x32,0x2f,0x46,0xf1,0x6d,
+  0xee,0x7d,0xd0,0x5a,0xdf,0xe0,0xaf,0x12,0x8e,0x9e,0xc4,0xfa,0xf4,0x38,0x6c,0x9c,
+  0x3,0xc4,0xce,0xc1,0x62,0xcd,0x89,0x43,0xf2,0x46,0x6a,0x68,0x14,0x0,0x90,0xa5,
+  0x2a,0xc,0x4a,0xc1,0xd7,0x78,0x21,0x7d,0xfe,0x8,0x45,0xd3,0x9f,0x92,0xe7,0xcd,
+  0xdc,0x64,0x53,0x8d,0xed,0xa2,0xfb,0xee,0x38,0xa4,0xfb,0x83,0x15,0x7,0x87,0x3a,
+  0xdd,0x10,0x6b,0x5d,0x90,0x14,0x1d,0xa7,0x5e,0xff,0x24,0x96,0x81,0x88,0xd2,0x9f,
+  0x16,0xbc,0xa0,0x53,0x23,0x90,0xb3,0x76,0x30,0x6a,0xec,0x9,0xcf,0x93,0x49,0x28,
+  0xdb,0xa,0x7e,0x45,0xd6,0x6f,0x17,0x55,0x58,0x5e,0x5a,0x3b,0xb7,0x15,0x89,0x42,
+  0x1c,0x9e,0x0,0xcb,0xa2,0x2c,0x32,0x9d,0xbd,0x90,0xae,0x9e,0x45,0x24,0x96,0xc4,
+  0xe0,0xca,0xce,0xe3,0x22,0xc1,0xb5,0xdf,0x99,0x97,0xf3,0x12,0xd3,0xe5,0x1b,0xfd,
+  0x90,0x7d,0x1,0x30,0x8a,0x12,0x50,0x15,0x70,0x5,0x7b,0x60,0x8,0x1e,0x6c,0x26,
+  0x33,0xc1,0x92,0x51,0x4e,0xc6,0x93,0x5e,0x99,0x6f,0x88,0xbb,0x2e,0x5c,0x82,0xd1,
+  0xd2,0xf1,0xdf,0xf7,0xa7,0xae,0x9c,0xc7,0xbc,0x9a,0x4d,0xdc,0xd9,0xa4,0x9f,0x4a,
+  0x4c,0x95,0x10,0x62,0xbb,0x27,0x3a,0xbe,0x1f,0xb,0x34,0x35,0x97,0xfb,0xc0,0x44,
+  0x2a,0x85,0x5b,0x3f,0x62,0x75,0x6b,0xb9,0x55,0xce,0x9a,0xfd,0xa0,0x1a,0x80,0x90,
+  0xf7,0x3,0x21,0xef,0x5,0x1c,0x0,0x5b,0xbe,0x57,0x3,0xa0,0x2,0x50,0x0,0x24,
+  0x0,0x6c,0x1,0x48,0x1b,0x86,0xa1,0xfd,0x65,0xbd,0x5c,0x43,0x9a,0x8c,0xc2,0x38,
+  0xfe,0x3f,0xdb,0xde,0xdd,0xde,0x6d,0xba,0x4d,0x27,0x39,0x15,0xd3,0xd6,0xc5,0x12,
+  0x2c,0x56,0x94,0xd4,0x87,0xca,0xbe,0x74,0x81,0x12,0x8a,0x40,0x30,0xc8,0xa0,0x12,
+  0x24,0xca,0x3e,0xa4,0x41,0xd1,0x45,0xa4,0x48,0xa9,0x28,0xb,0x53,0x8c,0xa2,0xa2,
+  0x24,0xe8,0xe6,0x97,0xae,0x94,0x62,0x11,0x6a,0x66,0x77,0x67,0x99,0xe8,0xa6,0x6e,
+  0x66,0x6d,0xee,0x7d,0xdb,0xfb,0xee,0x72,0xfa,0x90,0xc5,0xa2,0x2c,0xe7,0x7a,0xe0,
+  0x7c,0x3a,0xf0,0xfc,0x1f,0xce,0xf3,0x9c,0xff,0xef,0x9c,0xa8,0xfd,0x20,0xda,0x90,
+  0x8d,0xb9,0xb3,0x8e,0x48,0x5f,0xba,0x34,0x2d,0xfa,0xa5,0xab,0xb3,0xa4,0x6a,0xcd,
+  0x84,0x92,0x8b,0x7d,0xdd,0xf0,0xb4,0x35,0xb5,0xcf,0x32,0x71,0x56,0x5c,0x9,0xe3,
+  0x77,0xf8,0x1d,0xf9,0xd3,0x9,0xbc,0xce,0x8e,0x31,0xf8,0x59,0xc6,0x66,0xcc,0xce,
+  0x31,0xf0,0x7d,0xdd,0x30,0x17,0x9f,0x4,0x9b,0x61,0x8d,0x48,0xdc,0x7e,0xae,0x2,
+  0xe2,0xe3,0x6b,0x90,0x19,0xe2,0xe1,0x6c,0xbc,0x3d,0xac,0xa,0x48,0x2d,0x19,0xcd,
+  0xee,0xe1,0x7f,0x16,0xd0,0x3c,0x4f,0x93,0xa5,0x8c,0xd3,0xb7,0x24,0xcc,0xb6,0x4a,
+  0x47,0xec,0x76,0xa4,0x95,0xd7,0xc3,0x73,0xb1,0xc,0x5c,0xe7,0xf3,0x71,0x8b,0x13,
+  0x42,0x10,0xbb,0x66,0x33,0x2,0xa,0x3,0x86,0xcf,0x95,0x41,0x39,0xc9,0xc,0xc7,
+  0xa3,0xfb,0xc1,0x80,0x10,0xb4,0x66,0x3f,0xf5,0xb6,0x8f,0x59,0xc0,0x3,0x2b,0xbb,
+  0x22,0x36,0x25,0xe9,0x96,0x3e,0x39,0x5,0x1c,0xef,0xc7,0xd4,0x8a,0xab,0x70,0x1e,
+  0x2a,0x80,0xd0,0xdf,0x37,0xa1,0x16,0xe8,0x16,0x2c,0x83,0x6a,0x49,0x1e,0x7a,0xf6,
+  0xe6,0x43,0x93,0x68,0xc6,0x40,0xcb,0x13,0x70,0x1e,0x7e,0xe5,0xe2,0x16,0xae,0xe1,
+  0xb7,0x2,0xee,0xce,0x51,0xef,0x32,0x4e,0xb1,0x94,0x6b,0x63,0x35,0x10,0x54,0xf1,
+  0x48,0xdd,0x75,0x1c,0xae,0x7d,0xeb,0x21,0x72,0x7c,0x54,0x43,0xc6,0xa6,0x4d,0x43,
+  0xcc,0xe6,0xc3,0xe8,0xda,0x99,0xb,0x5d,0x9c,0x1e,0x43,0x9d,0x36,0x78,0x9c,0xae,
+  0x92,0x9c,0xb6,0xef,0x4e,0x40,0x28,0xa5,0x68,0xc8,0x64,0x6b,0x12,0xb3,0x32,0xb,
+  0x14,0x21,0x3f,0xa8,0x65,0x2e,0x4c,0x2b,0xd7,0x63,0xb8,0x72,0x1b,0x82,0xc1,0x50,
+  0xe4,0x8a,0x3f,0x38,0x16,0x16,0x72,0xa3,0x9,0xc6,0xdd,0x75,0xf8,0x50,0x9a,0xf,
+  0x56,0x26,0xc2,0x3d,0x38,0x84,0xa1,0x1e,0x7b,0xed,0x8a,0x17,0xdc,0x26,0x52,0x3f,
+  0x4d,0xd5,0x98,0x34,0x23,0x7d,0xa1,0x32,0x28,0x40,0xb5,0x6a,0x23,0xe4,0x71,0x93,
+  0xe0,0xbd,0x70,0x18,0x13,0xd1,0xfe,0x5b,0x30,0x8c,0x1c,0xba,0xd2,0x6a,0xb8,0x2f,
+  0x1e,0x43,0xe8,0x7d,0x7,0xbc,0x5f,0x5,0x38,0xde,0xf7,0x36,0xc9,0xc4,0x90,0xa4,
+  0xc8,0xd9,0xff,0xe9,0x59,0x62,0x8c,0x12,0x23,0xe7,0x2b,0x60,0xa8,0xbc,0x1,0x17,
+  0x47,0xa0,0x18,0xfc,0xf8,0xdf,0xc4,0x83,0x14,0x50,0x2c,0xcf,0x3,0x63,0xeb,0x0,
+  0x77,0xef,0x3a,0xe4,0x29,0xa9,0x70,0x7c,0x74,0x40,0xc,0x49,0x8a,0x8,0xa5,0x14,
+  0xa7,0x93,0xd5,0x66,0x95,0x56,0xf1,0xce,0x92,0x92,0xc0,0x52,0xa7,0x1d,0xba,0x83,
+  0x67,0xe1,0xbc,0x52,0xb,0xd2,0xfa,0x10,0x24,0x5a,0xf1,0x10,0xc0,0x6e,0xd8,0xe,
+  0x75,0x88,0xc7,0x97,0x4b,0xd5,0x50,0x4e,0xb6,0xe0,0x55,0xc7,0x3b,0xaf,0xe8,0xc7,
+  0xf4,0x2d,0xbd,0xbc,0xfd,0xe7,0x10,0xd6,0xcf,0x22,0xf2,0x41,0x8f,0xea,0xf5,0x8c,
+  0x29,0x49,0xe9,0x64,0xc0,0xe,0x6d,0x61,0x29,0x46,0x7a,0x7a,0xe0,0xbf,0x79,0x1,
+  0x92,0x9,0x56,0x21,0x86,0x0,0xfd,0xee,0xa3,0x60,0x5a,0xef,0xc2,0x7d,0xa7,0x1,
+  0xc4,0x9c,0x8c,0x37,0x6f,0xbb,0xbb,0x12,0x62,0x84,0x99,0x6b,0x5f,0x52,0xf1,0x8f,
+  0x3e,0x50,0x99,0xa8,0x6a,0x9c,0x9a,0x9e,0xbc,0x90,0x71,0x3a,0xc0,0x2e,0xcf,0x5,
+  0x6f,0x4a,0x85,0x50,0x53,0x1,0xa9,0x24,0x42,0x71,0x9,0x3,0xe3,0x91,0x3a,0x90,
+  0x33,0x65,0xe0,0x6d,0x36,0xf8,0xb4,0x7a,0x74,0xf5,0xe,0x34,0xed,0xe8,0xf7,0x2d,
+  0xfa,0xa7,0x13,0x96,0xc7,0x2b,0xab,0x52,0xcd,0xf1,0x5b,0xb5,0xee,0x2f,0x60,0xe7,
+  0x2f,0x80,0xb0,0x34,0x17,0xae,0x3d,0xc5,0x18,0x2f,0x37,0xa4,0x3a,0x1d,0x4c,0x87,
+  0xaa,0x20,0x39,0x50,0x4,0x1f,0xef,0xc3,0x67,0x22,0x43,0xaf,0xcb,0x7d,0xaa,0xc4,
+  0xe5,0x2b,0x1c,0x97,0x15,0x3,0xc0,0x7e,0xa3,0x72,0x5b,0x92,0x41,0x7b,0xd4,0x20,
+  0x8,0xd0,0x48,0x29,0x64,0x11,0xf6,0xc1,0x17,0xa0,0x10,0xe5,0xa,0x38,0x44,0x3f,
+  0x6,0x39,0xa1,0x68,0xef,0x90,0xef,0xc4,0x98,0x2c,0x20,0x84,0x90,0xb0,0x27,0x35,
+  0x33,0xa,0x29,0x26,0x4f,0xcd,0xe4,0xa4,0xc9,0x49,0x75,0x34,0x43,0xd8,0x19,0xa0,
+  0x85,0x97,0xbd,0xfe,0x7b,0x0,0x2,0xa3,0xeb,0x7,0x96,0x47,0x28,0xa5,0x34,0x62,
+  0x1c,0x8f,0xb2,0x9f,0x9,0x7b,0xf0,0xfd,0xf2,0x4f,0xa6,0x94,0xfa,0x22,0xc9,0xf7,
+  0x6d,0x0,0xe,0x19,0xb9,0x2a,0xab,0x3b,0x72,0x2d,0x0,0x0,0x0,0x0,0x49,0x45,
+  0x4e,0x44,0xae,0x42,0x60,0x82,
+    // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/play.png
   0x0,0x0,0x4,0x31,
   0x89,
   0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
@@ -783,8 +783,8 @@ static const unsigned char qt_resource_data[] = {
   0x96,0x1b,0xaa,0x3c,0xb0,0xd,0x98,0x7,0xfe,0x5a,0xe7,0x6c,0x6,0x68,0x3,0x5a,
   0x81,0x65,0x60,0x1a,0x77,0xf9,0x37,0xea,0x7f,0x5e,0x7f,0x3,0x6e,0xb2,0xc3,0xf0,
   0x1c,0xaa,0x77,0x3f,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
-
-    // /usr/local/google/home/chudy/Ico/pause.png
+  
+    // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/pause.png
   0x0,0x0,0x4,0x9d,
   0x89,
   0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
@@ -861,7 +861,7 @@ static const unsigned char qt_resource_data[] = {
   0xf7,0x9e,0x3c,0x96,0x3f,0xb,0x80,0x0,0xfa,0x94,0xe7,0xbe,0x54,0x95,0x3e,0x23,
   0x5f,0x79,0x72,0xf3,0xe7,0xb,0xe0,0x3f,0x84,0x11,0xd1,0x4,0x27,0x48,0x17,0xe1,
   0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
-    // /usr/local/google/home/chudy/Ico/rewind.png
+    // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/rewind.png
   0x0,0x0,0x4,0x51,
   0x89,
   0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
@@ -933,8 +933,8 @@ static const unsigned char qt_resource_data[] = {
   0xa0,0x17,0xb8,0xc5,0x2e,0xee,0x84,0xc9,0x6d,0x62,0xf,0xb6,0x24,0x7a,0xb,0xf0,
   0xd8,0x1c,0x6c,0x6,0x3,0x76,0x71,0x2d,0xbf,0x6f,0xff,0x1,0x15,0x13,0xb7,0x7f,
   0x67,0x24,0x89,0x36,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
-
-    // /usr/local/google/home/chudy/Ico/previous.png
+  
+    // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/previous.png
   0x0,0x0,0x3,0xaf,
   0x89,
   0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
@@ -996,26 +996,11 @@ static const unsigned char qt_resource_data[] = {
   0x2a,0x15,0xd6,0xc6,0x2f,0x71,0x6,0x9b,0x95,0x25,0x6b,0x29,0x37,0x99,0x4,0x36,
   0x60,0xe1,0x6f,0x2d,0x17,0x60,0x55,0xab,0xfa,0x7,0x42,0xae,0x87,0xb8,0x50,0x72,
   0xc9,0x52,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
-
+  
 };
 
 static const unsigned char qt_resource_name[] = {
-  // images
-  0x0,0x6,
-  0x7,0x3,0x7d,0xc3,
-  0x0,0x69,
-  0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,
-    // Ico
-  0x0,0x3,
-  0x0,0x0,0x4f,0x9f,
-  0x0,0x49,
-  0x0,0x63,0x0,0x6f,
-    // Icons
-  0x0,0x5,
-  0x0,0x4f,0xa6,0x53,
-  0x0,0x49,
-  0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73,
-    // skia.png
+  // skia.png
   0x0,0x8,
   0x1,0xf4,0x58,0x7,
   0x0,0x73,
@@ -1025,6 +1010,16 @@ static const unsigned char qt_resource_name[] = {
   0xc,0xad,0xf,0x7,
   0x0,0x64,
   0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
+    // next.png
+  0x0,0x8,
+  0xc,0xf7,0x59,0xc7,
+  0x0,0x6e,
+  0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
+    // inspector.png
+  0x0,0xd,
+  0xb,0xd1,0x81,0xc7,
+  0x0,0x69,
+  0x0,0x6e,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
     // breakpoint_16x16.png
   0x0,0x14,
   0x9,0x1d,0xb7,0x27,
@@ -1036,26 +1031,16 @@ static const unsigned char qt_resource_name[] = {
   0x8,0x4e,0x85,0x7,
   0x0,0x62,
   0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x6b,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
-    // breakpoint.png
-  0x0,0xe,
-  0x1,0x27,0x3,0xa7,
-  0x0,0x62,
-  0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x6b,0x0,0x70,0x0,0x6f,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
-    // next.png
-  0x0,0x8,
-  0xc,0xf7,0x59,0xc7,
-  0x0,0x6e,
-  0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
-    // inspector.png
-  0x0,0xd,
-  0xb,0xd1,0x81,0xc7,
-  0x0,0x69,
-  0x0,0x6e,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
     // reload.png
   0x0,0xa,
   0x5,0x78,0x4f,0x27,
   0x0,0x72,
   0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x61,0x0,0x64,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
+    // breakpoint.png
+  0x0,0xe,
+  0x1,0x27,0x3,0xa7,
+  0x0,0x62,
+  0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x6b,0x0,0x70,0x0,0x6f,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
     // play.png
   0x0,0x8,
   0x2,0x8c,0x59,0xa7,
@@ -1076,42 +1061,36 @@ static const unsigned char qt_resource_name[] = {
   0x8,0x37,0xcd,0x47,
   0x0,0x70,
   0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
-
+  
 };
 
 static const unsigned char qt_resource_struct[] = {
   // :
-  0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,
-  // :/images
-  0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,
-  // :/images/Ico
-  0x0,0x0,0x0,0x12,0x0,0x2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x9,
-  // :/images/Icons
-  0x0,0x0,0x0,0x1e,0x0,0x2,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x4,
-  // :/images/Icons/breakpoint.png
-  0x0,0x0,0x0,0xa4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xe,0x9b,
-  // :/images/Icons/skia.png
-  0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
-  // :/images/Icons/blank.png
-  0x0,0x0,0x0,0x8c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xe,0x5,
-  // :/images/Icons/breakpoint_16x16.png
-  0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x9,0xad,
-  // :/images/Icons/delete.png
-  0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x4,0x22,
-  // :/images/Ico/rewind.png
-  0x0,0x0,0x1,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x33,0x26,
-  // :/images/Ico/play.png
-  0x0,0x0,0x1,0x16,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x2a,0x50,
-  // :/images/Ico/reload.png
-  0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x22,0xc0,
-  // :/images/Ico/previous.png
-  0x0,0x0,0x1,0x5e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x37,0x7b,
-  // :/images/Ico/inspector.png
-  0x0,0x0,0x0,0xdc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x1b,0x14,
-  // :/images/Ico/pause.png
-  0x0,0x0,0x1,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x2e,0x85,
-  // :/images/Ico/next.png
-  0x0,0x0,0x0,0xc6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x17,0x66,
+  0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x1,
+  // :/rewind.png
+  0x0,0x0,0x1,0x16,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x33,0x26,
+  // :/breakpoint.png
+  0x0,0x0,0x0,0xc6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x21,0x85,
+  // :/skia.png
+  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
+  // :/play.png
+  0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x2a,0x50,
+  // :/reload.png
+  0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x19,0xf5,
+  // :/previous.png
+  0x0,0x0,0x1,0x30,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x37,0x7b,
+  // :/blank.png
+  0x0,0x0,0x0,0x94,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x19,0x5f,
+  // :/breakpoint_16x16.png
+  0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x15,0x7,
+  // :/inspector.png
+  0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xd,0x5b,
+  // :/pause.png
+  0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x2e,0x85,
+  // :/delete.png
+  0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x4,0x22,
+  // :/next.png
+  0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x9,0xad,
 
 };
 
@@ -1126,21 +1105,21 @@ extern Q_CORE_EXPORT bool qUnregisterResourceData
 QT_END_NAMESPACE
 
 
-int QT_MANGLE_NAMESPACE(qInitResources_SkIcons)()
+int QT_MANGLE_NAMESPACE(qInitResources)()
 {
     QT_PREPEND_NAMESPACE(qRegisterResourceData)
         (0x01, qt_resource_struct, qt_resource_name, qt_resource_data);
     return 1;
 }
 
-Q_CONSTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qInitResources_SkIcons))
+Q_CONSTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qInitResources))
 
-int QT_MANGLE_NAMESPACE(qCleanupResources_SkIcons)()
+int QT_MANGLE_NAMESPACE(qCleanupResources)()
 {
     QT_PREPEND_NAMESPACE(qUnregisterResourceData)
        (0x01, qt_resource_struct, qt_resource_name, qt_resource_data);
     return 1;
 }
 
-Q_DESTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qCleanupResources_SkIcons))
+Q_DESTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qCleanupResources))