From 3877187da04b56e1d73fa526eb099ee7de187908 Mon Sep 17 00:00:00 2001 From: Brian Date: Sun, 22 Dec 2013 21:22:21 -0700 Subject: [PATCH] QT Project configured and compiling. Still doesn't do much, that will come in the following months. --- {code/build => bin}/.gitkeep | 0 bin/settings.xml | 25 ----- code/.gitignore | 27 +++++ code/build/.gitignore | 53 --------- code/build/FileWatcher.pro | 55 +++++++++ code/build/res/arrow_fat_down.gif | Bin 0 -> 91 bytes code/build/res/arrow_fat_up.gif | Bin 0 -> 90 bytes code/build/res/arrow_mini_down.gif | Bin 0 -> 79 bytes code/build/res/arrow_mini_up.gif | Bin 0 -> 79 bytes code/build/res/block.gif | Bin 0 -> 96 bytes code/build/res/cross.gif | Bin 0 -> 90 bytes code/build/res/drop_box.gif | Bin 0 -> 100 bytes code/build/res/folder.gif | Bin 0 -> 90 bytes code/build/res/play.png | Bin 0 -> 958 bytes code/build/res/plus.gif | Bin 0 -> 91 bytes code/build/res/save.gif | Bin 0 -> 124 bytes code/build/res/script.gif | Bin 0 -> 91 bytes code/build/res/settings.png | Bin 0 -> 454 bytes .../stock_3d-texture-and-shading_128x128.ico | Bin 0 -> 67646 bytes .../stock_3d-texture-and-shading_128x128.png | Bin 0 -> 22390 bytes .../stock_3d-texture-and-shading_16x16.ico | Bin 0 -> 1150 bytes .../stock_3d-texture-and-shading_16x16.png | Bin 0 -> 901 bytes .../stock_3d-texture-and-shading_256x256.ico | Bin 0 -> 270398 bytes .../stock_3d-texture-and-shading_256x256.png | Bin 0 -> 50802 bytes .../stock_3d-texture-and-shading_32x32.ico | Bin 0 -> 5430 bytes .../stock_3d-texture-and-shading_32x32.png | Bin 0 -> 2391 bytes .../stock_3d-texture-and-shading_48x48.png | Bin 0 -> 4402 bytes .../stock_3d-texture-spherical_128x128.ico | Bin 0 -> 67646 bytes .../stock_3d-texture-spherical_128x128.png | Bin 0 -> 21128 bytes .../res/stock_3d-texture-spherical_16x16.ico | Bin 0 -> 1150 bytes .../res/stock_3d-texture-spherical_16x16.png | Bin 0 -> 901 bytes .../stock_3d-texture-spherical_256x256.ico | Bin 0 -> 270398 bytes .../stock_3d-texture-spherical_256x256.png | Bin 0 -> 51564 bytes .../res/stock_3d-texture-spherical_32x32.ico | Bin 0 -> 4286 bytes .../res/stock_3d-texture-spherical_32x32.png | Bin 0 -> 2415 bytes .../res/stock_3d-texture-spherical_48x48.png | Bin 0 -> 4391 bytes code/build/res/stop.png | Bin 0 -> 922 bytes code/build/res/trash.gif | Bin 0 -> 96 bytes code/build/res/warning.gif | Bin 0 -> 91 bytes code/src/main.cpp | 11 ++ code/src/mainwindow.cpp | 14 +++ code/src/mainwindow.h | 22 ++++ code/src/mainwindow.ui | 106 ++++++++++++++++++ 43 files changed, 235 insertions(+), 78 deletions(-) rename {code/build => bin}/.gitkeep (100%) delete mode 100644 bin/settings.xml create mode 100644 code/.gitignore delete mode 100644 code/build/.gitignore create mode 100644 code/build/FileWatcher.pro create mode 100644 code/build/res/arrow_fat_down.gif create mode 100644 code/build/res/arrow_fat_up.gif create mode 100644 code/build/res/arrow_mini_down.gif create mode 100644 code/build/res/arrow_mini_up.gif create mode 100644 code/build/res/block.gif create mode 100644 code/build/res/cross.gif create mode 100644 code/build/res/drop_box.gif create mode 100644 code/build/res/folder.gif create mode 100644 code/build/res/play.png create mode 100644 code/build/res/plus.gif create mode 100644 code/build/res/save.gif create mode 100644 code/build/res/script.gif create mode 100644 code/build/res/settings.png create mode 100644 code/build/res/stock_3d-texture-and-shading_128x128.ico create mode 100644 code/build/res/stock_3d-texture-and-shading_128x128.png create mode 100644 code/build/res/stock_3d-texture-and-shading_16x16.ico create mode 100644 code/build/res/stock_3d-texture-and-shading_16x16.png create mode 100644 code/build/res/stock_3d-texture-and-shading_256x256.ico create mode 100644 code/build/res/stock_3d-texture-and-shading_256x256.png create mode 100644 code/build/res/stock_3d-texture-and-shading_32x32.ico create mode 100644 code/build/res/stock_3d-texture-and-shading_32x32.png create mode 100644 code/build/res/stock_3d-texture-and-shading_48x48.png create mode 100644 code/build/res/stock_3d-texture-spherical_128x128.ico create mode 100644 code/build/res/stock_3d-texture-spherical_128x128.png create mode 100644 code/build/res/stock_3d-texture-spherical_16x16.ico create mode 100644 code/build/res/stock_3d-texture-spherical_16x16.png create mode 100644 code/build/res/stock_3d-texture-spherical_256x256.ico create mode 100644 code/build/res/stock_3d-texture-spherical_256x256.png create mode 100644 code/build/res/stock_3d-texture-spherical_32x32.ico create mode 100644 code/build/res/stock_3d-texture-spherical_32x32.png create mode 100644 code/build/res/stock_3d-texture-spherical_48x48.png create mode 100644 code/build/res/stop.png create mode 100644 code/build/res/trash.gif create mode 100644 code/build/res/warning.gif create mode 100644 code/src/main.cpp create mode 100644 code/src/mainwindow.cpp create mode 100644 code/src/mainwindow.h create mode 100644 code/src/mainwindow.ui diff --git a/code/build/.gitkeep b/bin/.gitkeep similarity index 100% rename from code/build/.gitkeep rename to bin/.gitkeep diff --git a/bin/settings.xml b/bin/settings.xml deleted file mode 100644 index ee574e4..0000000 --- a/bin/settings.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - -