source: smplayer/trunk/src/seekwidget.cpp@ 178

Last change on this file since 178 was 176, checked in by Silvan Scherrer, 9 years ago

smplayer: update trunk to version 16.4

  • Property svn:eol-style set to LF
File size: 1.6 KB
Line 
1/* smplayer, GUI front-end for mplayer.
2 Copyright (C) 2006-2016 Ricardo Villalba <rvm@users.sourceforge.net>
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17*/
18
19#include "seekwidget.h"
20#include <QLabel>
21#include <QDateTimeEdit>
22
23SeekWidget::SeekWidget( QWidget* parent, Qt::WindowFlags f)
24 : QWidget(parent, f)
25{
26 setupUi(this);
27 time_edit->setDisplayFormat("mm:ss");
28}
29
30SeekWidget::~SeekWidget() {
31}
32
33void SeekWidget::setIcon(QPixmap icon) {
34 _image->setText("");
35 _image->setPixmap(icon);
36}
37
38const QPixmap * SeekWidget::icon() const {
39 return _image->pixmap();
40}
41
42void SeekWidget::setLabel(QString text) {
43 _label->setText(text);
44}
45
46QString SeekWidget::label() const {
47 return _label->text();
48}
49
50void SeekWidget::setTime(int secs) {
51 QTime t(0,0);
52 time_edit->setTime(t.addSecs(secs));
53}
54
55int SeekWidget::time() const {
56 QTime t = time_edit->time();
57 return (t.minute() * 60) + t.second();
58}
59
60#include "moc_seekwidget.cpp"
Note: See TracBrowser for help on using the repository browser.