diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-01-26 17:03:37 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-01-26 17:03:37 -0500 |
| commit | 21f2659dd4d4267f6385fd5492d6e407d8b183a2 (patch) | |
| tree | 3dffdf185a8d8b88ace2893039c06dcb791d3391 /main.cpp | |
| parent | c6a351ef1d93cad7e44ae3cf8e5abb1dd373f19c (diff) | |
| download | erable-godot-21f2659dd4d4267f6385fd5492d6e407d8b183a2.tar.gz erable-godot-21f2659dd4d4267f6385fd5492d6e407d8b183a2.tar.bz2 erable-godot-21f2659dd4d4267f6385fd5492d6e407d8b183a2.zip | |
Changed ui layout
Diffstat (limited to 'main.cpp')
| -rw-r--r-- | main.cpp | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -1,12 +1,24 @@ #include "player.h" #include <QMessageBox> #include <QDebug> +#include <QFile> +#include <QDir> #include <QApplication> int main(int argc, char *argv[]) { - qInfo() << "AleePlayer: A music player by Alee Productions. Licensed with GPL-3.0\n"; + qInfo() << "AleePlayer: A music player by Alee Productions. Licensed with GPL-3.0.\n"; + + qDebug() << "Creating files..."; + + //QDir directory(QDir::homePath() + "/.alee-productions/AleePlayer"); + + //File file(directory.absoluteFilePath("test.txt")); + + //file.open(QFile::WriteOnly); + //file.close(); + QApplication a(argc, argv); Player musicPlayer; musicPlayer.show(); |
