Changeset 142 for smplayer/trunk/src/skingui/mediabarpanel.cpp
- Timestamp:
- May 27, 2013, 3:28:05 PM (12 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk
- Property svn:mergeinfo changed
/smplayer/vendor/current merged: 140
- Property svn:mergeinfo changed
-
smplayer/trunk/src/skingui/mediabarpanel.cpp
r139 r142 1 1 /* smplayer, GUI front-end for mplayer. 2 Copyright (C) 2006-201 2Ricardo Villalba <rvm@users.sourceforge.net>2 Copyright (C) 2006-2013 Ricardo Villalba <rvm@users.sourceforge.net> 3 3 umplayer, Copyright (C) 2010 Ori Rejwan 4 4 … … 54 54 55 55 connect(volumeControlPanel, SIGNAL(volumeChanged(int)), this, SIGNAL(volumeChanged(int))); 56 connect(volumeControlPanel, SIGNAL(volumeSliderMoved(int)), this, SIGNAL(volumeSliderMoved(int))); 56 57 connect(mediaPanel, SIGNAL(seekerChanged(int)), this, SIGNAL(seekerChanged(int))); 57 58 } … … 99 100 connect( core, SIGNAL(showTime(double)), this, SLOT(gotCurrentTime(double)) ); 100 101 connect( core, SIGNAL(mediaInfoChanged()), this, SLOT(updateMediaInfo()) ); 101 /* connect( core, SIGNAL(buffering()), this, SLOT(setBuffering()) ); */102 connect( core, SIGNAL(buffering()), this, SLOT(setBuffering()) ); 102 103 } 103 104 … … 119 120 void MediaBarPanel::updateMediaInfo() 120 121 { 121 mediaPanel->setMediaLabelText(core->mdat.displayName()); 122 QString s = QString("%1 (%2x%3)").arg(core->mdat.displayName()).arg(core->mdat.video_width).arg(core->mdat.video_height); 123 mediaPanel->setMediaLabelText(s); 122 124 } 123 125
Note:
See TracChangeset
for help on using the changeset viewer.