Skip to content

Commit

Permalink
directvt#86 WIP: Switch to scripting model
Browse files Browse the repository at this point in the history
  • Loading branch information
o-sdn-o committed Dec 22, 2024
1 parent 0acd374 commit 6ef5c35
Show file tree
Hide file tree
Showing 2 changed files with 194 additions and 120 deletions.
14 changes: 7 additions & 7 deletions src/vtm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1748,7 +1748,7 @@ namespace netxs::app::vtm
}
return "aborted"s;
}
auto vtm_nextwindow(eccc& script, qiew args)
auto vtm_nextwindow(eccc& script, qiew /*args*/)
{
return run_with_gear(script.gear_id, [&](hids& gear)
{
Expand Down Expand Up @@ -1796,7 +1796,7 @@ namespace netxs::app::vtm
gear.set_handled();
});
}
auto vtm_alwaysontop(eccc& script, qiew args)
auto vtm_alwaysontop(eccc& script, qiew /*args*/)
{
return run_with_gear(script.gear_id, [&](hids& gear)
{
Expand All @@ -1811,7 +1811,7 @@ namespace netxs::app::vtm
gear.set_handled();
});
}
auto vtm_warp(eccc& script, qiew args)
auto vtm_warp(eccc& script, qiew /*args*/)
{
return run_with_gear(script.gear_id, [&](hids& gear)
{
Expand All @@ -1834,7 +1834,7 @@ namespace netxs::app::vtm
}
});
}
auto vtm_close(eccc& script, qiew args)
auto vtm_close(eccc& script, qiew /*args*/)
{
return run_with_gear(script.gear_id, [&](hids& gear)
{
Expand All @@ -1848,7 +1848,7 @@ namespace netxs::app::vtm
});
});
}
auto vtm_minimize(eccc& script, qiew args)
auto vtm_minimize(eccc& script, qiew /*args*/)
{
return run_with_gear(script.gear_id, [&](hids& gear)
{
Expand All @@ -1866,7 +1866,7 @@ namespace netxs::app::vtm
});
});
}
auto vtm_maximize(eccc& script, qiew args)
auto vtm_maximize(eccc& script, qiew /*args*/)
{
return run_with_gear(script.gear_id, [&](hids& gear)
{
Expand All @@ -1884,7 +1884,7 @@ namespace netxs::app::vtm
});
});
}
auto vtm_fullscreen(eccc& script, qiew args)
auto vtm_fullscreen(eccc& script, qiew /*args*/)
{
return run_with_gear(script.gear_id, [&](hids& gear)
{
Expand Down
Loading

0 comments on commit 6ef5c35

Please sign in to comment.