summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/playlistwidget.cpp
AgeCommit message (Collapse)AuthorFilesLines
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
2002-12-02- more whichList usage removedsimon1-20/+14
2002-12-02- two const fixletssimon1-2/+2
2002-12-02- oopssimon1-1/+1
2002-12-02- added a currentTab method that returns an enum containing the current tabsimon1-0/+12
type in a verbose manner (AudioFiles, VideoFiles, CurrentPlayList, etc.), as a future replacment for whichList() which just returns an integer
2002-12-02- paused() -> isPaused() and the like for all accessor functions in thesimon1-18/+18
mediaplayerstate class
2002-11-14cleanup compiler warningsllornkcor1-20/+20
2002-11-14takeout qDebugsllornkcor1-3/+3
2002-11-14clear selection after adding to playlistllornkcor1-2/+3
2002-11-14fix multiselect addto playlistllornkcor1-8/+20
2002-11-14dont try to find media anymorellornkcor1-22/+26
2002-11-14no longer scans and populates audio_video lists everytime tab is changed. ↵llornkcor1-6/+12
rescan from File menu does it except for the first tab change