1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-27 13:26:38 +02:00

core: add incomplete mouse events "event-down" and "event-drag" (task #11840)

This commit is contained in:
Ailin Nemui
2012-11-02 17:26:52 +01:00
committed by Sebastien Helleu
parent 4d436e3ac6
commit 8b52fc90d5
8 changed files with 97 additions and 15 deletions
+21 -9
View File
@@ -1101,15 +1101,25 @@ Liste der Mausgesten (nur für Maustasten, nicht für das Mausrad, anwendbar):
[width="50%",cols="3m,4",options="header"]
|========================================
| Mausgeste | Distanz
| Bewegung hoch | 3 ... 19
| Bewegung hoch (lang) | ≥ 20
| Bewegung runter | 3 ... 19
| Bewegung runter (lang) | ≥ 20
| Bewegung links | 3 ... 39
| Bewegung links (lang) | ≥ 40
| Bewegung rechts | 3 ... 39
| Bewegung rechts (lang) | ≥ 40
| Mausgeste | Distanz
| gesture-up | 3 ... 19
| gesture-up-long | ≥ 20
| gesture-down | 3 ... 19
| gesture-down-long | ≥ 20
| gesture-left | 3 ... 39
| gesture-left-long | ≥ 40
| gesture-right | 3 ... 39
| gesture-right-long | ≥ 40
|========================================
// TRANSLATION MISSING
List of incomplete events (only for buttons, useful for plugins/scripts):
[width="50%",cols="3m,4",options="header"]
|========================================
| Event | Description
| event-down | button was pressed but not released yet
| event-drag | mouse was moved with button pressed down
|========================================
Bespiele von Ereignissen:
@@ -1117,6 +1127,8 @@ Bespiele von Ereignissen:
* `button1`
* `ctrl-button1`
* `button1-gesture-right`
* `button1-event-down`
* `button1-event-drag`
* `alt-button2-gesture-down-long`
* `wheelup`
* `ctrl-alt-wheeldown`
+11
View File
@@ -1103,11 +1103,22 @@ List of gestures (only for buttons, not wheel):
| gesture-right-long | ≥ 40
|========================================
List of incomplete events (only for buttons, useful for plugins/scripts):
[width="50%",cols="3m,4",options="header"]
|========================================
| Event | Description
| event-down | button was pressed but not released yet
| event-drag | mouse was moved with button pressed down
|========================================
Example of events:
* `button1`
* `ctrl-button1`
* `button1-gesture-right`
* `button1-event-down`
* `button1-event-drag`
* `alt-button2-gesture-down-long`
* `wheelup`
* `ctrl-alt-wheeldown`
+13 -1
View File
@@ -1133,11 +1133,23 @@ Liste des gestes (seulement pour les boutons, pas la roulette) :
| gesture-right-long | ≥ 40
|========================================
Exemple d'évènements :
Liste des évènements incomplets (seulement pour les boutons, pratique pour les
extensions/scripts) :
[width="50%",cols="3m,4",options="header"]
|========================================
| Evènement | Description
| event-down | le bouton a été pressé mais pas encore relâché
| event-drag | la souris a bougé avec le bouton pressé
|========================================
Exemples d'évènements :
* `button1`
* `ctrl-button1`
* `button1-gesture-right`
* `button1-event-down`
* `button1-event-drag`
* `alt-button2-gesture-down-long`
* `wheelup`
* `ctrl-alt-wheeldown`
+12
View File
@@ -1126,11 +1126,23 @@ Elenco di azioni (solo per i pulsanti, non la rotellina):
| gesture-right-long | ≥ 40
|========================================
// TRANSLATION MISSING
List of incomplete events (only for buttons, useful for plugins/scripts):
[width="50%",cols="3m,4",options="header"]
|========================================
| Event | Description
| event-down | button was pressed but not released yet
| event-drag | mouse was moved with button pressed down
|========================================
Esempio di eventi:
* `button1`
* `ctrl-button1`
* `button1-gesture-right`
* `button1-event-down`
* `button1-event-drag`
* `alt-button2-gesture-down-long`
* `wheelup`
* `ctrl-alt-wheeldown`
+12
View File
@@ -1074,11 +1074,23 @@ WeeChat はデフォルトマウスイベントの多くを定義しています
| gesture-right-long | ≥ 40
|========================================
// TRANSLATION MISSING
List of incomplete events (only for buttons, useful for plugins/scripts):
[width="50%",cols="3m,4",options="header"]
|========================================
| Event | Description
| event-down | button was pressed but not released yet
| event-drag | mouse was moved with button pressed down
|========================================
イベントの表記例:
* `button1`
* `ctrl-button1`
* `button1-gesture-right`
* `button1-event-down`
* `button1-event-drag`
* `alt-button2-gesture-down-long`
* `wheelup`
* `ctrl-alt-wheeldown`