VideoRingtone Class Reference
|
Message | Description |
---|---|
playVideo(QString) | This message is forwarded to playVideo(). |
stopVideo() | This message is forwarded to stopVideo(). |
videoRingtoneFailed() | This message is equivalent to the videoRingtoneFailed() signal. |
RingControl calls playVideo() when the video ringtone is preferred. The CallScreen should be listening to the videoWidgetReady() signal to retreive the video widget object by calling videoWidget().
The signal videoRingtoneStopped() is emitted when the tone finished playing.
CallScreen::CallScreen() {
...
VideoRingtone *vrt = qtopiaTask<VideoRingtone>();
if ( vrt )
connect( vrt, SIGNAL(videoWidgetReady()),
this, SLOT(showVideo()) );
...
}
CallScreen::showVideo() {
VideoRingtone *vrt = qtopiaTask<VideoRingtone>();
if (!vrt)
return;
QWidget *widget = vrt->videoWidget();
// set the new parent to manage resource
widget->setParent( this );
layout()->addWidget( widget );
}
This class is a Qt Extended server task and is part of the Qt Extended server. It cannot be used by other Qt Extended applications.
See also RingControl.
Creates a new VideoRingtone instance with the specified parent.
Destroys the VideoRingtone object.
Attempts to play the video fileName.
Stops the media content.
This signal is emitted when the media system fails to play the video tone.
This signal is emitted when the video tone is stopped.
Returns the video widget instance.
This signal is emitted when the video widget is created and ready to be used.
Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. | Qt qtextended4.4 | |
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD. | ||
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP ! |
Copyright © 2000-2012 - www.developpez.com