523296995fa9efbf0378da6c47a35be4254b1449
[groove] / groove.cpp
1 #include "groove.h"
2 #if defined(Q_WS_MAEMO_5) || defined(Q_WS_HILDON)
3 #include "qmaemo5rotator.h"
4 #include <QtDBus>
5 #endif
6
7
8 groove::groove(QWidget *parent) :
9     QWidget(parent)
10 {
11     //mpg = new mpgplayer();
12     //mpg->start();
13     mBar = new QMenuBar();
14     //mBar->addAction("test");
15     sMethod = new QPushButton("Song:");
16     lineEdit = new QLineEdit("");
17     player = new sPlayer();
18     QHBoxLayout *layout = new QHBoxLayout();
19     QVBoxLayout *vlayout = new QVBoxLayout();
20     QHBoxLayout *bottomLayout = new QHBoxLayout();
21     button = new QPushButton("Search");
22     QPushButton *dButton = new QPushButton("Queue");
23     QPushButton *stopButton = new QPushButton("Pause");
24     QPushButton *moreButton = new QPushButton("...");
25     QPushButton *nextB = new QPushButton("->");
26     topBar *ok = new topBar(this);
27     resultView = new QTableView();
28     QMenu *pushMenu = new QMenu();
29     //showFullScreen();
30     lineEdit->insert("");
31     lineEdit->setDisabled(true);
32     pushMenu->addAction("Song:");
33     //pushMenu->addAction("Artist:");
34     //pushMenu->addAction("Album:");
35     QMenu *moreAction = new QMenu();
36     //moreAction->addAction("Playlist");
37     connect(moreAction->addAction("Play Now"),SIGNAL(triggered()),this,SLOT(play()));
38     //connect(moreAction->addAction("Show download Progress"),SIGNAL(triggered()),pd,SLOT(show()));
39     moreButton->setMenu(moreAction);
40
41     //sMethod->setSizePolicy(QSizePolicy::Fixed,QSizePolicy::Maximum);
42     sMethod->setMaximumWidth(sMethod->sizeHint().rwidth());
43     sMethod->setMenu(pushMenu);
44     model = new  QStandardItemModel();
45     model->setHorizontalHeaderLabels(
46         QStringList() << "Please wait for initialization"
47                       /*<< "Artist"*/);
48     resultView->setModel(model);
49     resultView->verticalHeader()->hide();
50     resultView->horizontalHeader()->setStretchLastSection(true);
51     resultView->setSelectionBehavior(QAbstractItemView::SelectRows);
52     resultView->setSelectionMode(QAbstractItemView::SingleSelection);
53     resultView->setEditTriggers(QAbstractItemView::NoEditTriggers);
54     resultView->setColumnHidden(2,true);
55     resultView->setColumnHidden(3,true);
56     resultView->setAutoScroll(false);
57     resultView->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
58     /*QPalette pal = resultView->palette();
59     pal.setBrush(QPalette::Highlight,QBrush(Qt::transparent,Qt::NoBrush));
60     resultView->setPalette(pal);*/
61     portrait = false;
62     layout->addWidget(sMethod);
63 #if defined(Q_WS_MAEMO_5) || defined(Q_WS_HILDON)
64     rot = new QMaemo5Rotator(QMaemo5Rotator::AutomaticBehavior,this);
65 #endif
66     //this->setAttribute(Qt::WA_Maemo5AutoOrientation);
67     layout->addWidget(lineEdit);
68     layout->addWidget(button);
69     vlayout->addWidget(ok);
70     //vlayout->addLayout(layout);
71     vlayout->addWidget(resultView);
72     //vlayout->addLayout(bottomLayout);
73     bBar = new bottomBar();
74     vlayout->addWidget(bBar);
75     vlayout->setSpacing(0);
76     bottomLayout->addWidget(dButton);
77     bottomLayout->addWidget(stopButton);
78     bottomLayout->addWidget(nextB);
79     bottomLayout->addWidget(moreButton);
80     vlayout->setMenuBar(mBar);
81     vlayout->setContentsMargins(QMargins());
82     setLayout(vlayout);
83     setWindowTitle("Groove");
84     //Create New Grooveshark connection
85     gs = new gscom();
86     //Connections
87     connect(button, SIGNAL(clicked()), this, SLOT(search()));
88     connect(gs, SIGNAL(finishedSearch()), this, SLOT(finishedS()));
89     connect(lineEdit,SIGNAL(returnPressed()),this, SLOT(search()));
90     connect(pushMenu,SIGNAL(triggered(QAction*)),this,SLOT(changeS(QAction*)));
91     connect(dButton,SIGNAL(clicked()),this, SLOT(addSongPlaylist()));
92     connect(stopButton,SIGNAL(clicked()),this,SLOT(stop()));
93     connect(moreButton,SIGNAL(clicked()),this,SLOT(moreB()));
94     //connect(rotator,SIGNAL(orientationChanged(Orientation)),this,SLOT(orientationChanged()));
95     pl = new playlist(this);
96     pl->setGscom(gs);
97     player->setPlaylist(pl);
98     connect(pl,SIGNAL(downloadProgress(int,qint64,qint64)),this,SLOT(progressUpdate(int,qint64,qint64)));
99     //connect(pl,SIGNAL(bufferReady(int)),pd,SLOT(close()));
100     connect(pl,SIGNAL(freeze(bool)),resultView,SLOT(setDisabled(bool)));
101     connect(pl,SIGNAL(freeze(bool)),pushMenu,SLOT(setDisabled(bool)));
102     connect(pl,SIGNAL(freeze(bool)),dButton,SLOT(setDisabled(bool)));
103     connect(nextB,SIGNAL(clicked()),player,SLOT(playNext()));
104     connect(ok,SIGNAL(changeTask()),this,SLOT(showOthers()));
105     connect(ok,SIGNAL(searchRequest(QString)),this,SLOT(performSearch(QString)));
106     connect(ok,SIGNAL(closeApp()),this,SLOT(close()));
107     connect(bBar,SIGNAL(addB()),this,SLOT(addSongPlaylist()));
108     connect(bBar,SIGNAL(nextB()),player,SLOT(playNext()));
109     connect(bBar,SIGNAL(pause()),this,SLOT(stop()));
110
111     connect(bBar,SIGNAL(back()),player,SLOT(back()));
112     bBar->setPlaybackProgress(100,100);
113     pwindow = new pWin();
114
115 #if defined(Q_WS_MAEMO_5) || defined(Q_WS_HILDON)
116     this->setAttribute(Qt::WA_Maemo5StackedWindow);
117     pwindow->setParent(this);
118     pwindow->setWindowFlags(pwindow->windowFlags() | Qt::Window);
119     pwindow->setAttribute(Qt::WA_Maemo5StackedWindow);
120 #endif
121     connect(bBar,SIGNAL(list()),pwindow,SLOT(show()));
122     pwindow->show();
123
124 }
125 void groove::performSearch(QString s)
126 {
127     qDebug() << s;
128     resultView->setModel(gs->getSongModel(s));
129 }
130
131 void groove::search()
132 {
133     if(!lineEdit->text().isEmpty())
134     {
135     if(lineEdit->isEnabled())
136     {
137
138         if(sMethod->text().compare("Song:")==0)
139             resultView->setModel(gs->getSongModel(lineEdit->text()));
140         else if(sMethod->text().compare("Artist:")==0)
141             resultView->setModel(gs->getArtistModel(lineEdit->text()));
142         else if(sMethod->text().compare("Album")==0)
143             resultView->setModel(gs->getAlbumModel(lineEdit->text()));
144         else
145             return;
146
147
148         button->setText("Stop");
149         lineEdit->setDisabled(true);
150     }
151     else
152     {
153         resultView->setModel(model);
154         button->setText("Search");
155         resultView->setColumnWidth(0,resultView->viewport()->width()/2);
156         resultView->setColumnWidth(1,resultView->viewport()->width()/2);
157         lineEdit->setDisabled(false);
158     }
159     }
160 }
161 void groove::finishedS()
162 {
163     model = gs->getModel();
164     resultView->setModel(model);
165     button->setText("Search");
166     resultView->setColumnWidth(0,resultView->viewport()->width()/2);
167     resultView->setColumnWidth(1,resultView->viewport()->width()/2);
168     lineEdit->setDisabled(false);
169     resultView->setColumnHidden(2,true);
170 }
171 void groove::changeS( QAction * action)
172 {
173     sMethod->setText(action->text());
174     sMethod->setMaximumWidth(sMethod->sizeHint().rwidth());
175 }
176
177 void groove::showOthers()
178 {
179 #if defined(Q_WS_MAEMO_5) || defined(Q_WS_HILDON)
180     QDBusConnection c = QDBusConnection::sessionBus();
181     QDBusMessage m = QDBusMessage::createSignal("/", "com.nokia.hildon_desktop", "exit_app_view");
182
183     c.send(m);
184 #endif
185 }
186
187 void groove::play()
188 {
189     QModelIndexList selected = resultView->selectionModel()->selectedRows(0);
190     if(!selected.isEmpty())
191     {
192         QStandardItem *item = model->item(selected.first().row(),2);
193         if(item == 0)
194             return;
195         //gs->getSong();
196         player->play(pl->addSong(item));
197     }
198     //selected.
199     //if
200 }
201 void groove::addSongPlaylist()
202 {
203     QModelIndexList selected = resultView->selectionModel()->selectedRows(0);
204     if(!selected.isEmpty())
205     {
206         QStandardItem *item = model->item(selected.first().row(),2);
207         if(item == 0)
208             return;
209         //gs->getSong();
210         if(pl->currentplaying() == -1)
211         {
212             player->play(pl->addSong(item));
213         }
214         else
215             pl->addSong(item);
216         model->item(selected.first().row(),1)->setText("Added to Playlist");;
217         pwindow->addSong(model->item(selected.first().row(),0)->text());
218     }
219
220 }
221
222 void groove::stop()
223 {
224     player->pause();
225     //mpg->pause();
226 }
227 void groove::moreB()
228 {
229     qDebug() << "He pressed the button";
230 }
231 void groove::progressUpdate(int p, qint64 d, qint64 t)
232 {
233     //if(!pd->isHidden())
234     //{
235     bBar->setPlaybackProgress(d,t);
236     //}
237 }
238
239 void groove::orientationChanged()
240 {
241 #ifdef Q_WS_MAEMO_5
242     QRect screenGeometry = QApplication::desktop()->screenGeometry();
243     if (screenGeometry.width() > screenGeometry.height())
244         portrait = false;
245     else
246         portrait = true;
247 #endif
248 }