Changeset 1f09d331a4c5def92b66b3d36a3288929bc71b76
- Timestamp:
- 26/04/06 19:59:29
(3 years ago)
- Author:
- Olivier Teulière <ipkiss@videolan.org>
- git-committer:
- Olivier Teulière <ipkiss@videolan.org> 1146074369 +0000
- git-parent:
[74a92012bbc633466d2a8ffc15cce297b4c2acf0]
- git-author:
- Olivier Teulière <ipkiss@videolan.org> 1146074369 +0000
- Message:
- skins2: Added the vlc.snapshot() action
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r348abac |
r1f09d33 |
|
| 850 | 850 | </para></listitem> |
|---|
| 851 | 851 | <listitem><para> |
|---|
| | 852 | <emphasis>vlc.snapshot()</emphasis>: Take a snapshot (since VLC 0.8.5). |
|---|
| | 853 | </para></listitem> |
|---|
| | 854 | <listitem><para> |
|---|
| 852 | 855 | <emphasis>vlc.onTop()</emphasis>: Toggle the "Always on top" status (since VLC 0.8.0). |
|---|
| 853 | 856 | </para></listitem> |
|---|
| ra5a9346 |
r1f09d33 |
|
| 33 | 33 | commands/cmd_resize.cpp \ |
|---|
| 34 | 34 | commands/cmd_resize.hpp \ |
|---|
| | 35 | commands/cmd_snapshot.cpp \ |
|---|
| | 36 | commands/cmd_snapshot.hpp \ |
|---|
| 35 | 37 | commands/cmd_show_window.hpp \ |
|---|
| 36 | 38 | commands/cmd_vars.cpp \ |
|---|
| r5e56e46 |
r1f09d33 |
|
| 39 | 39 | #include "../commands/cmd_on_top.hpp" |
|---|
| 40 | 40 | #include "../commands/cmd_show_window.hpp" |
|---|
| | 41 | #include "../commands/cmd_snapshot.hpp" |
|---|
| 41 | 42 | #include "../src/theme.hpp" |
|---|
| 42 | 43 | #include "../src/var_manager.hpp" |
|---|
| … | … | |
| 109 | 110 | REGISTER_CMD( "vlc.minimize()", CmdMinimize ) |
|---|
| 110 | 111 | REGISTER_CMD( "vlc.onTop()", CmdOnTop ) |
|---|
| | 112 | REGISTER_CMD( "vlc.snapshot()", CmdSnapshot ) |
|---|
| 111 | 113 | REGISTER_CMD( "vlc.quit()", CmdQuit ) |
|---|
| 112 | 114 | m_commandMap["equalizer.enable()"] = |
|---|