All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class quicktime.std.qtcomponents.SoundCompressionDialog

java.lang.Object
   |
   +----quicktime.QTObject
           |
           +----quicktime.std.comp.ComponentIdentifier
                   |
                   +----quicktime.std.comp.Component
                           |
                           +----quicktime.std.qtcomponents.CompressionDialog
                                   |
                                   +----quicktime.std.qtcomponents.SoundCompressionDialog

public final class SoundCompressionDialog
extends CompressionDialog
implements QuickTimeLib
This class represents the standard compression dialog for sound.


Constructor Index

 o SoundCompressionDialog()
Opens the CompressionDialog component.

Method Index

 o getInfoChannelCount()
Retrieves the current channel count for a dialog.
 o getInfoCompression()
Retrieves the current compression type for a dialog.
 o getInfoCompressionList()
Retrieves the current compression type list for a dialog.
 o getInfoSampleRate()
Retrieves the current sample rate for a dialog.
 o getInfoSampleSize()
Retrieves the current sample size for a dialog.
 o setInfoChannelCount(int)
Sets the current channel count for a dialog.
 o setInfoCompression(int)
Sets the current compression type for a dialog.
 o setInfoCompressionList(int[])
Sets the current list of compression types for a dialog.
 o setInfoSampleRate(float)
Sets the current sample rate for a dialog.
 o setInfoSampleSize(int)
Sets the current sample size for a dialog.

Constructors

 o SoundCompressionDialog
 public SoundCompressionDialog() throws QTException
Opens the CompressionDialog component.

Methods

 o getInfoSampleRate
 public float getInfoSampleRate() throws StdQTException
Retrieves the current sample rate for a dialog.

QuickTime::SCGetInfo()

Returns:
the sample rate
 o setInfoSampleRate
 public void setInfoSampleRate(float rate) throws StdQTException
Sets the current sample rate for a dialog.

QuickTime::SCSetInfo()

Parameters:
rate - the new sample rate
 o getInfoSampleSize
 public int getInfoSampleSize() throws StdQTException
Retrieves the current sample size for a dialog.

QuickTime::SCGetInfo()

Returns:
the sample size
 o setInfoSampleSize
 public void setInfoSampleSize(int size) throws StdQTException
Sets the current sample size for a dialog.

QuickTime::SCSetInfo()

Parameters:
size - the new sample size
 o getInfoChannelCount
 public int getInfoChannelCount() throws StdQTException
Retrieves the current channel count for a dialog.

QuickTime::SCGetInfo()

Returns:
the channel count
 o setInfoChannelCount
 public void setInfoChannelCount(int n) throws StdQTException
Sets the current channel count for a dialog.

QuickTime::SCSetInfo()

Parameters:
n - the new channel count
 o setInfoCompression
 public void setInfoCompression(int compType) throws StdQTException
Sets the current compression type for a dialog.

QuickTime::SCSetInfo()

Parameters:
compType - the new compression type
 o getInfoCompression
 public int getInfoCompression() throws StdQTException
Retrieves the current compression type for a dialog.

QuickTime::SCGetInfo()

Returns:
the compression
 o setInfoCompressionList
 public void setInfoCompressionList(int compTypes[]) throws StdQTException
Sets the current list of compression types for a dialog.

QuickTime::SCSetInfo()

Parameters:
compTypes - the new compression types, if null then show all available compression options.
 o getInfoCompressionList
 public int[] getInfoCompressionList() throws StdQTException
Retrieves the current compression type list for a dialog.

QuickTime::SCGetInfo()

Returns:
the compression list

All Packages  Class Hierarchy  This Package  Previous  Next  Index