我想使用 c++ 程序在桌面上重新定位应用程序窗口。我应该怎么做,我需要两种情况的解决方案。
当我有想要移动的应用程序的来源时。
通过编写外部程序来移动其他应用程序的窗口。
外部 Bash 脚本:
xdotool search --onlyvisible --class dolphin windowmove 13 37
# ^ ^ ^
# window class X & Y coordinates
有关这方面的更多信息,请使用xdotool search
和。xdotool windowmove
man xdotool
C++ 示例:
#include <cstdlib>
#include <string>
#include <sstream>
using namespace std;
int main()
{
string cls="dolphin";
int x=13, y=37;
stringstream s;
s<<"xdotool search --onlyvisible --class "<<cls<<" windowmove "<<x<<" "<<y;
system(s.str().c_str());
return 0;
}
最起码的例子:
#include <stdlib.h>
int main()
{
system("xdotool search --onlyvisible --class dolphin windowmove 13 37");
return 0;
}