在Gnome或KDE中以编程方式在桌面上移动应用程序窗口

时间:2012-08-24 12:52:27

标签: c++ gnome kde

我想使用c ++程序在桌面上重新定位应用程序窗口。 我该怎么做呢,我需要解决这两种情况。

  1. 当我有想要移动的应用程序的源。

  2. 通过编写外部程序来移动其他应用程序的窗口。

1 个答案:

答案 0 :(得分:1)

外部Bash脚本:

xdotool   search --onlyvisible --class dolphin   windowmove 13 37
#                                         ^                 ^   ^
#                                   window class            X & Y coordinates

有关此问题的详情,请使用xdotool searchxdotool windowmoveman 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;
}