source: trunk/tools/designer/src/plugins/phononwidgets/videoplayertaskmenu.cpp@ 561

Last change on this file since 561 was 561, checked in by Dmitry A. Kuminov, 15 years ago

trunk: Merged in qt 4.6.1 sources.

File size: 5.8 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
6**
7** This file is part of the Qt Designer of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:LGPL$
10** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and Nokia.
15**
16** GNU Lesser General Public License Usage
17** Alternatively, this file may be used under the terms of the GNU Lesser
18** General Public License version 2.1 as published by the Free Software
19** Foundation and appearing in the file LICENSE.LGPL included in the
20** packaging of this file. Please review the following information to
21** ensure the GNU Lesser General Public License version 2.1 requirements
22** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23**
24** In addition, as a special exception, Nokia gives you certain additional
25** rights. These rights are described in the Nokia Qt LGPL Exception
26** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you have questions regarding the use of this file, please contact
37** Nokia at [email protected].
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#include "videoplayertaskmenu.h"
43
44#include <QtDesigner/QDesignerFormWindowInterface>
45#include <QtDesigner/QDesignerFormWindowCursorInterface>
46#include <QtDesigner/QDesignerFormEditorInterface>
47#include <QtDesigner/QExtensionManager>
48
49#include <phonon/videoplayer.h>
50#include <phonon/mediaobject.h>
51
52#include <QtGui/QPlainTextEdit>
53#include <QtGui/QDialogButtonBox>
54#include <QtGui/QAction>
55#include <QtGui/QVBoxLayout>
56#include <QtGui/QFileDialog>
57#include <QtGui/QMessageBox>
58
59QT_BEGIN_NAMESPACE
60
61// ----------------- MimeTypeDialog: Display mime types in scrollable text
62
63class MimeTypeDialog : public QDialog {
64 Q_DISABLE_COPY(MimeTypeDialog)
65public:
66 explicit MimeTypeDialog(QWidget *parent = 0);
67
68 void setMimeTypes(const QStringList &);
69
70private:
71 QPlainTextEdit *m_plainTextEdit;
72};
73
74MimeTypeDialog::MimeTypeDialog(QWidget *parent) :
75 QDialog(parent),
76 m_plainTextEdit(new QPlainTextEdit)
77{
78 setModal(true);
79 setWindowTitle(VideoPlayerTaskMenu::tr("Available Mime Types"));
80 setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
81
82 QVBoxLayout *layout = new QVBoxLayout;
83 m_plainTextEdit->setReadOnly(true);
84 layout->addWidget(m_plainTextEdit);
85
86 QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok);
87 connect(buttonBox, SIGNAL(accepted()), this, SLOT(accept()));
88 connect(buttonBox, SIGNAL(rejected()), this, SLOT(reject()));
89 layout->addWidget(buttonBox);
90
91 setLayout(layout);
92}
93
94void MimeTypeDialog::setMimeTypes(const QStringList &l)
95{
96 m_plainTextEdit->setPlainText(l.join(QString(1, QLatin1Char('\n'))));
97}
98
99// ----------------- VideoPlayerTaskMenu
100VideoPlayerTaskMenu::VideoPlayerTaskMenu(Phonon::VideoPlayer *object, QObject *parent) :
101 QObject(parent),
102 m_widget(object),
103 m_displayMimeTypesAction(new QAction(tr("Display supported mime types..."), this)),
104 m_loadAction(new QAction(tr("Load..."), this)),
105 m_playAction(new QAction(tr("Play"), this)),
106 m_pauseAction(new QAction(tr("Pause"), this)),
107 m_stopAction(new QAction(tr("Stop"), this))
108{
109 m_taskActions << m_displayMimeTypesAction << m_loadAction << m_playAction << m_pauseAction << m_stopAction;
110
111 connect(m_widget->mediaObject(), SIGNAL(stateChanged(Phonon::State,Phonon::State)), this, SLOT(mediaObjectStateChanged(Phonon::State,Phonon::State)));
112 connect(m_displayMimeTypesAction, SIGNAL(triggered()), this, SLOT(slotMimeTypes()));
113 connect(m_loadAction, SIGNAL(triggered()), this, SLOT(slotLoad()));
114 connect(m_playAction, SIGNAL(triggered()), object, SLOT(play()));
115 connect(m_pauseAction, SIGNAL(triggered()), object, SLOT(pause()));
116 connect(m_stopAction, SIGNAL(triggered()), object, SLOT(stop()));
117}
118
119QList<QAction*> VideoPlayerTaskMenu::taskActions() const
120{
121 const bool isPlaying = m_widget->isPlaying();
122 const bool isPaused = m_widget->isPlaying();
123 m_loadAction->setEnabled(!isPlaying && !isPaused);
124 m_playAction->setEnabled(!isPlaying);
125 m_pauseAction->setEnabled(isPlaying);
126 m_stopAction->setEnabled(isPlaying || isPaused);
127 return m_taskActions;
128}
129
130void VideoPlayerTaskMenu::slotMimeTypes()
131{
132 MimeTypeDialog mimeTypeDialog(m_widget->window());
133 mimeTypeDialog.setMimeTypes(Phonon::BackendCapabilities::availableMimeTypes());
134 mimeTypeDialog.exec();
135}
136
137void VideoPlayerTaskMenu::slotLoad()
138{
139 const QString fileName = QFileDialog::getOpenFileName(m_widget->window(), tr("Choose Video Player Media Source"));
140 if (fileName.isEmpty())
141 return;
142 m_widget->load(Phonon::MediaSource(fileName));
143
144}
145
146void VideoPlayerTaskMenu::mediaObjectStateChanged(Phonon::State newstate, Phonon::State /* oldstate */)
147{
148 if (newstate == Phonon::ErrorState) {
149 const QString msg = tr("An error has occurred in '%1': %2").arg(m_widget->objectName(), m_widget->mediaObject()->errorString());
150 QMessageBox::warning(m_widget->window(), tr("Video Player Error"), msg);
151 }
152}
153
154QT_END_NAMESPACE
Note: See TracBrowser for help on using the repository browser.