Changeset 1f09d331a4c5def92b66b3d36a3288929bc71b76

Show
Ignore:
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
  • doc/skins/skins2-howto.xml

    r348abac r1f09d33  
    850850  </para></listitem> 
    851851  <listitem><para> 
     852    <emphasis>vlc.snapshot()</emphasis>: Take a snapshot (since VLC 0.8.5). 
     853  </para></listitem> 
     854  <listitem><para> 
    852855    <emphasis>vlc.onTop()</emphasis>: Toggle the "Always on top" status (since VLC 0.8.0). 
    853856  </para></listitem> 
  • modules/gui/skins2/Modules.am

    ra5a9346 r1f09d33  
    3333    commands/cmd_resize.cpp \ 
    3434    commands/cmd_resize.hpp \ 
     35    commands/cmd_snapshot.cpp \ 
     36    commands/cmd_snapshot.hpp \ 
    3537    commands/cmd_show_window.hpp \ 
    3638    commands/cmd_vars.cpp \ 
  • modules/gui/skins2/parser/interpreter.cpp

    r5e56e46 r1f09d33  
    3939#include "../commands/cmd_on_top.hpp" 
    4040#include "../commands/cmd_show_window.hpp" 
     41#include "../commands/cmd_snapshot.hpp" 
    4142#include "../src/theme.hpp" 
    4243#include "../src/var_manager.hpp" 
     
    109110    REGISTER_CMD( "vlc.minimize()", CmdMinimize ) 
    110111    REGISTER_CMD( "vlc.onTop()", CmdOnTop ) 
     112    REGISTER_CMD( "vlc.snapshot()", CmdSnapshot ) 
    111113    REGISTER_CMD( "vlc.quit()", CmdQuit ) 
    112114    m_commandMap["equalizer.enable()"] =