ALT Linux Community general discussions
 help / color / mirror / Atom feed
From: Alexander Dymo <cloudtemple@mksat.net>
To: community@altlinux.ru
Subject: Re: [Comm] Закрыть окошко из коммандой строки
Date: Tue, 29 Oct 2002 00:28:55 +0200
Message-ID: <200210290028.56071.cloudtemple@mksat.net> (raw)
In-Reply-To: <200210270043.07481.fedex@bashnet.ru>

> вся фишка в том, как получить идентификатор активного окна....
> причем ведь не все проги поддерживают dcop интерфейс :(
> Задача в том, чтобы АКТИВНОМУ (имеющему фокус ввода) приложения послать
> сигнал, аналогичный тому, который отсылает менеджер окон при нажатии кнопки
> закрыть...

Если все же с помощью dcop, то нахождение активного окна - примерно так:
#shell script
for name in `dcop`
do
    for name2 in `dcop $name | grep mainwindow`
    do
        echo $name `dcop $name $name2 isActiveWindow`
    done
done

А посылка команды минимизации активному окну:
for name in `dcop`
do
    for name2 in `dcop $name | grep mainwindow`
    do
        if [ `dcop $name $name2 isActiveWindow` = "true" ]; then
            dcop $name $name2 minimize
        fi
    done
done

Насчет закрытия активного окна с помощью dcop - затрудняюсь сказать.
Не все даже КДЕ-приложения поддерживают MainApplication-Interface.
Те, что поддерживают, закрываются сообщением
<appname> MainApplication-Interface quit

Но есть еще один метод:
xkill -id `dcop <appname> <appname>-mainwindow#<num> getWinID`

getWinID возвращает Х-идентификатор. 
Общаться с окнами по Х-id умеют xkill, xprop, xwininfo.

-- 
WBR, Alexander Dymo
Ukrainian State Maritime Technical University
cloudtemple@mskat.net
http://www.cloudtemple.mksat.net



  parent reply	other threads:[~2002-10-28 22:28 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-10-25 10:27 Alexander Mayorov
2002-10-25 10:52 ` Grigory Milev
2002-10-25 15:10   ` Alexander Mayorov
2002-10-25 15:47     ` Maxim Tyurin
2002-10-26 18:29       ` Alexander Mayorov
2002-10-26 20:46     ` Alexander Dymo
2002-10-26 18:43       ` Alexander Mayorov
2002-10-26 20:36         ` Yura Kalinichenko
2002-10-28 22:28         ` Alexander Dymo [this message]
2002-10-28 15:41           ` Alexander Mayorov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200210290028.56071.cloudtemple@mksat.net \
    --to=cloudtemple@mksat.net \
    --cc=community@altlinux.ru \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git