summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/playlistwidget.cpp
AgeCommit message (Collapse)AuthorFilesLines
2004-10-16Replace QPEApplication::qpeDir() + "/ withzecke1-1/+1
QPEApplication::qpeDir() + " as it is guranteed that qpeDir() will have '/' as the last charachter
2004-09-24-remove qApp->processEvents when starting playingzecke1-46/+62
Revamp Adding Files and Add Directory -Remove custom code to save the last Directory Used -Share MimeType creating code -Add Method to add a File to the Playlist and use it for AddFile and Add Directory
2004-09-24Handling of Errors is a bit problematic with the current design.zecke1-0/+1
We can start playing from multiple contexts. This are the PlayList context and single file context. Now the problem is that MediapPlayerState::setPlaying emits a signal. If started from the the PlayList setPlaying(false) would trigger an infite loop together with the Play ToggleButton, in single file context setPlaying(false) is the right choiche. The intermediate solution is to show an Error MessageBox and to raise the Audio Widget and leave it to the user to close it or go to the next file.
2004-09-23-Remove bogus whitespaceszecke1-23/+20
-Remove stl dependency -Make switching from fullscreen video to audio work -Remove debug output
2004-06-29As pointed out by bradc OpiePlayer2 is not able to open desktop files.zecke1-1/+7
Now we check if it is a valid desktop file and then ask for the DocLnk::file() and then use that for open.
2004-04-04use odebug classesmickeyl1-8/+11
2004-04-04convert to Opie Debugging Frameworkmickeyl1-19/+19
2004-03-16fix oggllornkcor1-1/+1
2004-03-14Use ODP namespacezecke1-1/+2
2004-03-02fix includeschicken1-1/+0
2004-03-02applied the patch generated by the optimize_connect script fromalwin1-44/+44
TT.
2003-11-17merge branch with headchicken1-30/+39
2003-08-09Merge from BRANCH_1_0kergoth1-20/+11
2003-06-18navigational elements vertically centeredharlekin1-1/+1
2003-06-18give save playlist the normal ofileselector tooharlekin1-11/+35
2003-06-18separate Add URL from Add fileharlekin1-13/+67
2003-05-04added a few convience qcop messages. see readme for more info. not totally ↵llornkcor1-0/+49
finished yet
2003-04-26change playlist file access mode when writingllornkcor1-1/+1
2002-12-16remove some commented codellornkcor1-97/+0
2002-12-16fix writng m3u filenames when user specifies a directoryllornkcor1-10/+11
2002-12-12moved readM3u and readPls to one function. fixed pls. more to comellornkcor1-99/+96
2002-12-11buttons centered againharlekin1-29/+29
2002-12-11- roll back the threaded xine initialization, the mediaplayer initializationsimon1-1/+1
state and the PlayButton change set - instead load the audio-/video widget and the xine control on-demand. much faster and much simpler for startup
2002-12-11- added initialize states to MediaPlayerStatesimon1-1/+3
- the play button is now of type PlayButton, inheritting from ToolButton and checking the media player initialization state in setEnabled
2002-12-10moving to playlistview after adding to it is annoying some people and me ↵llornkcor1-2/+6
sometimes. try this for now
2002-12-09 switch (mouse) {simon1-4/+4
- case 1: + case LeftButton: break; - case 2: + case RightButton:
2002-12-09- replaced currentFileListView method with a variablesimon1-15/+11
2002-12-08- #include cleanupsimon1-7/+0
2002-12-08- when the file list view is visible only enable the play button if theresimon1-0/+15
is something selected. one crash less ;)
2002-12-05- fixed a minor memory leaksimon1-9/+8
2002-12-05- turned if ( foo ) delete foo; into straight delete foo; as the if issimon1-9/+7
redundant.
2002-12-04- scanForAudio and scanForVideo is scanFiles in the file list view, sosimon1-11/+2
removed the former and connect to the latter
2002-12-04- scannedFiles is no more publicsimon1-16/+4
2002-12-04- move more view population logic into PlayListFileViewsimon1-24/+6
2002-12-04- merged popuplateAudioView and popuplateVideoView into onesimon1-69/+3
PlayListFileView::popuplateView method
2002-12-04- moving videoScan and audioScan into PlayListFileViewsimon1-10/+8
2002-12-04- merged scanForVideo and scanForAudio into a common scanFiles method insimon1-20/+5
the PlayListFileView. less duplicated code :)
2002-12-02- AudioWidget and VideoWidget are no more singletons via audioUI andsimon1-6/+8
videoUI. this allows switching skins at run-time (the appropriate connections are already made and it works quite nicely :)
2002-12-02- the playlist no more uses the mediaplayerstate as singletonsimon1-24/+24
2002-12-02- don't enable the play button if switching to the playlist tab and thesimon1-1/+9
playlist is empty - don't crash when starting to play and no item is selected in the playlist. instead select the first item then.
2002-12-02- as MediaPlayerState::isUsingPlaylist() always returns true we can removesimon1-57/+35
it and simplify some code in the playlistwidget due to that
2002-12-02- removed the playlistToggled signal, as it is never emittedsimon1-13/+1
- resulted in some simplification in playlistwidget
2002-12-02- removed unused (and never initialized to something != 0)simon1-6/+1
PlayListWidgetPrivate::current
2002-12-02- removed unused (and uninitialized) FileSelector *PlayListWidgetPrivate::filessimon1-4/+3
2002-12-02- disable 'play' in the play list tabsimon1-0/+4
2002-12-02- simplified MediaPlayer::setPlaying, moving more switch() like code intosimon1-1/+11
playlistwidget
2002-12-02- removed whichList() alltogethersimon1-16/+9
2002-12-02- disable playlist addition in the playlists tabsimon1-0/+1
2002-12-02- simplified addSelectedsimon1-36/+22
2002-12-02- added currentFileListView() method that returns the current file listsimon1-8/+10
qlistview object and simplified currentFileListPathName with that