new icons, previous, next buttons (not yet functional), plus lots of other small...
authorTamas <tamas@u200.(none)>
Fri, 16 Jul 2010 19:57:19 +0000 (21:57 +0200)
committerTamas <tamas@u200.(none)>
Fri, 16 Jul 2010 19:57:19 +0000 (21:57 +0200)
12 files changed:
ampres.qrc
images/Button Next.png [new file with mode: 0644]
images/Button Pause.png [new file with mode: 0644]
images/Button Play.png [new file with mode: 0644]
images/Button Previous.png [new file with mode: 0644]
images/Button Reload.png [new file with mode: 0644]
images/Button Stop.png [new file with mode: 0644]
mainwindow.cpp
mainwindow.h
playlist.cpp [deleted file]
playlist.h [deleted file]
tomamp.pro

index e661116..cb310b9 100644 (file)
@@ -2,5 +2,11 @@
     <qresource prefix="/images">
         <file alias="volume">images/audio-volume-high.png</file>
         <file alias="shuffle">images/shuffle.png</file>
+        <file alias="next">images/Button Next.png</file>
+        <file alias="pause">images/Button Pause.png</file>
+        <file alias="play">images/Button Play.png</file>
+        <file alias="repeat">images/Button Reload.png</file>
+        <file alias="stop">images/Button Stop.png</file>
+        <file alias="previous">images/Button Previous.png</file>
     </qresource>
 </RCC>
diff --git a/images/Button Next.png b/images/Button Next.png
new file mode 100644 (file)
index 0000000..2c273df
Binary files /dev/null and b/images/Button Next.png differ
diff --git a/images/Button Pause.png b/images/Button Pause.png
new file mode 100644 (file)
index 0000000..ae49a13
Binary files /dev/null and b/images/Button Pause.png differ
diff --git a/images/Button Play.png b/images/Button Play.png
new file mode 100644 (file)
index 0000000..45fafc6
Binary files /dev/null and b/images/Button Play.png differ
diff --git a/images/Button Previous.png b/images/Button Previous.png
new file mode 100644 (file)
index 0000000..f620643
Binary files /dev/null and b/images/Button Previous.png differ
diff --git a/images/Button Reload.png b/images/Button Reload.png
new file mode 100644 (file)
index 0000000..741adfa
Binary files /dev/null and b/images/Button Reload.png differ
diff --git a/images/Button Stop.png b/images/Button Stop.png
new file mode 100644 (file)
index 0000000..32e4775
Binary files /dev/null and b/images/Button Stop.png differ
index da48bf3..22901c6 100644 (file)
@@ -3,6 +3,7 @@
 #include <QInputDialog>
 
 #include "mainwindow.h"
+#include "time.h"
 
 #define AVOID_INPUT_DIALOG 1
 
@@ -50,6 +51,7 @@ MainWindow::~MainWindow()
     }
     settings.setValue("lastPlaylist", curList);
     settings.setValue("volume", audioOutput->volume());
+    qDebug () << "cucc: " << musicTable->columnWidth(1);
 }
 
 void MainWindow::addFiles()
@@ -142,9 +144,11 @@ void MainWindow::addStringList(const QStringList& list)
 
 void MainWindow::about()
 {
-    QMessageBox::information(this, tr("About Music Player"),
-        tr("The Music Player example shows how to use Phonon - the multimedia"
-        " framework that comes with Qt - to create a simple music player."));
+    QMessageBox::information(this, tr("About TomAmp v0.1"),
+        tr("TomAmp is a simple playlist-based music player.\n\n"
+        "(c) 2010 Tamas Marki <tmarki@gmail.com>\n\n"
+        "Please send comments and bug reports to the above e-mail address.\n\n"
+        "Icons by deleket (http://www.deleket.com)"));
 }
 
 void MainWindow::stateChanged(Phonon::State newState, Phonon::State /* oldState */)
@@ -166,6 +170,8 @@ void MainWindow::stateChanged(Phonon::State newState, Phonon::State /* oldState
             break;
         case Phonon::PlayingState:
             setWindowTitle(mediaObject->metaData().value("TITLE") + " - TomAmp");
+            pauseAction->setVisible(true);
+            playAction->setVisible (false);
             playAction->setEnabled(false);
             pauseAction->setEnabled(true);
             stopAction->setEnabled(true);
@@ -173,12 +179,16 @@ void MainWindow::stateChanged(Phonon::State newState, Phonon::State /* oldState
         case Phonon::StoppedState:
             stopAction->setEnabled(false);
             playAction->setEnabled(true);
+            pauseAction->setVisible(false);
+            playAction->setVisible(true);
             pauseAction->setEnabled(false);
             timeLcd->display("00:00");
             break;
         case Phonon::PausedState:
             pauseAction->setEnabled(false);
             stopAction->setEnabled(true);
+            pauseAction->setVisible(false);
+            playAction->setVisible(true);
             playAction->setEnabled(true);
             qDebug () << "Queue size: " << mediaObject->queue().size ();
             if (mediaObject->queue().size ())
@@ -197,6 +207,16 @@ void MainWindow::stateChanged(Phonon::State newState, Phonon::State /* oldState
     }
 }
 
+void MainWindow::next()
+{
+
+}
+
+void MainWindow::previous()
+{
+
+}
+
 void MainWindow::tick(qint64 time)
 {
     QTime displayTime(0, (time / 60000) % 60, (time / 1000) % 60);
@@ -263,15 +283,12 @@ void MainWindow::metaStateChanged(Phonon::State newState, Phonon::State /* oldSt
     artistItem->setFlags(artistItem->flags() ^ Qt::ItemIsEditable);
     QTableWidgetItem *albumItem = new QTableWidgetItem(metaData.value("ALBUM"));
     albumItem->setFlags(albumItem->flags() ^ Qt::ItemIsEditable);
-    QTableWidgetItem *yearItem = new QTableWidgetItem(metaData.value("DATE"));
-    yearItem->setFlags(yearItem->flags() ^ Qt::ItemIsEditable);
 
     int currentRow = musicTable->rowCount();
     musicTable->insertRow(currentRow);
     musicTable->setItem(currentRow, 0, artistItem);
     musicTable->setItem(currentRow, 1, titleItem);
     musicTable->setItem(currentRow, 2, albumItem);
-    musicTable->setItem(currentRow, 3, yearItem);
 
 
     if (musicTable->selectedItems().isEmpty())
@@ -289,8 +306,8 @@ void MainWindow::metaStateChanged(Phonon::State newState, Phonon::State /* oldSt
     else
     {
         musicTable->resizeColumnsToContents();
-        if (musicTable->columnWidth(0) > 300)
-            musicTable->setColumnWidth(0, 300);
+/*        if (musicTable->columnWidth(0) > 300)
+            musicTable->setColumnWidth(0, 300);*/
     }
 }
 
@@ -333,20 +350,21 @@ void MainWindow::finished()
 
 void MainWindow::setupActions()
 {
-    playAction = new QAction(style()->standardIcon(QStyle::SP_MediaPlay), tr("Play"), this);
+    playAction = new QAction(QIcon (QPixmap (":images/play")), tr("Play"), this);
     playAction->setShortcut(tr("Crl+P"));
     playAction->setDisabled(true);
-    pauseAction = new QAction(style()->standardIcon(QStyle::SP_MediaPause), tr("Pause"), this);
+    pauseAction = new QAction(QIcon (QPixmap (":images/pause")), tr("Pause"), this);
     pauseAction->setShortcut(tr("Ctrl+A"));
     pauseAction->setDisabled(true);
-    stopAction = new QAction(style()->standardIcon(QStyle::SP_MediaStop), tr("Stop"), this);
+    pauseAction->setVisible(false);
+    stopAction = new QAction(QIcon (QPixmap (":images/stop")), tr("Stop"), this);
     stopAction->setShortcut(tr("Ctrl+S"));
     stopAction->setDisabled(true);
-    nextAction = new QAction(style()->standardIcon(QStyle::SP_MediaSkipForward), tr("Next"), this);
+    nextAction = new QAction(QIcon (QPixmap (":images/next")), tr("Next"), this);
     nextAction->setShortcut(tr("Ctrl+N"));
-    previousAction = new QAction(style()->standardIcon(QStyle::SP_MediaSkipBackward), tr("Previous"), this);
+    previousAction = new QAction(QIcon (QPixmap (":images/previous")), tr("Previous"), this);
     previousAction->setShortcut(tr("Ctrl+R"));
-    repeatAction = new QAction(style()->standardIcon(QStyle::SP_BrowserReload), tr("Repeat"), this);
+    repeatAction = new QAction(QIcon (QPixmap (":images/repeat")), tr("Repeat"), this);
     repeatAction->setCheckable(true);
     repeatAction->setChecked(repeat);
     repeatAction->setShortcut(tr("Ctrl+I"));
@@ -388,6 +406,8 @@ void MainWindow::setupActions()
     connect (savePlaylistAction, SIGNAL (triggered()), this, SLOT (savePlaylist()));
     connect (loadPlaylistAction, SIGNAL (triggered()), this, SLOT (loadPlaylist()));
     connect (clearPlaylistAction, SIGNAL (triggered()), this, SLOT (clearPlaylist()));
+    connect (nextAction, SIGNAL(triggered()), this, SLOT(next()));
+    connect (previousAction, SIGNAL(triggered()), this, SLOT(previous()));
     connect(exitAction, SIGNAL(triggered()), this, SLOT(close()));
     connect(aboutAction, SIGNAL(triggered()), this, SLOT(about()));
     connect(aboutQtAction, SIGNAL(triggered()), qApp, SLOT(aboutQt()));
@@ -395,7 +415,7 @@ void MainWindow::setupActions()
 
 void MainWindow::savePlaylist()
 {
-    QString filename = QFileDialog::getSaveFileName(this, tr("Please select file name"), "", "*.m3u");
+    QString filename = QFileDialog::getSaveFileName(this, tr("Please select file name"), "", "Playlist Files (*.m3u)");
     if (filename.isEmpty())
         return;
     if (filename.length() < 4 || filename.right(4).toLower() != ".m3u")
@@ -406,10 +426,10 @@ void MainWindow::savePlaylist()
         f.open(QFile::WriteOnly);
         for (int i = 0; i < sources.size(); ++i)
         {
-            if (sources[i].type() == Phonon::MediaSource::Stream)
-                f.write(sources[i].url().toString().toAscii());
-            else
+            if (sources[i].type() == Phonon::MediaSource::LocalFile)
                 f.write (sources[i].fileName().toAscii());
+            else
+                f.write(sources[i].url().toString().toAscii());
             f.write ("\n");
         }
         f.close ();
@@ -431,6 +451,11 @@ void MainWindow::loadPlaylist()
     clearPlaylist();
     foreach (QString l, lines)
     {
+        if (l.isEmpty() || (!QFileInfo (l).exists() && (l.indexOf("http") != 0)))
+        {
+            qDebug () << "not loadable: " << l;\
+            continue;
+        }
         qDebug () << "Load " << l;
         Phonon::MediaSource source(l);
         sources.append(source);
@@ -474,11 +499,11 @@ void MainWindow::setupMenus()
     fileMenu->addAction(addFilesAction);
     fileMenu->addAction(addFoldersAction);
     fileMenu->addAction(addUrlAction);
+    fileMenu->addSeparator();
     fileMenu->addAction(savePlaylistAction);
     fileMenu->addAction(loadPlaylistAction);
     fileMenu->addAction(clearPlaylistAction);
-    fileMenu->addSeparator();
-    fileMenu->addAction(exitAction);
+//    fileMenu->addAction(exitAction);
 
     QMenu *aboutMenu = menuBar()->addMenu(tr("&Help"));
     aboutMenu->addAction(aboutAction);
@@ -490,6 +515,7 @@ void MainWindow::setupUi()
     QToolBar *bar = new QToolBar;
 
     bar->setOrientation(Qt::Vertical);
+    bar->setStyleSheet("padding:7px");
     //bar->addAction(volumeAction);
 
     seekSlider = new Phonon::SeekSlider(this);
@@ -498,7 +524,7 @@ void MainWindow::setupUi()
     volumeSlider = new Phonon::VolumeSlider(this);
     volumeSlider->setAudioOutput(audioOutput);
     volumeSlider->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Maximum);
-    volumeSlider->setOrientation(Qt::Vertical);
+    volumeSlider->setOrientation(Qt::Horizontal);
     volumeSlider->setMuteVisible(false);
 //    volumeAddedAction = bar->addWidget(volumeSlider);
 //    volumeAddedAction->setVisible(false);
@@ -507,6 +533,8 @@ void MainWindow::setupUi()
     bar->addAction(stopAction);
     bar->addAction(repeatAction);
     bar->addAction(shuffleAction);
+    bar->addAction(nextAction);
+    bar->addAction(previousAction);
 
 /*    QLabel *volumeLabel = new QLabel;
     volumeLabel->setPixmap(QPixmap("images/volume.png"));*/
@@ -518,9 +546,9 @@ void MainWindow::setupUi()
 //    timeLcd->setPalette(palette);
 
     QStringList headers;
-    headers << tr("Artist") << tr("Title") << tr("Album") << tr("Year");
+    headers << tr("Artist") << tr("Title") << tr("Album");
 
-    musicTable = new QTableWidget(0, 4);
+    musicTable = new QTableWidget(0, 3);
     musicTable->setHorizontalHeaderLabels(headers);
     musicTable->setSelectionMode(QAbstractItemView::SingleSelection);
     musicTable->setSelectionBehavior(QAbstractItemView::SelectRows);
@@ -531,6 +559,7 @@ void MainWindow::setupUi()
     QToolBar* bar2 = new QToolBar;
     bar2->addAction(volumeAction);
     seekerLayout->addWidget(bar2);
+    seekerLayout->addWidget(volumeSlider);
     seekerLayout->addWidget(seekSlider);
     seekerLayout->addWidget(timeLcd);
 
@@ -547,7 +576,6 @@ void MainWindow::setupUi()
     seekAndTableLayout->addLayout(seekerLayout);
 
     QHBoxLayout *mainLayout = new QHBoxLayout;
-    mainLayout->addWidget(volumeSlider);
     mainLayout->addLayout(seekAndTableLayout);
     mainLayout->addLayout(playbackLayout);
 
@@ -556,7 +584,7 @@ void MainWindow::setupUi()
 
     setCentralWidget(widget);
     setWindowTitle("TomAmp");
-//    ui.setupUi(this);
+    qDebug () << "cucc: " << musicTable->columnWidth(1);
 }
 
 
index 373ba49..58c122f 100644 (file)
@@ -50,7 +50,6 @@
 #include <phonon/volumeslider.h>
 #include <phonon/backendcapabilities.h>
 #include <QList>
-#include "ui_mainwindow.h"
 
 class QAction;
 class QTableWidget;
@@ -88,6 +87,8 @@ private slots:
     void savePlaylist();
     void loadPlaylist();
     void clearPlaylist();
+    void next();
+    void previous();
 
 private:
     void setupActions();
@@ -124,7 +125,6 @@ private:
     QToolBar *bar;
     QLCDNumber *timeLcd;
     QTableWidget *musicTable;
-    Ui::MainWindow ui;
     bool    repeat;
     bool    shuffle;
     QSettings settings;
diff --git a/playlist.cpp b/playlist.cpp
deleted file mode 100644 (file)
index cc0c625..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#include "playlist.h"
-
-PlayList::PlayList()
-{
-}
-
-void PlayList::addFiles (const QString& path, const QStringList &thelist)
-{
-    foreach (QString p, thelist)
-    {
-        entrylist.append (PlayListEntry (path, p));
-    }
-}
-
-QList<PlayListEntry> PlayList::getList()
-{
-    return entrylist;
-}
diff --git a/playlist.h b/playlist.h
deleted file mode 100644 (file)
index 79d96f8..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef PLAYLIST_H
-#define PLAYLIST_H
-
-#include<QStringList>
-#include<QList>
-
-class PlayListEntry
-{
-public:
-    PlayListEntry (const QString& thepath, const QString& thename) : path (thepath), name (thename) { }
-    QString getName () { return name; }
-    QString getPath () { return path; }
-private:
-    QString path;
-    QString name;
-};
-
-class PlayList
-{
-public:
-    PlayList();
-    void addFiles (const QString& dir, const QStringList& thelist);
-    QList<PlayListEntry> getList ();
-private:
-    QList<PlayListEntry> entrylist;
-};
-
-
-#endif // PLAYLIST_H
index 177e8b4..8704271 100644 (file)
@@ -11,11 +11,9 @@ TEMPLATE = app
 
 
 SOURCES += main.cpp\
-        mainwindow.cpp \
-    playlist.cpp
+        mainwindow.cpp
 
-HEADERS  += mainwindow.h \
-    playlist.h
+HEADERS  += mainwindow.h
 
 FORMS    +=