Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

AudioCategory

Control all active sound instances by group. More...

Inherits Item

This type was introduced in Qt 5.0.

Properties

Methods

Detailed Description

This type is part of the QtAudioEngine 1.0 module.

An instance of AudioCategory can be accessed through QtAudioEngine1::AudioEngine::categories with its unique name and must be defined inside AudioEngine.

 import QtQuick 2.0
 import QtAudioEngine 1.0

 Rectangle {
     color:"white"
     width: 300
     height: 500

     AudioEngine {
         id:audioengine

         AudioCategory {
             name: "sfx"
             volume: 0.8
         }

         AudioSample {
             name:"explosion"
             source: "explosion-02.wav"
         }

         Sound {
             name:"explosion"
             category: "sfx"
             PlayVariation {
                 sample:"explosion"
             }
         }
     }

     MouseArea {
         anchors.fill: parent
         onPressed: {
             audioengine.categories["sfx"].volume = 0.5;
         }
     }
 }

Sound instances can be grouped together by specifying the category property. When you change the volume of a category, all audio output from related instances will be affected as well.

Note: there will always be an AudioCategory named default whether you explicitly define it or not. If you do not specify any category for a Sound, it will be grouped into the default category.

Property Documentation

name : string

This property holds the name of AudioCategory. The name must be unique among all categories and only defined once. The name cannot be changed after the instance has been initialized.


volume : real

This property holds the volume of the category and will modulate all audio output from the instances which belong to this category.


Method Documentation

AudioCategory::pause()

Pauses all active sound instances which belong to this category.


AudioCategory::stop()

Stops all active sound instances which belong to this category.


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 5.0-snapshot
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 !
 
 
 
 
Partenaires

Hébergement Web