System Settings/Shortcuts and Gestures/uk: Difference between revisions

From KDE UserBase Wiki
(Created page with "===Створення жесту мишею===")
(Created page with "Вважатимемо, що нова група називається «Жести мишею». Клацніть правою кнопкою миші на пункті <menuch...")
Line 16: Line 16:
===Створення жесту мишею===
===Створення жесту мишею===


From now on I will assume that the new group is called "Mouse Gestures".
Вважатимемо, що нова група називається «Жести мишею». Клацніть правою кнопкою миші на пункті <menuchoice>Жести мишею</menuchoice> і виберіть пункт <menuchoice>Створити -> Дія на жест мишею</menuchoice> (там буде три пункти, але змусити працювати «Надіслати ввід з клавіатури» не вдалося). За допомогою пунктів «Команда/адреса URL» або «Команда D-Bus» вам слід створити жест і пов’язати з ним дію.
Right click on <menuchoice>Mouse Gestures</menuchoice> and choose <menuchoice>New -> Mouse Gesture Action</menuchoice>
(here there are three options but I didn't manage to work with "Send Keyboard Input")
using "Command/URL" or "D-Bus Command" you will need to create a gesture and bind an action to it.


====To create the gesture====
====To create the gesture====

Revision as of 12:49, 9 July 2011

Жести мишею

KDE 4.4.4

Відкрийте сторінку "Системні параметри -> Ввід"

Вмикання жестів мишею

In the bottom left corner of the window there is a Settings button. Make sure that the Gestures checkbox is checked. Set the timout as you see fit. The mouse button might be different for you, I chose 3 for using the right mouse button. If you want input actions to be enabled automatically, check the "Start the input Actions daemon on login" above.

Створення групи дій за жестами мишею

Клацніть на лівій панелі (порожній ділянці під списком груп дій) і виберіть у контекстному меню пункт Нова група, перейменуйте групу на «Жести мишею» і позначте її пункт у списку.

Створення жесту мишею

Вважатимемо, що нова група називається «Жести мишею». Клацніть правою кнопкою миші на пункті Жести мишею і виберіть пункт Створити -> Дія на жест мишею (там буде три пункти, але змусити працювати «Надіслати ввід з клавіатури» не вдалося). За допомогою пунктів «Команда/адреса URL» або «Команда D-Bus» вам слід створити жест і пов’язати з ним дію.

To create the gesture

Click on your New Action and select the Trigger tab. in the bottom of the screen there is an Edit button (click it). In the box that just opened draw your gesture using the left mouse button.

To bind an action

if you chose Command/URL simply enter that command/url under the Action tab at the Command/URL field.

Examples using Command/URL

Close window

This command will let you close the next window you mouse click on.

Note

wmctrl may not support your Window Manager.


Command/URL: wmctrl -c :SELECT:

to close the active window

Command/URL: wmctrl -c :ACTIVE:

Translate clipboard content

This command will display a translation of the current clipboard content.

  • Required for this are:
    • xclip
    • libtranslate
Command/URL: kdialog --title "Translation" --msgbox "`xclip -o | translate -f en -t he -`"

Replace 'en' and 'he' with the desired source and destination language, if you are not sure, a full list of language codes is available from the ISO 639-2 list.

Examples using D-Bus

If you chose D-Bus, here are few examples.

Finding out what to fill where, is done with the help of the "Launch D-Bus Browser", using that browser you can find what method you wish to call in what application object. Using D-Bus we need to fill some fields, the field name will be regular and the content italic.

Runner

This will display the Runner dialog.

Remote Application: org.kde.krunner

Remote Object: /App

Function: org.kde.krunner.App.display

Audacious next/previous/pause/play/stop/repeat track

Remote Application: org.mpris.audacious

Remote Object: /Player

Function: org.freedesktop.MediaPlayer.Next (replace Next with Prev/Pause/Stop/Play/Repeat)

Audacious PlayPause track

If not playing will play, if playing will pause.

Remote Application: org.mpris.audacious

Remote Object: /org/atheme/audacious

Function: org.atheme.audacious.PlayPause

Klipper manually invoke action menu

display the actions pop-up. (I am using that to search and translate words)

Remote Application: org.kde.klipper

Remote Object: /klipper

Function: org.kde.klipper.klipper.showKlipperManuallyInvokeActionMenu