|
@@ -0,0 +1,2689 @@
|
|
|
+package de.nplusc.izc.izpl.plugins.wmp.api ;
|
|
|
+
|
|
|
+import com4j.*;
|
|
|
+
|
|
|
+/**
|
|
|
+ * IMediaPlayer Interface
|
|
|
+ */
|
|
|
+@IID("{22D6F311-B0F6-11D0-94AB-0080C74C7E95}")
|
|
|
+public interface IMediaPlayer extends Com4jObject {
|
|
|
+ // Methods:
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the current position in the file
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "CurrentPosition"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type double
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1027) //= 0x403. The runtime will prefer the VTID if present
|
|
|
+ @VTID(7)
|
|
|
+ double currentPosition();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the current position in the file
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "CurrentPosition"
|
|
|
+ * </p>
|
|
|
+ * @param pCurrentPosition Mandatory double parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1027) //= 0x403. The runtime will prefer the VTID if present
|
|
|
+ @VTID(8)
|
|
|
+ void currentPosition(
|
|
|
+ double pCurrentPosition);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the play duration of the file
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "Duration"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type double
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1003) //= 0x3eb. The runtime will prefer the VTID if present
|
|
|
+ @VTID(9)
|
|
|
+ double duration();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the original width of the source images
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ImageSourceWidth"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1001) //= 0x3e9. The runtime will prefer the VTID if present
|
|
|
+ @VTID(10)
|
|
|
+ int imageSourceWidth();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the original height of the source images
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ImageSourceHeight"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1002) //= 0x3ea. The runtime will prefer the VTID if present
|
|
|
+ @VTID(11)
|
|
|
+ int imageSourceHeight();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the number of markers in the file
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "MarkerCount"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1010) //= 0x3f2. The runtime will prefer the VTID if present
|
|
|
+ @VTID(12)
|
|
|
+ int markerCount();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns whether or not the file can be fast forwarded or reversed
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "CanScan"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1011) //= 0x3f3. The runtime will prefer the VTID if present
|
|
|
+ @VTID(13)
|
|
|
+ boolean canScan();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns whether or not the file can be seeked into
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "CanSeek"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1012) //= 0x3f4. The runtime will prefer the VTID if present
|
|
|
+ @VTID(14)
|
|
|
+ boolean canSeek();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns whether or not the file can be seeked into by markers
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "CanSeekToMarkers"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1047) //= 0x417. The runtime will prefer the VTID if present
|
|
|
+ @VTID(15)
|
|
|
+ boolean canSeekToMarkers();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the current marker number
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "CurrentMarker"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1029) //= 0x405. The runtime will prefer the VTID if present
|
|
|
+ @VTID(16)
|
|
|
+ int currentMarker();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the current marker number
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "CurrentMarker"
|
|
|
+ * </p>
|
|
|
+ * @param pCurrentMarker Mandatory int parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1029) //= 0x405. The runtime will prefer the VTID if present
|
|
|
+ @VTID(17)
|
|
|
+ void currentMarker(
|
|
|
+ int pCurrentMarker);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the current file name and path
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "FileName"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1026) //= 0x402. The runtime will prefer the VTID if present
|
|
|
+ @VTID(18)
|
|
|
+ java.lang.String fileName();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the current file name and path
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "FileName"
|
|
|
+ * </p>
|
|
|
+ * @param pbstrFileName Mandatory java.lang.String parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1026) //= 0x402. The runtime will prefer the VTID if present
|
|
|
+ @VTID(19)
|
|
|
+ void fileName(
|
|
|
+ java.lang.String pbstrFileName);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the source path of the file
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "SourceLink"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1009) //= 0x3f1. The runtime will prefer the VTID if present
|
|
|
+ @VTID(20)
|
|
|
+ java.lang.String sourceLink();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the creation date of the file
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "CreationDate"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type java.util.Date
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1036) //= 0x40c. The runtime will prefer the VTID if present
|
|
|
+ @VTID(21)
|
|
|
+ java.util.Date creationDate();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the error correction type of the file
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ErrorCorrection"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1038) //= 0x40e. The runtime will prefer the VTID if present
|
|
|
+ @VTID(22)
|
|
|
+ java.lang.String errorCorrection();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the bandwidth of the file in bits per second
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "Bandwidth"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1037) //= 0x40d. The runtime will prefer the VTID if present
|
|
|
+ @VTID(23)
|
|
|
+ int bandwidth();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the protocol used to receive data
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "SourceProtocol"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1060) //= 0x424. The runtime will prefer the VTID if present
|
|
|
+ @VTID(24)
|
|
|
+ int sourceProtocol();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the number of packets received
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ReceivedPackets"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1039) //= 0x40f. The runtime will prefer the VTID if present
|
|
|
+ @VTID(25)
|
|
|
+ int receivedPackets();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the number of packets recovered
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "RecoveredPackets"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1040) //= 0x410. The runtime will prefer the VTID if present
|
|
|
+ @VTID(26)
|
|
|
+ int recoveredPackets();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the number of packets lost
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "LostPackets"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1041) //= 0x411. The runtime will prefer the VTID if present
|
|
|
+ @VTID(27)
|
|
|
+ int lostPackets();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the percentage of packets received in the last 30 seconds
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ReceptionQuality"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1042) //= 0x412. The runtime will prefer the VTID if present
|
|
|
+ @VTID(28)
|
|
|
+ int receptionQuality();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the number of times buffering occurred during playback
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "BufferingCount"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1043) //= 0x413. The runtime will prefer the VTID if present
|
|
|
+ @VTID(29)
|
|
|
+ int bufferingCount();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns whether or not the source is a broadcast
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "IsBroadcast"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1058) //= 0x422. The runtime will prefer the VTID if present
|
|
|
+ @VTID(30)
|
|
|
+ boolean isBroadcast();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the percentage of buffering completed
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "BufferingProgress"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1080) //= 0x438. The runtime will prefer the VTID if present
|
|
|
+ @VTID(31)
|
|
|
+ int bufferingProgress();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the name of the station
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ChannelName"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1050) //= 0x41a. The runtime will prefer the VTID if present
|
|
|
+ @VTID(32)
|
|
|
+ java.lang.String channelName();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the description of the station
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ChannelDescription"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1051) //= 0x41b. The runtime will prefer the VTID if present
|
|
|
+ @VTID(33)
|
|
|
+ java.lang.String channelDescription();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the location of the station metafile
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ChannelURL"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1052) //= 0x41c. The runtime will prefer the VTID if present
|
|
|
+ @VTID(34)
|
|
|
+ java.lang.String channelURL();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the contact address of the station
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ContactAddress"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1053) //= 0x41d. The runtime will prefer the VTID if present
|
|
|
+ @VTID(35)
|
|
|
+ java.lang.String contactAddress();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the contact phone number of the station
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ContactPhone"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1054) //= 0x41e. The runtime will prefer the VTID if present
|
|
|
+ @VTID(36)
|
|
|
+ java.lang.String contactPhone();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the contact e-mail address of the station
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ContactEmail"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1055) //= 0x41f. The runtime will prefer the VTID if present
|
|
|
+ @VTID(37)
|
|
|
+ java.lang.String contactEmail();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the control's buffering time
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "BufferingTime"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type double
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1070) //= 0x42e. The runtime will prefer the VTID if present
|
|
|
+ @VTID(38)
|
|
|
+ double bufferingTime();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the control's buffering time
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "BufferingTime"
|
|
|
+ * </p>
|
|
|
+ * @param pBufferingTime Mandatory double parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1070) //= 0x42e. The runtime will prefer the VTID if present
|
|
|
+ @VTID(39)
|
|
|
+ void bufferingTime(
|
|
|
+ double pBufferingTime);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not file playback is automatically started
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "AutoStart"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1017) //= 0x3f9. The runtime will prefer the VTID if present
|
|
|
+ @VTID(40)
|
|
|
+ boolean autoStart();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not file playback is automatically started
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "AutoStart"
|
|
|
+ * </p>
|
|
|
+ * @param pAutoStart Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1017) //= 0x3f9. The runtime will prefer the VTID if present
|
|
|
+ @VTID(41)
|
|
|
+ void autoStart(
|
|
|
+ boolean pAutoStart);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not a file is rewound at the end of playback
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "AutoRewind"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1018) //= 0x3fa. The runtime will prefer the VTID if present
|
|
|
+ @VTID(42)
|
|
|
+ boolean autoRewind();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not a file is rewound at the end of playback
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "AutoRewind"
|
|
|
+ * </p>
|
|
|
+ * @param pAutoRewind Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1018) //= 0x3fa. The runtime will prefer the VTID if present
|
|
|
+ @VTID(43)
|
|
|
+ void autoRewind(
|
|
|
+ boolean pAutoRewind);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the current playback rate
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "Rate"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type double
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1028) //= 0x404. The runtime will prefer the VTID if present
|
|
|
+ @VTID(44)
|
|
|
+ double rate();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the current playback rate
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "Rate"
|
|
|
+ * </p>
|
|
|
+ * @param pRate Mandatory double parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1028) //= 0x404. The runtime will prefer the VTID if present
|
|
|
+ @VTID(45)
|
|
|
+ void rate(
|
|
|
+ double pRate);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not the control sends keyboard events
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "SendKeyboardEvents"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1013) //= 0x3f5. The runtime will prefer the VTID if present
|
|
|
+ @VTID(46)
|
|
|
+ boolean sendKeyboardEvents();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not the control sends keyboard events
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "SendKeyboardEvents"
|
|
|
+ * </p>
|
|
|
+ * @param pSendKeyboardEvents Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1013) //= 0x3f5. The runtime will prefer the VTID if present
|
|
|
+ @VTID(47)
|
|
|
+ void sendKeyboardEvents(
|
|
|
+ boolean pSendKeyboardEvents);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not the control sends mouse click events
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "SendMouseClickEvents"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1014) //= 0x3f6. The runtime will prefer the VTID if present
|
|
|
+ @VTID(48)
|
|
|
+ boolean sendMouseClickEvents();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not the control sends mouse click events
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "SendMouseClickEvents"
|
|
|
+ * </p>
|
|
|
+ * @param pSendMouseClickEvents Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1014) //= 0x3f6. The runtime will prefer the VTID if present
|
|
|
+ @VTID(49)
|
|
|
+ void sendMouseClickEvents(
|
|
|
+ boolean pSendMouseClickEvents);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not the control sends mouse move events
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "SendMouseMoveEvents"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1015) //= 0x3f7. The runtime will prefer the VTID if present
|
|
|
+ @VTID(50)
|
|
|
+ boolean sendMouseMoveEvents();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not the control sends mouse move events
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "SendMouseMoveEvents"
|
|
|
+ * </p>
|
|
|
+ * @param pSendMouseMoveEvents Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1015) //= 0x3f7. The runtime will prefer the VTID if present
|
|
|
+ @VTID(51)
|
|
|
+ void sendMouseMoveEvents(
|
|
|
+ boolean pSendMouseMoveEvents);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the number of times a file plays
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "PlayCount"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1030) //= 0x406. The runtime will prefer the VTID if present
|
|
|
+ @VTID(52)
|
|
|
+ int playCount();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the number of times a file plays
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "PlayCount"
|
|
|
+ * </p>
|
|
|
+ * @param pPlayCount Mandatory int parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1030) //= 0x406. The runtime will prefer the VTID if present
|
|
|
+ @VTID(53)
|
|
|
+ void playCount(
|
|
|
+ int pPlayCount);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not clicking on the control starts file playback
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ClickToPlay"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1025) //= 0x401. The runtime will prefer the VTID if present
|
|
|
+ @VTID(54)
|
|
|
+ boolean clickToPlay();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not clicking on the control starts file playback
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "ClickToPlay"
|
|
|
+ * </p>
|
|
|
+ * @param pClickToPlay Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1025) //= 0x401. The runtime will prefer the VTID if present
|
|
|
+ @VTID(55)
|
|
|
+ void clickToPlay(
|
|
|
+ boolean pClickToPlay);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not scanning is enabled on files that support it
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "AllowScan"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1035) //= 0x40b. The runtime will prefer the VTID if present
|
|
|
+ @VTID(56)
|
|
|
+ boolean allowScan();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not scanning is enabled on files that support it
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "AllowScan"
|
|
|
+ * </p>
|
|
|
+ * @param pAllowScan Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1035) //= 0x40b. The runtime will prefer the VTID if present
|
|
|
+ @VTID(57)
|
|
|
+ void allowScan(
|
|
|
+ boolean pAllowScan);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not a right mouse click invokes a context menu
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "EnableContextMenu"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1021) //= 0x3fd. The runtime will prefer the VTID if present
|
|
|
+ @VTID(58)
|
|
|
+ boolean enableContextMenu();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not a right mouse click invokes a context menu
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "EnableContextMenu"
|
|
|
+ * </p>
|
|
|
+ * @param pEnableContextMenu Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1021) //= 0x3fd. The runtime will prefer the VTID if present
|
|
|
+ @VTID(59)
|
|
|
+ void enableContextMenu(
|
|
|
+ boolean pEnableContextMenu);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the cursor type
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "CursorType"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1044) //= 0x414. The runtime will prefer the VTID if present
|
|
|
+ @VTID(60)
|
|
|
+ int cursorType();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the cursor type
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "CursorType"
|
|
|
+ * </p>
|
|
|
+ * @param pCursorType Mandatory int parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1044) //= 0x414. The runtime will prefer the VTID if present
|
|
|
+ @VTID(61)
|
|
|
+ void cursorType(
|
|
|
+ int pCursorType);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the number of installable codecs used by the file
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "CodecCount"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1057) //= 0x421. The runtime will prefer the VTID if present
|
|
|
+ @VTID(62)
|
|
|
+ int codecCount();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not the display size can be set at run time
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "AllowChangeDisplaySize"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1056) //= 0x420. The runtime will prefer the VTID if present
|
|
|
+ @VTID(63)
|
|
|
+ boolean allowChangeDisplaySize();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not the display size can be set at run time
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "AllowChangeDisplaySize"
|
|
|
+ * </p>
|
|
|
+ * @param pAllowChangeDisplaySize Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1056) //= 0x420. The runtime will prefer the VTID if present
|
|
|
+ @VTID(64)
|
|
|
+ void allowChangeDisplaySize(
|
|
|
+ boolean pAllowChangeDisplaySize);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns whether or not the duration is known
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "IsDurationValid"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1059) //= 0x423. The runtime will prefer the VTID if present
|
|
|
+ @VTID(65)
|
|
|
+ boolean isDurationValid();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the open state of the control
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "OpenState"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1061) //= 0x425. The runtime will prefer the VTID if present
|
|
|
+ @VTID(66)
|
|
|
+ int openState();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not the control sends OpenStateChange events
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "SendOpenStateChangeEvents"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1062) //= 0x426. The runtime will prefer the VTID if present
|
|
|
+ @VTID(67)
|
|
|
+ boolean sendOpenStateChangeEvents();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not the control sends OpenStateChange events
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "SendOpenStateChangeEvents"
|
|
|
+ * </p>
|
|
|
+ * @param pSendOpenStateChangeEvents Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1062) //= 0x426. The runtime will prefer the VTID if present
|
|
|
+ @VTID(68)
|
|
|
+ void sendOpenStateChangeEvents(
|
|
|
+ boolean pSendOpenStateChangeEvents);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not the control sends Warning events
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "SendWarningEvents"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1063) //= 0x427. The runtime will prefer the VTID if present
|
|
|
+ @VTID(69)
|
|
|
+ boolean sendWarningEvents();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not the control sends Warning events
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "SendWarningEvents"
|
|
|
+ * </p>
|
|
|
+ * @param pSendWarningEvents Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1063) //= 0x427. The runtime will prefer the VTID if present
|
|
|
+ @VTID(70)
|
|
|
+ void sendWarningEvents(
|
|
|
+ boolean pSendWarningEvents);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not the control sends Error events
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "SendErrorEvents"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1064) //= 0x428. The runtime will prefer the VTID if present
|
|
|
+ @VTID(71)
|
|
|
+ boolean sendErrorEvents();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not the control sends Error events
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "SendErrorEvents"
|
|
|
+ * </p>
|
|
|
+ * @param pSendErrorEvents Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1064) //= 0x428. The runtime will prefer the VTID if present
|
|
|
+ @VTID(72)
|
|
|
+ void sendErrorEvents(
|
|
|
+ boolean pSendErrorEvents);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the play state of the control
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "PlayState"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type de.nplusc.izc.izpl.plugins.wmp.api.MPPlayStateConstants
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1068) //= 0x42c. The runtime will prefer the VTID if present
|
|
|
+ @VTID(73)
|
|
|
+ de.nplusc.izc.izpl.plugins.wmp.api.MPPlayStateConstants playState();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not the control sends PlayStateChange events
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "SendPlayStateChangeEvents"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1069) //= 0x42d. The runtime will prefer the VTID if present
|
|
|
+ @VTID(74)
|
|
|
+ boolean sendPlayStateChangeEvents();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not the control sends PlayStateChange events
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "SendPlayStateChangeEvents"
|
|
|
+ * </p>
|
|
|
+ * @param pSendPlayStateChangeEvents Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1069) //= 0x42d. The runtime will prefer the VTID if present
|
|
|
+ @VTID(75)
|
|
|
+ void sendPlayStateChangeEvents(
|
|
|
+ boolean pSendPlayStateChangeEvents);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the display size of images
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "DisplaySize"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type de.nplusc.izc.izpl.plugins.wmp.api.MPDisplaySizeConstants
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1032) //= 0x408. The runtime will prefer the VTID if present
|
|
|
+ @VTID(76)
|
|
|
+ de.nplusc.izc.izpl.plugins.wmp.api.MPDisplaySizeConstants displaySize();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the display size of images
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "DisplaySize"
|
|
|
+ * </p>
|
|
|
+ * @param pDisplaySize Mandatory de.nplusc.izc.izpl.plugins.wmp.api.MPDisplaySizeConstants parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1032) //= 0x408. The runtime will prefer the VTID if present
|
|
|
+ @VTID(77)
|
|
|
+ void displaySize(
|
|
|
+ de.nplusc.izc.izpl.plugins.wmp.api.MPDisplaySizeConstants pDisplaySize);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not received URLs are automatically invoked
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "InvokeURLs"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1020) //= 0x3fc. The runtime will prefer the VTID if present
|
|
|
+ @VTID(78)
|
|
|
+ boolean invokeURLs();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not received URLs are automatically invoked
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "InvokeURLs"
|
|
|
+ * </p>
|
|
|
+ * @param pInvokeURLs Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1020) //= 0x3fc. The runtime will prefer the VTID if present
|
|
|
+ @VTID(79)
|
|
|
+ void invokeURLs(
|
|
|
+ boolean pInvokeURLs);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the control's base HTTP URL
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "BaseURL"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1082) //= 0x43a. The runtime will prefer the VTID if present
|
|
|
+ @VTID(80)
|
|
|
+ java.lang.String baseURL();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the control's base HTTP URL
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "BaseURL"
|
|
|
+ * </p>
|
|
|
+ * @param pbstrBaseURL Mandatory java.lang.String parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1082) //= 0x43a. The runtime will prefer the VTID if present
|
|
|
+ @VTID(81)
|
|
|
+ void baseURL(
|
|
|
+ java.lang.String pbstrBaseURL);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the control's default target HTTP frame
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "DefaultFrame"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1083) //= 0x43b. The runtime will prefer the VTID if present
|
|
|
+ @VTID(82)
|
|
|
+ java.lang.String defaultFrame();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the control's default target HTTP frame
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "DefaultFrame"
|
|
|
+ * </p>
|
|
|
+ * @param pbstrDefaultFrame Mandatory java.lang.String parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1083) //= 0x43b. The runtime will prefer the VTID if present
|
|
|
+ @VTID(83)
|
|
|
+ void defaultFrame(
|
|
|
+ java.lang.String pbstrDefaultFrame);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns whether or not the control currently has an error
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "HasError"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1065) //= 0x429. The runtime will prefer the VTID if present
|
|
|
+ @VTID(84)
|
|
|
+ boolean hasError();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the description of the current error state
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ErrorDescription"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1066) //= 0x42a. The runtime will prefer the VTID if present
|
|
|
+ @VTID(85)
|
|
|
+ java.lang.String errorDescription();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the current error code
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ErrorCode"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1067) //= 0x42b. The runtime will prefer the VTID if present
|
|
|
+ @VTID(86)
|
|
|
+ int errorCode();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not the control shows its animation during initial file buffering
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "AnimationAtStart"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1045) //= 0x415. The runtime will prefer the VTID if present
|
|
|
+ @VTID(87)
|
|
|
+ boolean animationAtStart();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not the control shows its animation during initial file buffering
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "AnimationAtStart"
|
|
|
+ * </p>
|
|
|
+ * @param pAnimationAtStart Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1045) //= 0x415. The runtime will prefer the VTID if present
|
|
|
+ @VTID(88)
|
|
|
+ void animationAtStart(
|
|
|
+ boolean pAnimationAtStart);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not the control is transparent before playing
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "TransparentAtStart"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1022) //= 0x3fe. The runtime will prefer the VTID if present
|
|
|
+ @VTID(89)
|
|
|
+ boolean transparentAtStart();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether or not the control is transparent before playing
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "TransparentAtStart"
|
|
|
+ * </p>
|
|
|
+ * @param pTransparentAtStart Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1022) //= 0x3fe. The runtime will prefer the VTID if present
|
|
|
+ @VTID(90)
|
|
|
+ void transparentAtStart(
|
|
|
+ boolean pTransparentAtStart);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the current volume of the stream
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "Volume"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(19) //= 0x13. The runtime will prefer the VTID if present
|
|
|
+ @VTID(91)
|
|
|
+ int volume();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the current volume of the stream
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "Volume"
|
|
|
+ * </p>
|
|
|
+ * @param pVolume Mandatory int parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(19) //= 0x13. The runtime will prefer the VTID if present
|
|
|
+ @VTID(92)
|
|
|
+ void volume(
|
|
|
+ int pVolume);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the current balance of the stream
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "Balance"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(20) //= 0x14. The runtime will prefer the VTID if present
|
|
|
+ @VTID(93)
|
|
|
+ int balance();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the current balance of the stream
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "Balance"
|
|
|
+ * </p>
|
|
|
+ * @param pBalance Mandatory int parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(20) //= 0x14. The runtime will prefer the VTID if present
|
|
|
+ @VTID(94)
|
|
|
+ void balance(
|
|
|
+ int pBalance);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the readiness state of the control
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ReadyState"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type de.nplusc.izc.izpl.plugins.wmp.api.MPReadyStateConstants
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(-525) //= 0xfffffdf3. The runtime will prefer the VTID if present
|
|
|
+ @VTID(95)
|
|
|
+ de.nplusc.izc.izpl.plugins.wmp.api.MPReadyStateConstants readyState();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the position where playback will begin
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "SelectionStart"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type double
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(15) //= 0xf. The runtime will prefer the VTID if present
|
|
|
+ @VTID(96)
|
|
|
+ double selectionStart();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the position where playback will begin
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "SelectionStart"
|
|
|
+ * </p>
|
|
|
+ * @param pValue Mandatory double parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(15) //= 0xf. The runtime will prefer the VTID if present
|
|
|
+ @VTID(97)
|
|
|
+ void selectionStart(
|
|
|
+ double pValue);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the position where playback will stop
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "SelectionEnd"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type double
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(16) //= 0x10. The runtime will prefer the VTID if present
|
|
|
+ @VTID(98)
|
|
|
+ double selectionEnd();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the position where playback will stop
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "SelectionEnd"
|
|
|
+ * </p>
|
|
|
+ * @param pValue Mandatory double parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(16) //= 0x10. The runtime will prefer the VTID if present
|
|
|
+ @VTID(99)
|
|
|
+ void selectionEnd(
|
|
|
+ double pValue);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Shows or hides the display panel
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ShowDisplay"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(22) //= 0x16. The runtime will prefer the VTID if present
|
|
|
+ @VTID(100)
|
|
|
+ boolean showDisplay();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Shows or hides the display panel
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "ShowDisplay"
|
|
|
+ * </p>
|
|
|
+ * @param show Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(22) //= 0x16. The runtime will prefer the VTID if present
|
|
|
+ @VTID(101)
|
|
|
+ void showDisplay(
|
|
|
+ boolean show);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Shows or hides the control panel
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ShowControls"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(23) //= 0x17. The runtime will prefer the VTID if present
|
|
|
+ @VTID(102)
|
|
|
+ boolean showControls();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Shows or hides the control panel
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "ShowControls"
|
|
|
+ * </p>
|
|
|
+ * @param show Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(23) //= 0x17. The runtime will prefer the VTID if present
|
|
|
+ @VTID(103)
|
|
|
+ void showControls(
|
|
|
+ boolean show);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Shows or hides the position buttons in the control panel
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ShowPositionControls"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(24) //= 0x18. The runtime will prefer the VTID if present
|
|
|
+ @VTID(104)
|
|
|
+ boolean showPositionControls();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Shows or hides the position buttons in the control panel
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "ShowPositionControls"
|
|
|
+ * </p>
|
|
|
+ * @param show Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(24) //= 0x18. The runtime will prefer the VTID if present
|
|
|
+ @VTID(105)
|
|
|
+ void showPositionControls(
|
|
|
+ boolean show);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Shows or hides the tracker bar in the control panel
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ShowTracker"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(26) //= 0x1a. The runtime will prefer the VTID if present
|
|
|
+ @VTID(106)
|
|
|
+ boolean showTracker();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Shows or hides the tracker bar in the control panel
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "ShowTracker"
|
|
|
+ * </p>
|
|
|
+ * @param show Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(26) //= 0x1a. The runtime will prefer the VTID if present
|
|
|
+ @VTID(107)
|
|
|
+ void showTracker(
|
|
|
+ boolean show);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Enables or disables the position buttons in the control panel
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "EnablePositionControls"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(27) //= 0x1b. The runtime will prefer the VTID if present
|
|
|
+ @VTID(108)
|
|
|
+ boolean enablePositionControls();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Enables or disables the position buttons in the control panel
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "EnablePositionControls"
|
|
|
+ * </p>
|
|
|
+ * @param enable Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(27) //= 0x1b. The runtime will prefer the VTID if present
|
|
|
+ @VTID(109)
|
|
|
+ void enablePositionControls(
|
|
|
+ boolean enable);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Enables or disables the tracker bar in the control panel
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "EnableTracker"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(29) //= 0x1d. The runtime will prefer the VTID if present
|
|
|
+ @VTID(110)
|
|
|
+ boolean enableTracker();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Enables or disables the tracker bar in the control panel
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "EnableTracker"
|
|
|
+ * </p>
|
|
|
+ * @param enable Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(29) //= 0x1d. The runtime will prefer the VTID if present
|
|
|
+ @VTID(111)
|
|
|
+ void enableTracker(
|
|
|
+ boolean enable);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Enables or disables the control
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "Enabled"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(-514) //= 0xfffffdfe. The runtime will prefer the VTID if present
|
|
|
+ @VTID(112)
|
|
|
+ boolean enabled();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Enables or disables the control
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "Enabled"
|
|
|
+ * </p>
|
|
|
+ * @param pEnabled Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(-514) //= 0xfffffdfe. The runtime will prefer the VTID if present
|
|
|
+ @VTID(113)
|
|
|
+ void enabled(
|
|
|
+ boolean pEnabled);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the foreground color of the display panel
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "DisplayForeColor"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(36) //= 0x24. The runtime will prefer the VTID if present
|
|
|
+ @VTID(114)
|
|
|
+ int displayForeColor();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the foreground color of the display panel
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "DisplayForeColor"
|
|
|
+ * </p>
|
|
|
+ * @param foreColor Mandatory int parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(36) //= 0x24. The runtime will prefer the VTID if present
|
|
|
+ @VTID(115)
|
|
|
+ void displayForeColor(
|
|
|
+ int foreColor);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the background color of the display panel
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "DisplayBackColor"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(37) //= 0x25. The runtime will prefer the VTID if present
|
|
|
+ @VTID(116)
|
|
|
+ int displayBackColor();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the background color of the display panel
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "DisplayBackColor"
|
|
|
+ * </p>
|
|
|
+ * @param backColor Mandatory int parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(37) //= 0x25. The runtime will prefer the VTID if present
|
|
|
+ @VTID(117)
|
|
|
+ void displayBackColor(
|
|
|
+ int backColor);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the display mode (time or frames)
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "DisplayMode"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type de.nplusc.izc.izpl.plugins.wmp.api.MPDisplayModeConstants
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(32) //= 0x20. The runtime will prefer the VTID if present
|
|
|
+ @VTID(118)
|
|
|
+ de.nplusc.izc.izpl.plugins.wmp.api.MPDisplayModeConstants displayMode();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the display mode (time or frames)
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "DisplayMode"
|
|
|
+ * </p>
|
|
|
+ * @param pValue Mandatory de.nplusc.izc.izpl.plugins.wmp.api.MPDisplayModeConstants parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(32) //= 0x20. The runtime will prefer the VTID if present
|
|
|
+ @VTID(119)
|
|
|
+ void displayMode(
|
|
|
+ de.nplusc.izc.izpl.plugins.wmp.api.MPDisplayModeConstants pValue);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the video border 3D effect
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "VideoBorder3D"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1103) //= 0x44f. The runtime will prefer the VTID if present
|
|
|
+ @VTID(120)
|
|
|
+ boolean videoBorder3D();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the video border 3D effect
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "VideoBorder3D"
|
|
|
+ * </p>
|
|
|
+ * @param pVideoBorderWidth Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1103) //= 0x44f. The runtime will prefer the VTID if present
|
|
|
+ @VTID(121)
|
|
|
+ void videoBorder3D(
|
|
|
+ boolean pVideoBorderWidth);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the video border width
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "VideoBorderWidth"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1101) //= 0x44d. The runtime will prefer the VTID if present
|
|
|
+ @VTID(122)
|
|
|
+ int videoBorderWidth();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the video border width
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "VideoBorderWidth"
|
|
|
+ * </p>
|
|
|
+ * @param pVideoBorderWidth Mandatory int parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1101) //= 0x44d. The runtime will prefer the VTID if present
|
|
|
+ @VTID(123)
|
|
|
+ void videoBorderWidth(
|
|
|
+ int pVideoBorderWidth);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the video border color
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "VideoBorderColor"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1102) //= 0x44e. The runtime will prefer the VTID if present
|
|
|
+ @VTID(124)
|
|
|
+ int videoBorderColor();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the video border color
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "VideoBorderColor"
|
|
|
+ * </p>
|
|
|
+ * @param pVideoBorderWidth Mandatory int parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1102) //= 0x44e. The runtime will prefer the VTID if present
|
|
|
+ @VTID(125)
|
|
|
+ void videoBorderColor(
|
|
|
+ int pVideoBorderWidth);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Show Gotobar
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ShowGotoBar"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1088) //= 0x440. The runtime will prefer the VTID if present
|
|
|
+ @VTID(126)
|
|
|
+ boolean showGotoBar();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Show Gotobar
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "ShowGotoBar"
|
|
|
+ * </p>
|
|
|
+ * @param pbool Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1088) //= 0x440. The runtime will prefer the VTID if present
|
|
|
+ @VTID(127)
|
|
|
+ void showGotoBar(
|
|
|
+ boolean pbool);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Show status bar
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ShowStatusBar"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1086) //= 0x43e. The runtime will prefer the VTID if present
|
|
|
+ @VTID(128)
|
|
|
+ boolean showStatusBar();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Show status bar
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "ShowStatusBar"
|
|
|
+ * </p>
|
|
|
+ * @param pbool Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1086) //= 0x43e. The runtime will prefer the VTID if present
|
|
|
+ @VTID(129)
|
|
|
+ void showStatusBar(
|
|
|
+ boolean pbool);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Show captioning text
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ShowCaptioning"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1084) //= 0x43c. The runtime will prefer the VTID if present
|
|
|
+ @VTID(130)
|
|
|
+ boolean showCaptioning();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Show captioning text
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "ShowCaptioning"
|
|
|
+ * </p>
|
|
|
+ * @param pbool Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1084) //= 0x43c. The runtime will prefer the VTID if present
|
|
|
+ @VTID(131)
|
|
|
+ void showCaptioning(
|
|
|
+ boolean pbool);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Show audio controls
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ShowAudioControls"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1107) //= 0x453. The runtime will prefer the VTID if present
|
|
|
+ @VTID(132)
|
|
|
+ boolean showAudioControls();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Show audio controls
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "ShowAudioControls"
|
|
|
+ * </p>
|
|
|
+ * @param pbool Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1107) //= 0x453. The runtime will prefer the VTID if present
|
|
|
+ @VTID(133)
|
|
|
+ void showAudioControls(
|
|
|
+ boolean pbool);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the captioning information
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "CaptioningID"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1085) //= 0x43d. The runtime will prefer the VTID if present
|
|
|
+ @VTID(134)
|
|
|
+ java.lang.String captioningID();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the captioning information
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "CaptioningID"
|
|
|
+ * </p>
|
|
|
+ * @param pstrText Mandatory java.lang.String parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1085) //= 0x43d. The runtime will prefer the VTID if present
|
|
|
+ @VTID(135)
|
|
|
+ void captioningID(
|
|
|
+ java.lang.String pstrText);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the current mute state of the stream
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "Mute"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1089) //= 0x441. The runtime will prefer the VTID if present
|
|
|
+ @VTID(136)
|
|
|
+ boolean mute();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the current mute state of the stream
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "Mute"
|
|
|
+ * </p>
|
|
|
+ * @param vbool Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1089) //= 0x441. The runtime will prefer the VTID if present
|
|
|
+ @VTID(137)
|
|
|
+ void mute(
|
|
|
+ boolean vbool);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns whether the control currently has something that can be previewed
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "CanPreview"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1093) //= 0x445. The runtime will prefer the VTID if present
|
|
|
+ @VTID(138)
|
|
|
+ boolean canPreview();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether the control is in preview mode
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "PreviewMode"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1091) //= 0x443. The runtime will prefer the VTID if present
|
|
|
+ @VTID(139)
|
|
|
+ boolean previewMode();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets whether the control is in preview mode
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "PreviewMode"
|
|
|
+ * </p>
|
|
|
+ * @param pPreviewMode Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1091) //= 0x443. The runtime will prefer the VTID if present
|
|
|
+ @VTID(140)
|
|
|
+ void previewMode(
|
|
|
+ boolean pPreviewMode);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns whether the control currently has something that contains multiple items
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "HasMultipleItems"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1094) //= 0x446. The runtime will prefer the VTID if present
|
|
|
+ @VTID(141)
|
|
|
+ boolean hasMultipleItems();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the current language, using windows LCIDs
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "Language"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1095) //= 0x447. The runtime will prefer the VTID if present
|
|
|
+ @VTID(142)
|
|
|
+ int language();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the current language, using windows LCIDs
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "Language"
|
|
|
+ * </p>
|
|
|
+ * @param pLanguage Mandatory int parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1095) //= 0x447. The runtime will prefer the VTID if present
|
|
|
+ @VTID(143)
|
|
|
+ void language(
|
|
|
+ int pLanguage);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the current audio stream
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "AudioStream"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1096) //= 0x448. The runtime will prefer the VTID if present
|
|
|
+ @VTID(144)
|
|
|
+ int audioStream();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the current audio stream
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "AudioStream"
|
|
|
+ * </p>
|
|
|
+ * @param pStream Mandatory int parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1096) //= 0x448. The runtime will prefer the VTID if present
|
|
|
+ @VTID(145)
|
|
|
+ void audioStream(
|
|
|
+ int pStream);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the closed-captioning style
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "SAMIStyle"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1097) //= 0x449. The runtime will prefer the VTID if present
|
|
|
+ @VTID(146)
|
|
|
+ java.lang.String samiStyle();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the closed-captioning style
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "SAMIStyle"
|
|
|
+ * </p>
|
|
|
+ * @param pbstrStyle Mandatory java.lang.String parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1097) //= 0x449. The runtime will prefer the VTID if present
|
|
|
+ @VTID(147)
|
|
|
+ void samiStyle(
|
|
|
+ java.lang.String pbstrStyle);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the closed-captioning language
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "SAMILang"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1098) //= 0x44a. The runtime will prefer the VTID if present
|
|
|
+ @VTID(148)
|
|
|
+ java.lang.String samiLang();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the closed-captioning language
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "SAMILang"
|
|
|
+ * </p>
|
|
|
+ * @param pbstrLang Mandatory java.lang.String parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1098) //= 0x44a. The runtime will prefer the VTID if present
|
|
|
+ @VTID(149)
|
|
|
+ void samiLang(
|
|
|
+ java.lang.String pbstrLang);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the closed-captioning filename
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "SAMIFileName"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1099) //= 0x44b. The runtime will prefer the VTID if present
|
|
|
+ @VTID(150)
|
|
|
+ java.lang.String samiFileName();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns or sets the closed-captioning filename
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "SAMIFileName"
|
|
|
+ * </p>
|
|
|
+ * @param pbstrFileName Mandatory java.lang.String parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1099) //= 0x44b. The runtime will prefer the VTID if present
|
|
|
+ @VTID(151)
|
|
|
+ void samiFileName(
|
|
|
+ java.lang.String pbstrFileName);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the number of media streams
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "StreamCount"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1100) //= 0x44c. The runtime will prefer the VTID if present
|
|
|
+ @VTID(152)
|
|
|
+ int streamCount();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns a unique id for the player
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ClientId"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1106) //= 0x452. The runtime will prefer the VTID if present
|
|
|
+ @VTID(153)
|
|
|
+ java.lang.String clientId();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the network connection speed of the player
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ConnectionSpeed"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1113) //= 0x459. The runtime will prefer the VTID if present
|
|
|
+ @VTID(154)
|
|
|
+ int connectionSpeed();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Size the control automatically to the loaded media
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "AutoSize"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(-500) //= 0xfffffe0c. The runtime will prefer the VTID if present
|
|
|
+ @VTID(155)
|
|
|
+ boolean autoSize();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Size the control automatically to the loaded media
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "AutoSize"
|
|
|
+ * </p>
|
|
|
+ * @param pbool Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(-500) //= 0xfffffe0c. The runtime will prefer the VTID if present
|
|
|
+ @VTID(156)
|
|
|
+ void autoSize(
|
|
|
+ boolean pbool);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Enables controls during full screen
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "EnableFullScreenControls"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1108) //= 0x454. The runtime will prefer the VTID if present
|
|
|
+ @VTID(157)
|
|
|
+ boolean enableFullScreenControls();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Enables controls during full screen
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "EnableFullScreenControls"
|
|
|
+ * </p>
|
|
|
+ * @param pbVal Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1108) //= 0x454. The runtime will prefer the VTID if present
|
|
|
+ @VTID(158)
|
|
|
+ void enableFullScreenControls(
|
|
|
+ boolean pbVal);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the ActiveMovie player object
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "ActiveMovie"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type com4j.Com4jObject
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1109) //= 0x455. The runtime will prefer the VTID if present
|
|
|
+ @VTID(159)
|
|
|
+ @ReturnValue(type=NativeType.Dispatch)
|
|
|
+ com4j.Com4jObject activeMovie();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the NetShow player object
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "NSPlay"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type com4j.Com4jObject
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1110) //= 0x456. The runtime will prefer the VTID if present
|
|
|
+ @VTID(160)
|
|
|
+ @ReturnValue(type=NativeType.Dispatch)
|
|
|
+ com4j.Com4jObject nsPlay();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Render video without a window
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Getter method for the COM property "WindowlessVideo"
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1112) //= 0x458. The runtime will prefer the VTID if present
|
|
|
+ @VTID(161)
|
|
|
+ boolean windowlessVideo();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Render video without a window
|
|
|
+ * </p>
|
|
|
+ * <p>
|
|
|
+ * Setter method for the COM property "WindowlessVideo"
|
|
|
+ * </p>
|
|
|
+ * @param pbool Mandatory boolean parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(1112) //= 0x458. The runtime will prefer the VTID if present
|
|
|
+ @VTID(162)
|
|
|
+ void windowlessVideo(
|
|
|
+ boolean pbool);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Begins playing from the current position or marker
|
|
|
+ * </p>
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(2001) //= 0x7d1. The runtime will prefer the VTID if present
|
|
|
+ @VTID(163)
|
|
|
+ void play();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Stops file playback at the current position
|
|
|
+ * </p>
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(2003) //= 0x7d3. The runtime will prefer the VTID if present
|
|
|
+ @VTID(164)
|
|
|
+ void stop();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Pauses file playback at the current position
|
|
|
+ * </p>
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(2002) //= 0x7d2. The runtime will prefer the VTID if present
|
|
|
+ @VTID(165)
|
|
|
+ void pause();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the time of a marker
|
|
|
+ * </p>
|
|
|
+ * @param markerNum Mandatory int parameter.
|
|
|
+ * @return Returns a value of type double
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(2004) //= 0x7d4. The runtime will prefer the VTID if present
|
|
|
+ @VTID(166)
|
|
|
+ double getMarkerTime(
|
|
|
+ int markerNum);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the name of a marker
|
|
|
+ * </p>
|
|
|
+ * @param markerNum Mandatory int parameter.
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(2005) //= 0x7d5. The runtime will prefer the VTID if present
|
|
|
+ @VTID(167)
|
|
|
+ java.lang.String getMarkerName(
|
|
|
+ int markerNum);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Displays version information dialog box
|
|
|
+ * </p>
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(-552) //= 0xfffffdd8. The runtime will prefer the VTID if present
|
|
|
+ @VTID(168)
|
|
|
+ void aboutBox();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns whether or not a codec is installed
|
|
|
+ * </p>
|
|
|
+ * @param codecNum Mandatory int parameter.
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(2007) //= 0x7d7. The runtime will prefer the VTID if present
|
|
|
+ @VTID(169)
|
|
|
+ boolean getCodecInstalled(
|
|
|
+ int codecNum);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the descriptive name of a codec
|
|
|
+ * </p>
|
|
|
+ * @param codecNum Mandatory int parameter.
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(2008) //= 0x7d8. The runtime will prefer the VTID if present
|
|
|
+ @VTID(170)
|
|
|
+ java.lang.String getCodecDescription(
|
|
|
+ int codecNum);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the URL for a codec
|
|
|
+ * </p>
|
|
|
+ * @param codecNum Mandatory int parameter.
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(2009) //= 0x7d9. The runtime will prefer the VTID if present
|
|
|
+ @VTID(171)
|
|
|
+ java.lang.String getCodecURL(
|
|
|
+ int codecNum);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns a More Information URL
|
|
|
+ * </p>
|
|
|
+ * @param moreInfoType Mandatory de.nplusc.izc.izpl.plugins.wmp.api.MPMoreInfoType parameter.
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(2011) //= 0x7db. The runtime will prefer the VTID if present
|
|
|
+ @VTID(172)
|
|
|
+ java.lang.String getMoreInfoURL(
|
|
|
+ de.nplusc.izc.izpl.plugins.wmp.api.MPMoreInfoType moreInfoType);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns an Information String for the Media
|
|
|
+ * </p>
|
|
|
+ * @param mediaInfoType Mandatory de.nplusc.izc.izpl.plugins.wmp.api.MPMediaInfoType parameter.
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(2016) //= 0x7e0. The runtime will prefer the VTID if present
|
|
|
+ @VTID(173)
|
|
|
+ java.lang.String getMediaInfoString(
|
|
|
+ de.nplusc.izc.izpl.plugins.wmp.api.MPMediaInfoType mediaInfoType);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Cancels the current operation
|
|
|
+ * </p>
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(2006) //= 0x7d6. The runtime will prefer the VTID if present
|
|
|
+ @VTID(174)
|
|
|
+ void cancel();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Opens the given filename asynchronously
|
|
|
+ * </p>
|
|
|
+ * @param bstrFileName Mandatory java.lang.String parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(2010) //= 0x7da. The runtime will prefer the VTID if present
|
|
|
+ @VTID(175)
|
|
|
+ void open(
|
|
|
+ java.lang.String bstrFileName);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Determines whether the sound card is enabled on the machine
|
|
|
+ * </p>
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(53) //= 0x35. The runtime will prefer the VTID if present
|
|
|
+ @VTID(176)
|
|
|
+ boolean isSoundCardEnabled();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Jumps to the next item
|
|
|
+ * </p>
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(2023) //= 0x7e7. The runtime will prefer the VTID if present
|
|
|
+ @VTID(177)
|
|
|
+ void next();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Jumps to the previous item
|
|
|
+ * </p>
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(2022) //= 0x7e6. The runtime will prefer the VTID if present
|
|
|
+ @VTID(178)
|
|
|
+ void previous();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Selects a media stream
|
|
|
+ * </p>
|
|
|
+ * @param streamNum Mandatory int parameter.
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(2015) //= 0x7df. The runtime will prefer the VTID if present
|
|
|
+ @VTID(179)
|
|
|
+ void streamSelect(
|
|
|
+ int streamNum);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Fast Forwards the playback
|
|
|
+ * </p>
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(2024) //= 0x7e8. The runtime will prefer the VTID if present
|
|
|
+ @VTID(180)
|
|
|
+ void fastForward();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Fast Reverses the playback
|
|
|
+ * </p>
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(2025) //= 0x7e9. The runtime will prefer the VTID if present
|
|
|
+ @VTID(181)
|
|
|
+ void fastReverse();
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the name of a media stream
|
|
|
+ * </p>
|
|
|
+ * @param streamNum Mandatory int parameter.
|
|
|
+ * @return Returns a value of type java.lang.String
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(2019) //= 0x7e3. The runtime will prefer the VTID if present
|
|
|
+ @VTID(182)
|
|
|
+ java.lang.String getStreamName(
|
|
|
+ int streamNum);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns the group of a media stream
|
|
|
+ * </p>
|
|
|
+ * @param streamNum Mandatory int parameter.
|
|
|
+ * @return Returns a value of type int
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(2020) //= 0x7e4. The runtime will prefer the VTID if present
|
|
|
+ @VTID(183)
|
|
|
+ int getStreamGroup(
|
|
|
+ int streamNum);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * <p>
|
|
|
+ * Returns whether a media stream is selected
|
|
|
+ * </p>
|
|
|
+ * @param streamNum Mandatory int parameter.
|
|
|
+ * @return Returns a value of type boolean
|
|
|
+ */
|
|
|
+
|
|
|
+ @DISPID(2021) //= 0x7e5. The runtime will prefer the VTID if present
|
|
|
+ @VTID(184)
|
|
|
+ boolean getStreamSelected(
|
|
|
+ int streamNum);
|
|
|
+
|
|
|
+
|
|
|
+ // Properties:
|
|
|
+}
|