aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2020-01-26 17:03:37 -0500
committerAndrew Lee <alee14498@protonmail.com>2020-01-26 17:03:37 -0500
commit21f2659dd4d4267f6385fd5492d6e407d8b183a2 (patch)
tree3dffdf185a8d8b88ace2893039c06dcb791d3391 /main.cpp
parentc6a351ef1d93cad7e44ae3cf8e5abb1dd373f19c (diff)
downloaderable-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.cpp14
1 files changed, 13 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index 85f57aa..063d45d 100644
--- a/main.cpp
+++ b/main.cpp
@@ -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();