Changeset 133 for smplayer/vendor/current/src/basegui.cpp
- Timestamp:
- Oct 24, 2012, 7:56:20 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/vendor/current/src/basegui.cpp
r130 r133 309 309 this, SLOT(openAudioCD()) ); 310 310 311 #ifdef Q_OS_WIN312 // VCD's and Audio CD's seem they don't work on windows313 //openVCDAct->setEnabled(pref->enable_vcd_on_windows);314 openAudioCDAct->setEnabled(pref->enable_audiocd_on_windows);315 #endif316 317 311 openDVDAct = new MyAction( this, "open_dvd" ); 318 312 connect( openDVDAct, SIGNAL(triggered()), … … 1903 1897 this, SLOT(exitFullscreenOnStop()) ); 1904 1898 1899 connect( core, SIGNAL(mediaStoppedByUser()), 1900 mplayerwindow, SLOT(showLogo()) ); 1901 1905 1902 connect( core, SIGNAL(mediaLoaded()), 1906 1903 this, SLOT(enableActionsOnPlaying()) ); … … 1967 1964 #endif 1968 1965 mplayerwindow->allowVideoMovement( pref->allow_video_movement ); 1966 1967 #if LOGO_ANIMATION 1968 mplayerwindow->setAnimatedLogo( pref->animated_logo); 1969 #endif 1969 1970 1970 1971 QHBoxLayout * layout = new QHBoxLayout; … … 2061 2062 connect( playlist, SIGNAL(playlistEnded()), 2062 2063 this, SLOT(playlistHasFinished()) ); 2064 2065 connect( playlist, SIGNAL(playlistEnded()), 2066 mplayerwindow, SLOT(showLogo()) ); 2067 2063 2068 /* 2064 2069 connect( playlist, SIGNAL(visibilityChanged()), … … 3090 3095 // Let's see if it looks like a file (no dvd://1 or something) 3091 3096 if (fullname.indexOf(QRegExp("^.*://.*")) == -1) filename = fi.fileName(); 3097 3098 if (filename.size() > 85) { 3099 filename = filename.left(80) + "..."; 3100 } 3092 3101 3093 3102 QAction * a = recentfiles_menu->addAction( QString("%1. " + filename ).arg( i.insert( i.size()-1, '&' ), 3, ' ' ));
Note:
See TracChangeset
for help on using the changeset viewer.