qtmobility/src/multimedia/qmediarecordercontrol.cpp
changeset 14 6fbed849b4f4
parent 11 06b8e2af4411
equal deleted inserted replaced
11:06b8e2af4411 14:6fbed849b4f4
    44 QT_BEGIN_NAMESPACE
    44 QT_BEGIN_NAMESPACE
    45 
    45 
    46 
    46 
    47 /*!
    47 /*!
    48     \class QMediaRecorderControl
    48     \class QMediaRecorderControl
    49     \ingroup multimedia-serv
    49     \ingroup multimedia
    50 
    50 
    51     \preliminary
    51     \preliminary
    52     \brief The QMediaRecorderControl class provides access to the recording
    52     \brief The QMediaRecorderControl class provides access to the recording
    53     functionality of a QMediaService.
    53     functionality of a QMediaService.
    54 
    54 
    62     code through the QMediaRecorder class.
    62     code through the QMediaRecorder class.
    63 
    63 
    64     The interface name of QMediaRecorderControl is \c com.nokia.Qt.QMediaRecorderControl/1.0 as
    64     The interface name of QMediaRecorderControl is \c com.nokia.Qt.QMediaRecorderControl/1.0 as
    65     defined in QMediaRecorderControl_iid.
    65     defined in QMediaRecorderControl_iid.
    66 
    66 
    67     \sa QMediaService::control(), QMediaRecorder
    67     \sa QMediaService::requestControl(), QMediaRecorder
    68 
    68 
    69 */
    69 */
    70 
    70 
    71 /*!
    71 /*!
    72     \macro QMediaRecorderControl_iid
    72     \macro QMediaRecorderControl_iid
   142 
   142 
   143     Commits the encoder settings and performs pre-initialization to reduce delays when recording
   143     Commits the encoder settings and performs pre-initialization to reduce delays when recording
   144     is started.
   144     is started.
   145 */
   145 */
   146 
   146 
       
   147 /*!
       
   148     \fn bool QMediaRecorderControl::isMuted() const
       
   149 
       
   150     Returns true if the recorder is muted, and false if it is not.
       
   151 */
       
   152 
       
   153 /*!
       
   154     \fn void QMediaRecorderControl::setMuted(bool muted)
       
   155 
       
   156     Sets the \a muted state of a media recorder.
       
   157 */
       
   158 
   147 
   159 
   148 /*!
   160 /*!
   149     \fn void QMediaRecorderControl::stateChanged(QMediaRecorder::State state)
   161     \fn void QMediaRecorderControl::stateChanged(QMediaRecorder::State state)
   150 
   162 
   151     Signals that the \a state of a media recorder has changed.
   163     Signals that the \a state of a media recorder has changed.
   158 
   170 
   159     This only emitted when there is a discontinuous change in the duration such as being reset to 0.
   171     This only emitted when there is a discontinuous change in the duration such as being reset to 0.
   160 */
   172 */
   161 
   173 
   162 /*!
   174 /*!
       
   175     \fn void QMediaRecorderControl::mutedChanged(bool muted)
       
   176 
       
   177     Signals that the \a muted state of a media recorder has changed.
       
   178 */
       
   179 
       
   180 /*!
   163     \fn void QMediaRecorderControl::error(int error, const QString &errorString)
   181     \fn void QMediaRecorderControl::error(int error, const QString &errorString)
   164 
   182 
   165     Signals that an \a error has occurred.  The \a errorString describes the error.
   183     Signals that an \a error has occurred.  The \a errorString describes the error.
   166 */
   184 */
   167 
   185