Changeset e5ff4e7a60e66465322c356392778a3593918b95
- Timestamp:
- 06/14/08 10:09:06
(3 months ago)
- Author:
- Jean-Paul Saman <jpsaman@videolan.org>
- git-committer:
- Jean-Paul Saman <jpsaman@videolan.org> 1213430946 +0200
- git-parent:
[a2ccb9b4e1210d29a9578074636e6969e0bf8795]
- git-author:
- Jean-Paul Saman <jpsaman@videolan.org> 1213105199 +0200
- Message:
Move Toolbar to the IVLCControl2 interface object, where it should have been all along.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rd5ec802 |
re5ff4e7 |
|
| 135 | 135 | */ |
|---|
| 136 | 136 | |
|---|
| 137 | | /* |
|---|
| 138 | | * caution: vlcobject.toolbar:bool does not yet exists in Firefox |
|---|
| 139 | | * plugin. Official usage is through "toolbar" property for now, |
|---|
| 140 | | * which is compatibile with Firefox. |
|---|
| 141 | | */ |
|---|
| 142 | | [id(DISPID_Toolbar), propget, helpstring("Returns/sets visibility of the toolbar")] |
|---|
| 143 | | HRESULT Toolbar([out, retval] VARIANT_BOOL* visible); |
|---|
| 144 | | [id(DISPID_Toolbar), propput, helpstring("Returns/sets visibility of the toolbar")] |
|---|
| 145 | | HRESULT Toolbar([in] VARIANT_BOOL visible); |
|---|
| 146 | 137 | HRESULT addTarget([in] BSTR uri, [in] VARIANT options, [in] enum VLCPlaylistMode mode, [in] int position); |
|---|
| 147 | 138 | [propget, helpstring("Returns index of current item in playlist.")] |
|---|
| … | … | |
| 421 | 412 | [propget, helpstring("Returns/sets the fullscreen state.")] |
|---|
| 422 | 413 | HRESULT fullscreen([out, retval] VARIANT_BOOL* fullscreen); |
|---|
| | 414 | |
|---|
| 423 | 415 | [propput, helpstring("Returns/sets the fullscreen state.")] |
|---|
| 424 | 416 | HRESULT fullscreen([in] VARIANT_BOOL fullscreen); |
|---|
| … | … | |
| 512 | 504 | HRESULT BackColor([in] OLE_COLOR backcolor); |
|---|
| 513 | 505 | |
|---|
| | 506 | /* |
|---|
| | 507 | * caution: vlcobject.toolbar:bool does not yet exists in Firefox |
|---|
| | 508 | * plugin. Official usage is through "toolbar" property for now, |
|---|
| | 509 | * which is compatibile with Firefox. |
|---|
| | 510 | */ |
|---|
| | 511 | [id(DISPID_Toolbar), propget, helpstring("Returns/sets visibility of the toolbar")] |
|---|
| | 512 | HRESULT Toolbar([out, retval] VARIANT_BOOL* visible); |
|---|
| | 513 | [id(DISPID_Toolbar), propput, helpstring("Returns/sets visibility of the toolbar")] |
|---|
| | 514 | HRESULT Toolbar([in] VARIANT_BOOL visible); |
|---|
| | 515 | |
|---|
| 514 | 516 | [propget, helpstring("Returns the audio object.")] |
|---|
| 515 | 517 | HRESULT audio([out, retval] IVLCAudio** obj); |
|---|