From 52a3097986a6e69f57261d74c8807acbe9374c37 Mon Sep 17 00:00:00 2001 From: Arno Date: Tue, 16 Aug 2016 18:06:56 +0200 Subject: Initial commit Shows files with the current extension and makes them distinguishable by different icons and by color. Not much else, just thought it was time for a commit. --- ShemovCleaner.pro | 18 ++++++++++++++++++ clean_tampon.png | Bin 0 -> 698 bytes filesorter.cpp | 6 ++++++ filesorter.h | 11 +++++++++++ gaping_ass.png | Bin 0 -> 884 bytes huge_bra.png | Bin 0 -> 793 bytes main.cpp | 11 +++++++++++ shemovcleaner.cpp | 11 +++++++++++ shemovcleaner.h | 15 +++++++++++++++ shemovcleaner.qrc | 1 + 10 files changed, 73 insertions(+) create mode 100644 ShemovCleaner.pro create mode 100644 clean_tampon.png create mode 100644 filesorter.cpp create mode 100644 filesorter.h create mode 100644 gaping_ass.png create mode 100644 huge_bra.png create mode 100644 main.cpp create mode 100644 shemovcleaner.cpp create mode 100644 shemovcleaner.h create mode 100644 shemovcleaner.qrc diff --git a/ShemovCleaner.pro b/ShemovCleaner.pro new file mode 100644 index 0000000..e2f02ed --- /dev/null +++ b/ShemovCleaner.pro @@ -0,0 +1,18 @@ +#------------------------------------------------- +# +# Project created by QtCreator 2016-08-16T06:39:30 +# +#------------------------------------------------- + +QT += core gui + +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets + +TARGET = ShemovCleaner +TEMPLATE = app + + +SOURCES += main.cpp\ + shemovcleaner.cpp + +HEADERS += shemovcleaner.h diff --git a/clean_tampon.png b/clean_tampon.png new file mode 100644 index 0000000..db10e8b Binary files /dev/null and b/clean_tampon.png differ diff --git a/filesorter.cpp b/filesorter.cpp new file mode 100644 index 0000000..fc9d1c4 --- /dev/null +++ b/filesorter.cpp @@ -0,0 +1,6 @@ +#include "filesorter.h" + +FileSorter::FileSorter() +{ + +} diff --git a/filesorter.h b/filesorter.h new file mode 100644 index 0000000..957252d --- /dev/null +++ b/filesorter.h @@ -0,0 +1,11 @@ +#ifndef FILESORTER_H +#define FILESORTER_H + + +class FileSorter +{ +public: + FileSorter(); +}; + +#endif // FILESORTER_H \ No newline at end of file diff --git a/gaping_ass.png b/gaping_ass.png new file mode 100644 index 0000000..18feb02 Binary files /dev/null and b/gaping_ass.png differ diff --git a/huge_bra.png b/huge_bra.png new file mode 100644 index 0000000..b7f1c5c Binary files /dev/null and b/huge_bra.png differ diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..7b03777 --- /dev/null +++ b/main.cpp @@ -0,0 +1,11 @@ +#include "shemovcleaner.h" +#include + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + ShemovCleaner w; + w.show(); + + return a.exec(); +} diff --git a/shemovcleaner.cpp b/shemovcleaner.cpp new file mode 100644 index 0000000..340bda4 --- /dev/null +++ b/shemovcleaner.cpp @@ -0,0 +1,11 @@ +#include "shemovcleaner.h" + +ShemovCleaner::ShemovCleaner(QWidget *parent) + : QMainWindow(parent) +{ +} + +ShemovCleaner::~ShemovCleaner() +{ + +} diff --git a/shemovcleaner.h b/shemovcleaner.h new file mode 100644 index 0000000..0bc5e2d --- /dev/null +++ b/shemovcleaner.h @@ -0,0 +1,15 @@ +#ifndef SHEMOVCLEANER_H +#define SHEMOVCLEANER_H + +#include + +class ShemovCleaner : public QMainWindow +{ + Q_OBJECT + +public: + ShemovCleaner(QWidget *parent = 0); + ~ShemovCleaner(); +}; + +#endif // SHEMOVCLEANER_H diff --git a/shemovcleaner.qrc b/shemovcleaner.qrc new file mode 100644 index 0000000..7646d2b --- /dev/null +++ b/shemovcleaner.qrc @@ -0,0 +1 @@ + -- cgit v1.2.3-70-g09d2