QT Project configured and compiling.
Still doesn't do much, that will come in the following months.
							
								
								
									
										53
									
								
								code/build/.gitignore
									
										
									
									
										vendored
									
									
								
							
							
						
						| 
						 | 
				
			
			@ -1,53 +0,0 @@
 | 
			
		|||
## Ignore Visual Studio temporary files, build results, and
 | 
			
		||||
## files generated by popular Visual Studio add-ons.
 | 
			
		||||
# https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
 | 
			
		||||
 | 
			
		||||
# User-specific files
 | 
			
		||||
*.suo
 | 
			
		||||
*.user
 | 
			
		||||
*.sln.docstates
 | 
			
		||||
 | 
			
		||||
# Build results
 | 
			
		||||
[Dd]ebug/
 | 
			
		||||
[Rr]elease/
 | 
			
		||||
x64/
 | 
			
		||||
[Bb]in/
 | 
			
		||||
[Oo]bj/
 | 
			
		||||
 | 
			
		||||
# Visual C++ cache files
 | 
			
		||||
ipch/
 | 
			
		||||
*.aps
 | 
			
		||||
*.ncb
 | 
			
		||||
*.opensdf
 | 
			
		||||
*.sdf
 | 
			
		||||
*.cachefile
 | 
			
		||||
 | 
			
		||||
# Visual Studio profiler
 | 
			
		||||
*.psess
 | 
			
		||||
*.vsp
 | 
			
		||||
*.vspx
 | 
			
		||||
 | 
			
		||||
# NuGet Packages Directory
 | 
			
		||||
packages/
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# Backup & report files from converting an old project file to a newer
 | 
			
		||||
# Visual Studio version. Backup files are not needed, because we have git ;-)
 | 
			
		||||
_UpgradeReport_Files/
 | 
			
		||||
Backup*/
 | 
			
		||||
UpgradeLog*.XML
 | 
			
		||||
UpgradeLog*.htm
 | 
			
		||||
 | 
			
		||||
# =========================
 | 
			
		||||
# Windows detritus
 | 
			
		||||
# =========================
 | 
			
		||||
 | 
			
		||||
# Windows image file caches
 | 
			
		||||
Thumbs.db
 | 
			
		||||
ehthumbs.db
 | 
			
		||||
 | 
			
		||||
# Folder config file
 | 
			
		||||
Desktop.ini
 | 
			
		||||
 | 
			
		||||
# Recycle Bin used on file shares
 | 
			
		||||
$RECYCLE.BIN/
 | 
			
		||||
							
								
								
									
										55
									
								
								code/build/FileWatcher.pro
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
						 | 
				
			
			@ -0,0 +1,55 @@
 | 
			
		|||
#-------------------------------------------------
 | 
			
		||||
#
 | 
			
		||||
# Project created by QtCreator 2013-12-22T20:34:26
 | 
			
		||||
#
 | 
			
		||||
#-------------------------------------------------
 | 
			
		||||
 | 
			
		||||
QT       += core gui
 | 
			
		||||
 | 
			
		||||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
 | 
			
		||||
 | 
			
		||||
TARGET = FileWatcher
 | 
			
		||||
TEMPLATE = app
 | 
			
		||||
 | 
			
		||||
SOURCES += ../src/main.cpp \
 | 
			
		||||
    ../src/mainwindow.cpp
 | 
			
		||||
 | 
			
		||||
HEADERS  += ../src/mainwindow.h
 | 
			
		||||
 | 
			
		||||
FORMS    += ../src/mainwindow.ui
 | 
			
		||||
 | 
			
		||||
OTHER_FILES += \
 | 
			
		||||
    res/arrow_fat_down.gif \
 | 
			
		||||
    res/arrow_fat_up.gif \
 | 
			
		||||
    res/arrow_mini_down.gif \
 | 
			
		||||
    res/arrow_mini_up.gif \
 | 
			
		||||
    res/block.gif \
 | 
			
		||||
    res/cross.gif \
 | 
			
		||||
    res/drop_box.gif \
 | 
			
		||||
    res/folder.gif \
 | 
			
		||||
    res/plus.gif \
 | 
			
		||||
    res/save.gif \
 | 
			
		||||
    res/script.gif \
 | 
			
		||||
    res/trash.gif \
 | 
			
		||||
    res/warning.gif \
 | 
			
		||||
    res/play.png \
 | 
			
		||||
    res/settings.png \
 | 
			
		||||
    res/stock_3d-texture-and-shading_16x16.png \
 | 
			
		||||
    res/stock_3d-texture-and-shading_32x32.png \
 | 
			
		||||
    res/stock_3d-texture-and-shading_48x48.png \
 | 
			
		||||
    res/stock_3d-texture-and-shading_128x128.png \
 | 
			
		||||
    res/stock_3d-texture-and-shading_256x256.png \
 | 
			
		||||
    res/stock_3d-texture-spherical_16x16.png \
 | 
			
		||||
    res/stock_3d-texture-spherical_32x32.png \
 | 
			
		||||
    res/stock_3d-texture-spherical_48x48.png \
 | 
			
		||||
    res/stock_3d-texture-spherical_128x128.png \
 | 
			
		||||
    res/stock_3d-texture-spherical_256x256.png \
 | 
			
		||||
    res/stop.png \
 | 
			
		||||
    res/stock_3d-texture-and-shading_16x16.ico \
 | 
			
		||||
    res/stock_3d-texture-and-shading_32x32.ico \
 | 
			
		||||
    res/stock_3d-texture-and-shading_128x128.ico \
 | 
			
		||||
    res/stock_3d-texture-and-shading_256x256.ico \
 | 
			
		||||
    res/stock_3d-texture-spherical_16x16.ico \
 | 
			
		||||
    res/stock_3d-texture-spherical_32x32.ico \
 | 
			
		||||
    res/stock_3d-texture-spherical_128x128.ico \
 | 
			
		||||
    res/stock_3d-texture-spherical_256x256.ico
 | 
			
		||||
							
								
								
									
										
											BIN
										
									
								
								code/build/res/arrow_fat_down.gif
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 91 B  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/arrow_fat_up.gif
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 90 B  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/arrow_mini_down.gif
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 79 B  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/arrow_mini_up.gif
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 79 B  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/block.gif
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 96 B  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/cross.gif
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 90 B  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/drop_box.gif
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 100 B  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/folder.gif
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 90 B  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/play.png
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 958 B  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/plus.gif
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 91 B  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/save.gif
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 124 B  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/script.gif
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 91 B  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/settings.png
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 454 B  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/stock_3d-texture-and-shading_128x128.ico
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 66 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/stock_3d-texture-and-shading_128x128.png
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 22 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/stock_3d-texture-and-shading_16x16.ico
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.1 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/stock_3d-texture-and-shading_16x16.png
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 901 B  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/stock_3d-texture-and-shading_256x256.ico
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 264 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/stock_3d-texture-and-shading_256x256.png
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 50 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/stock_3d-texture-and-shading_32x32.ico
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 5.3 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/stock_3d-texture-and-shading_32x32.png
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 2.3 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/stock_3d-texture-and-shading_48x48.png
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 4.3 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/stock_3d-texture-spherical_128x128.ico
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 66 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/stock_3d-texture-spherical_128x128.png
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 21 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/stock_3d-texture-spherical_16x16.ico
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.1 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/stock_3d-texture-spherical_16x16.png
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 901 B  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/stock_3d-texture-spherical_256x256.ico
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 264 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/stock_3d-texture-spherical_256x256.png
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 50 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/stock_3d-texture-spherical_32x32.ico
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 4.2 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/stock_3d-texture-spherical_32x32.png
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 2.4 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/stock_3d-texture-spherical_48x48.png
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 4.3 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/stop.png
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 922 B  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/trash.gif
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 96 B  | 
							
								
								
									
										
											BIN
										
									
								
								code/build/res/warning.gif
									
										
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 91 B  |