add todo test
[vlc-remote] / playlistmainwindow.cpp
index c3d3c3b..279a51a 100644 (file)
@@ -1,7 +1,26 @@
+/*   VLC-REMOTE for MAEMO 5
+ *   Copyright (C) 2010 Schutz Sacha <istdasklar@gmail.com>
+ *   This program is free software; you can redistribute it and/or modify
+ *   it under the terms of the GNU General Public License version 2,
+ *   or (at your option) any later version, as published by the Free
+ *   Software Foundation
+ *
+ *   This program is distributed in the hope that it will be useful,
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *   GNU General Public License for more details
+ *
+ *   You should have received a copy of the GNU General Public
+ *   License along with this program; if not, write to the
+ *   Free Software Foundation, Inc.,
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ */
 #include "playlistmainwindow.h"
 #include "ui_playlistmainwindow.h"
 #include <QPushButton>
+#include <QSettings>
 #include "configdialog.h"
+#include "aboutdialog.h"
 
 
 PlayListMainWindow::PlayListMainWindow(QWidget *parent) :
@@ -11,7 +30,10 @@ PlayListMainWindow::PlayListMainWindow(QWidget *parent) :
 
     ui->setupUi(this);
     mTimer = new QTimer(this);
+    setWindowTitle("Vlc remote");
 
+    QSettings settings;
+    mIp = settings.value("ip").toString();
 }
 
 PlayListMainWindow::~PlayListMainWindow()