mirror of https://github.com/GNOME/gimp.git
commented out the linux_input controller configuration.
2004-06-24 Sven Neumann <sven@gimp.org> * etc/controllerrc: commented out the linux_input controller configuration.
This commit is contained in:
parent
b4197cf30e
commit
7bdf689b68
|
@ -1,3 +1,8 @@
|
|||
2004-06-24 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* etc/controllerrc: commented out the linux_input controller
|
||||
configuration.
|
||||
|
||||
2004-06-23 Bill Skaggs <weskaggs@primate.ucdavis.edu>
|
||||
|
||||
* app/tools/*.c: HIGify capitalization for dialogs. More
|
||||
|
|
16
NEWS
16
NEWS
|
@ -38,16 +38,20 @@ Overview of Changes in GIMP 2.1.1
|
|||
|
||||
- Added an interface that allows to add controller modules. Such a module
|
||||
can dispatch events to The GIMP which are mapped to actions by a
|
||||
user-configurable mapping table. Added a mouse wheel controller and a
|
||||
generic linux input event controller module.
|
||||
user-configurable mapping table. Added controller modules for mouse
|
||||
wheel, midi and linux_input devices.
|
||||
|
||||
- Applied HIG capitalization style to all plug-in and script dialogs.
|
||||
|
||||
- Lots of bug fizes and other goodies. Check the ChangeLog for details.
|
||||
|
||||
|
||||
Contributors:
|
||||
|
||||
Michael Natterer, Sven Neumann, Manish Singh, Philip Lafleur, Yeti,
|
||||
Dave Neary, Jakub Steiner, David Gowers, Geert Jordaens, William Skaggs,
|
||||
Henrik Brix Andersen, Simon Budig, lots of translators and the
|
||||
contributors that I accidentally missed...
|
||||
Michael Natterer, Sven Neumann, Manish Singh, Philip Lafleur,
|
||||
William Skaggs, Geert Jordaens, Yeti, Dave Neary, Jakub Steiner,
|
||||
David Gowers, , Henrik Brix Andersen, Simon Budig, Pedro Gimeno,
|
||||
lots of translators and the contributors that I accidentally missed...
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,35 +1,26 @@
|
|||
# GIMP controllerrc
|
||||
#
|
||||
# This file will be entirely rewritten every time you quit the gimp.
|
||||
|
||||
(GimpControllerInfo "Main Mouse Wheel"
|
||||
(enabled yes)
|
||||
(controller "GimpControllerWheel")
|
||||
(mapping
|
||||
(map "scroll-down-alt" "context-opacity-decrease-skip")
|
||||
(map "scroll-down-control-alt" "context-gradient-previous")
|
||||
(map "scroll-down-shift-alt" "context-pattern-previous")
|
||||
(map "scroll-down-shift-control" "context-brush-previous")
|
||||
(map "scroll-down-shift-control-alt" "context-font-previous")
|
||||
(map "scroll-up-alt" "context-opacity-increase-skip")
|
||||
(map "scroll-down-alt" "context-opacity-decrease-skip")
|
||||
(map "scroll-up-control-alt" "context-gradient-next")
|
||||
(map "scroll-down-control-alt" "context-gradient-previous")
|
||||
(map "scroll-up-shift-alt" "context-pattern-next")
|
||||
(map "scroll-down-shift-alt" "context-pattern-previous")
|
||||
(map "scroll-up-shift-control" "context-brush-next")
|
||||
(map "scroll-down-shift-control" "context-brush-previous")
|
||||
(map "scroll-up-shift-control-alt" "context-font-next")))
|
||||
(GimpControllerInfo "ShuttlePRO"
|
||||
(enabled yes)
|
||||
(controller "ControllerLinuxInput"
|
||||
(device "/dev/input/event2"))
|
||||
(mapping
|
||||
(map "button-0" "tools-rect-select")
|
||||
(map "button-1" "tools-ellipse-select")
|
||||
(map "button-2" "tools-bucket-fill")
|
||||
(map "button-3" "tools-blend")
|
||||
(map "button-4" "tools-pencil")
|
||||
(map "button-5" "tools-paintbrush")
|
||||
(map "button-6" "tools-eraser")
|
||||
(map "button-7" "tools-airbrush")
|
||||
(map "wheel-turn-left" "context-brush-radius-decrease")
|
||||
(map "wheel-turn-right" "context-brush-radius-increase")))
|
||||
(map "scroll-down-shift-control-alt" "context-font-previous")
|
||||
|
||||
# (GimpControllerInfo "LinuxInput"
|
||||
# (enabled yes)
|
||||
# (controller "ControllerLinuxInput"
|
||||
# (device "/dev/input/event2"))
|
||||
# (mapping
|
||||
# (map "wheel-turn-left" "context-brush-radius-decrease")
|
||||
# (map "wheel-turn-right" "context-brush-radius-increase")))
|
||||
|
||||
# end of controllerrc
|
||||
|
|
Loading…
Reference in New Issue