summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/playlistselection.cpp
authorllornkcor <llornkcor>2002-03-18 01:50:17 (UTC)
committer llornkcor <llornkcor>2002-03-18 01:50:17 (UTC)
commitc09cb25eb6bbf31bed0d4a415802469cfd1efedf (patch) (unidiff)
tree86ced0fa482bd5fb244629f2baa1b1a4f25c9189 /core/multimedia/opieplayer/playlistselection.cpp
parent848182342d81b4e6ab4ce6b75bdaa0b109828af3 (diff)
downloadopie-c09cb25eb6bbf31bed0d4a415802469cfd1efedf.zip
opie-c09cb25eb6bbf31bed0d4a415802469cfd1efedf.tar.gz
opie-c09cb25eb6bbf31bed0d4a415802469cfd1efedf.tar.bz2
added stuff and fixed stuff that I dont remember- plays w/o going to playlist among other things
Diffstat (limited to 'core/multimedia/opieplayer/playlistselection.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/playlistselection.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/core/multimedia/opieplayer/playlistselection.cpp b/core/multimedia/opieplayer/playlistselection.cpp
index 4019d12..47fc731 100644
--- a/core/multimedia/opieplayer/playlistselection.cpp
+++ b/core/multimedia/opieplayer/playlistselection.cpp
@@ -1,175 +1,174 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. 2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of the Qtopia Environment. 4** This file is part of the Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20#include <qpe/applnk.h> 20#include <qpe/applnk.h>
21#include <qpe/resource.h> 21#include <qpe/resource.h>
22#include <qpainter.h> 22#include <qpainter.h>
23#include <qimage.h> 23#include <qimage.h>
24#include <qheader.h> 24#include <qheader.h>
25#include <qlistview.h> 25#include <qlistview.h>
26#include <qlist.h> 26#include <qlist.h>
27#include <qpixmap.h> 27#include <qpixmap.h>
28 28
29#include "playlistselection.h" 29#include "playlistselection.h"
30 30
31#include <stdlib.h> 31#include <stdlib.h>
32 32
33class PlayListSelectionItem : public QListViewItem { 33class PlayListSelectionItem : public QListViewItem {
34public: 34public:
35 PlayListSelectionItem( QListView *parent, const DocLnk *f ) : QListViewItem( parent ), fl( f ) { 35 PlayListSelectionItem( QListView *parent, const DocLnk *f ) : QListViewItem( parent ), fl( f ) {
36 setText( 0, f->name() ); 36 setText( 0, f->name() );
37 setPixmap( 0, f->pixmap() ); 37 setPixmap( 0, f->pixmap() );
38 } 38 }
39 39
40 ~PlayListSelectionItem() { 40 ~PlayListSelectionItem() {
41 }; 41 };
42 42
43 const DocLnk *file() const { return fl; } 43 const DocLnk *file() const { return fl; }
44 44
45private: 45private:
46 const DocLnk *fl; 46 const DocLnk *fl;
47}; 47};
48 48
49 49
50PlayListSelection::PlayListSelection( QWidget *parent, const char *name ) 50PlayListSelection::PlayListSelection( QWidget *parent, const char *name )
51 : QListView( parent, name ) 51 : QListView( parent, name )
52{ 52{
53 qDebug("starting playlistselector"); 53 qDebug("starting playlistselector");
54// #ifdef USE_PLAYLIST_BACKGROUND 54// #ifdef USE_PLAYLIST_BACKGROUND
55// setStaticBackground( TRUE ); 55// setStaticBackground( TRUE );
56// setBackgroundPixmap( Resource::loadPixmap( "mpegplayer/background" ) ); 56// setBackgroundPixmap( Resource::loadPixmap( "mpegplayer/background" ) );
57 57
58// setBackgroundPixmap( Resource::loadPixmap( "opielogo" ) ); 58 setBackgroundPixmap( Resource::loadPixmap( "opielogo" ) );
59// #endif 59// #endif
60// addColumn("Title",236); 60// addColumn("Title",236);
61// setAllColumnsShowFocus( TRUE ); 61// setAllColumnsShowFocus( TRUE );
62 addColumn( tr( "Playlist Selection" ) ); 62 addColumn( tr( "Playlist Selection" ) );
63 header()->hide(); 63 header()->hide();
64 setSorting( -1, FALSE ); 64 setSorting( -1, FALSE );
65} 65}
66 66
67 67
68PlayListSelection::~PlayListSelection() { 68PlayListSelection::~PlayListSelection() {
69} 69}
70 70
71 71
72// #ifdef USE_PLAYLIST_BACKGROUND 72// #ifdef USE_PLAYLIST_BACKGROUND
73void PlayListSelection::drawBackground( QPainter *p, const QRect &r ) { 73void PlayListSelection::drawBackground( QPainter *p, const QRect &r ) {
74// qDebug("drawBackground"); 74// qDebug("drawBackground");
75 p->fillRect( r, QBrush( white ) ); 75 p->fillRect( r, QBrush( white ) );
76// QImage logo = Resource::loadImage( "mpegplayer/background" ); 76 QImage logo = Resource::loadImage( "opielogo" );
77// // QImage logo = Resource::loadImage( "opielogo" ); 77 if ( !logo.isNull() )
78// if ( !logo.isNull() ) 78 p->drawImage( (width() - logo.width()) / 2, (height() - logo.height()) / 2, logo );
79// p->drawImage( (width() - logo.width()) / 2, (height() - logo.height()) / 2, logo );
80} 79}
81// #endif 80// #endif
82 81
83 82
84void PlayListSelection::contentsMouseMoveEvent( QMouseEvent *event ) { 83void PlayListSelection::contentsMouseMoveEvent( QMouseEvent *event ) {
85 if ( event->state() == QMouseEvent::LeftButton ) { 84 if ( event->state() == QMouseEvent::LeftButton ) {
86 QListViewItem *currentItem = selectedItem(); 85 QListViewItem *currentItem = selectedItem();
87 QListViewItem *itemUnder = itemAt( QPoint( event->pos().x(), event->pos().y() - contentsY() ) ); 86 QListViewItem *itemUnder = itemAt( QPoint( event->pos().x(), event->pos().y() - contentsY() ) );
88 if ( currentItem && currentItem->itemAbove() == itemUnder ) 87 if ( currentItem && currentItem->itemAbove() == itemUnder )
89 moveSelectedUp(); 88 moveSelectedUp();
90 else if ( currentItem && currentItem->itemBelow() == itemUnder ) 89 else if ( currentItem && currentItem->itemBelow() == itemUnder )
91 moveSelectedDown(); 90 moveSelectedDown();
92 } 91 }
93} 92}
94 93
95 94
96const DocLnk *PlayListSelection::current() { 95const DocLnk *PlayListSelection::current() {
97 PlayListSelectionItem *item = (PlayListSelectionItem *)selectedItem(); 96 PlayListSelectionItem *item = (PlayListSelectionItem *)selectedItem();
98 if ( item ) 97 if ( item )
99 return item->file(); 98 return item->file();
100 return NULL; 99 return NULL;
101} 100}
102 101
103 102
104void PlayListSelection::addToSelection( const DocLnk &lnk ) { 103void PlayListSelection::addToSelection( const DocLnk &lnk ) {
105 PlayListSelectionItem *item = new PlayListSelectionItem( this, new DocLnk( lnk ) ); 104 PlayListSelectionItem *item = new PlayListSelectionItem( this, new DocLnk( lnk ) );
106 QListViewItem *current = selectedItem(); 105 QListViewItem *current = selectedItem();
107 if ( current ) 106 if ( current )
108 item->moveItem( current ); 107 item->moveItem( current );
109 setSelected( item, TRUE ); 108 setSelected( item, TRUE );
110 ensureItemVisible( selectedItem() ); 109 ensureItemVisible( selectedItem() );
111} 110}
112 111
113 112
114void PlayListSelection::removeSelected() { 113void PlayListSelection::removeSelected() {
115 QListViewItem *item = selectedItem(); 114 QListViewItem *item = selectedItem();
116 if ( item ) 115 if ( item )
117 delete item; 116 delete item;
118 setSelected( currentItem(), TRUE ); 117 setSelected( currentItem(), TRUE );
119 ensureItemVisible( selectedItem() ); 118 ensureItemVisible( selectedItem() );
120} 119}
121 120
122 121
123void PlayListSelection::moveSelectedUp() { 122void PlayListSelection::moveSelectedUp() {
124 QListViewItem *item = selectedItem(); 123 QListViewItem *item = selectedItem();
125 if ( item && item->itemAbove() ) 124 if ( item && item->itemAbove() )
126 item->itemAbove()->moveItem( item ); 125 item->itemAbove()->moveItem( item );
127 ensureItemVisible( selectedItem() ); 126 ensureItemVisible( selectedItem() );
128} 127}
129 128
130 129
131void PlayListSelection::moveSelectedDown() { 130void PlayListSelection::moveSelectedDown() {
132 QListViewItem *item = selectedItem(); 131 QListViewItem *item = selectedItem();
133 if ( item && item->itemBelow() ) 132 if ( item && item->itemBelow() )
134 item->moveItem( item->itemBelow() ); 133 item->moveItem( item->itemBelow() );
135 ensureItemVisible( selectedItem() ); 134 ensureItemVisible( selectedItem() );
136} 135}
137 136
138 137
139bool PlayListSelection::prev() { 138bool PlayListSelection::prev() {
140 QListViewItem *item = selectedItem(); 139 QListViewItem *item = selectedItem();
141 if ( item && item->itemAbove() ) 140 if ( item && item->itemAbove() )
142 setSelected( item->itemAbove(), TRUE ); 141 setSelected( item->itemAbove(), TRUE );
143 else 142 else
144 return FALSE; 143 return FALSE;
145 ensureItemVisible( selectedItem() ); 144 ensureItemVisible( selectedItem() );
146 return TRUE; 145 return TRUE;
147} 146}
148 147
149 148
150bool PlayListSelection::next() { 149bool PlayListSelection::next() {
151 QListViewItem *item = selectedItem(); 150 QListViewItem *item = selectedItem();
152 if ( item && item->itemBelow() ) 151 if ( item && item->itemBelow() )
153 setSelected( item->itemBelow(), TRUE ); 152 setSelected( item->itemBelow(), TRUE );
154 else 153 else
155 return FALSE; 154 return FALSE;
156 ensureItemVisible( selectedItem() ); 155 ensureItemVisible( selectedItem() );
157 return TRUE; 156 return TRUE;
158} 157}
159 158
160 159
161bool PlayListSelection::first() { 160bool PlayListSelection::first() {
162 QListViewItem *item = firstChild(); 161 QListViewItem *item = firstChild();
163 if ( item ) 162 if ( item )
164 setSelected( item, TRUE ); 163 setSelected( item, TRUE );
165 else 164 else
166 return FALSE; 165 return FALSE;
167 ensureItemVisible( selectedItem() ); 166 ensureItemVisible( selectedItem() );
168 return TRUE; 167 return TRUE;
169} 168}
170 169
171 170
172bool PlayListSelection::last() { 171bool PlayListSelection::last() {
173 QListViewItem *prevItem = NULL; 172 QListViewItem *prevItem = NULL;
174 QListViewItem *item = firstChild(); 173 QListViewItem *item = firstChild();
175 while ( ( item = item->nextSibling() ) ) 174 while ( ( item = item->nextSibling() ) )