MCPcopy Create free account

hub / github.com/JoseExposito/touchegg / types & classes

Types & classes107 in github.com/JoseExposito/touchegg

↓ 9 callersClassFileInfo
Provides utility functions for filenames. FileInfo provides easy access to the components of a file's path relative to the project root.
cmake/cpplint.py:1583
↓ 1 callersClassCleansedLines
Holds 4 copies of all lines with different preprocessing applied to them. 1) elided member contains lines without strings and comments. 2) lines
cmake/cpplint.py:1934
↓ 1 callersClassNestingState
Holds states related to parsing braces.
cmake/cpplint.py:2931
↓ 1 callersClass_BlockInfo
Stores information about a generic block of code.
cmake/cpplint.py:2730
↓ 1 callersClass_ClassInfo
Stores information about a class.
cmake/cpplint.py:2787
↓ 1 callersClass_CppLintState
Maintains module-wide state..
cmake/cpplint.py:1278
↓ 1 callersClass_ExternCInfo
Stores information about an 'extern "C"' block.
cmake/cpplint.py:2780
↓ 1 callersClass_FunctionState
Tracks current function name and the number of lines in its body.
cmake/cpplint.py:1519
↓ 1 callersClass_IncludeState
Tracks line numbers for includes, and the order in which includes appear. include_list contains list of lists of (header, line number) pairs. It'
cmake/cpplint.py:1102
↓ 1 callersClass_NamespaceInfo
Stores information about a namespace.
cmake/cpplint.py:2856
↓ 1 callersClass_PreprocessorInfo
Stores checkpoints of nesting stacks when #if/#else is seen.
cmake/cpplint.py:2917
ClassAction
* Base class for all actions. Use the ActionFactory to build actions. */
src/actions/action.h:32
EnumActionDirection
src/actions/action-direction.h:23
ClassActionFactory
src/actions/action-factory.h:29
EnumActionType
src/actions/action-type.h:23
ClassAnimatedAction
* Base class for animated actions. */
src/actions/animated-action.h:32
ClassAnimation
* Base class form animations. */
src/animations/animation.h:32
ClassAnimationFactory
src/animations/animation-factory.h:29
EnumAnimationType
src/animations/animation-type.h:23
ClassArgsParser
src/utils/args-parser.h:25
ClassCairoSurface
* Window system independent cairo surface abstraction. */
src/window-system/cairo-surface.h:28
ClassChangeDesktop
* Action to change to the next or previous desktop. */
src/actions/change-desktop.h:28
ClassChangeDesktopAnimation
src/animations/change-desktop-animation.h:28
ClassClientLock
* Creates a lock file to avoid multiple client instances to run in parallel. */
src/utils/client-lock.h:26
ClassCloseWindow
* Minimize the window under the pointer. */
src/actions/close-window.h:26
ClassCloseWindowAnimation
src/animations/close-window-animation.h:25
ClassColor
* Simple class to parse color from config and use them with Cairo. */
src/utils/color.h:31
EnumColorType
src/utils/color.h:23
ClassConfig
src/gesture-gatherer/gesture-gatherer.h:21
ClassConfig
src/gesture-gatherer/libinput-gesture-gatherer.h:32
ClassConfig
src/gesture-controller/gesture-controller.h:25
ClassConfig
* Class to save and access the configuration. * It only provides a simple interface to get/set the configuration, delegating * the responsability of
src/config/config.h:35
ClassConfig
src/config/xml-config-loader.h:27
ClassDaemonClient
* Class to connect to the daemon server and send the gestures received from the * server to the GestureControllerDelegate. */
src/daemon/daemon-client.h:34
ClassDaemonServer
* Access to libinput is limited to users in the "input" group or, in the case * of Wayland, to the compositor. However, adding your user to the "inpu
src/daemon/daemon-server.h:40
EnumDeviceType
src/gesture/device-type.h:23
EnumExecuteActionOn
src/actions/execute-action-on.h:23
ClassFullscreenWindow
* Action to make the window under the pointer use the whole screen. */
src/actions/fullscreen-window.h:26
ClassGesture
* Gestures implementations change depending on the driver/backend. This is the * basic interface of a gesture. */
src/gesture/gesture.h:31
ClassGesture
src/gesture-controller/gesture-controller.h:26
ClassGestureController
* The GestureController is in charge of receiving events from the outside and * dispatching actions according to the user configuration. */
src/gesture-controller/gesture-controller.h:33
ClassGestureControllerDelegate
src/gesture-gatherer/gesture-gatherer.h:22
ClassGestureControllerDelegate
src/gesture-gatherer/libinput-gesture-gatherer.h:33
ClassGestureControllerDelegate
* Instead of passing the GestureController to the GestureGatherer, this * delegate interface is passed instead. * This interface allows us to decoup
src/gesture-controller/gesture-controller-delegate.h:31
EnumGestureDirection
src/gesture/gesture-direction.h:23
ClassGestureGatherer
* A GestureGatherer is in charge of gathering the gestures performed by the * user and sending them to the GestureController. * * In this way, the
src/gesture-gatherer/gesture-gatherer.h:34
EnumGestureType
src/gesture/gesture-type.h:23
ClassLibinputDeviceInfo
* Data structure to save pre-calculated device information in the device user * data: * https://wayland.freedesktop.org/libinput/doc/latest/api/grou
src/gesture-gatherer/libinput-device-info.h:26
ClassLibinputGesture
src/gesture-gatherer/libinput-gesture-gatherer.h:34
ClassLibinputGestureGatherer
* Libinput backed GestureGatherer. */
src/gesture-gatherer/libinput-gesture-gatherer.h:39
ClassLibinputPinchState
* Data structure to save pinch state in a single place. */
src/gesture-gatherer/libinput-pinch-handler.h:30
ClassLibinputSwipeState
* Data structure to save swipe state in a single place. */
src/gesture-gatherer/libinput-swipe-handler.h:30
ClassLibinputTouchHandler
src/gesture-gatherer/libinput-touch-handler.h:61
ClassLibinputTouchState
* Data structure to save touch state in a single place. */
src/gesture-gatherer/libinput-touch-handler.h:31
ClassLininputDeviceHandler
* Class to handle libinput devices: * https://wayland.freedesktop.org/libinput/doc/latest/api/group__device.html */
src/gesture-gatherer/libinput-device-handler.h:31
ClassLininputHandler
* Base class for every libinput handler. */
src/gesture-gatherer/libinput-handler.h:29
ClassLininputPinchHandler
* Class to handle libinput pinch gestures on a touchpad: * https://wayland.freedesktop.org/libinput/doc/latest/gestures.html#swipe-gestures */
src/gesture-gatherer/libinput-pinch-handler.h:52
ClassLininputSwipeHandler
* Class to handle libinput swipe gestures on a touchpad: * https://wayland.freedesktop.org/libinput/doc/latest/gestures.html#swipe-gestures */
src/gesture-gatherer/libinput-swipe-handler.h:54
EnumLogLevel
src/utils/logger.h:24
ClassLogger
* Singleton class to provide simple logging functionality. */
src/utils/logger.h:43
ClassMaximizeRestoreWindow
* Action to maximize or restore the window under the pointer. * If the window is not maximized, maximize it, otherwise restore its size. */
src/actions/maximize-restore-window.h:27
ClassMaximizeWindowAnimation
src/animations/maximize-window-animation.h:25
ClassMinimizeWindow
* Minimize the window under the pointer. */
src/actions/minimize-window.h:26
ClassMinimizeWindowAnimation
src/animations/minimize-window-animation.h:25
ClassMouseClick
* Action to emulate a shortcut. */
src/actions/mouse-click.h:29
ClassPaths
* Utility class to get usefull paths. */
src/utils/paths.h:28
ClassRectangle
src/utils/rectangle.h:21
ClassRepeatedAction
src/actions/repeated-action.h:24
ClassRestoreWindowAnimation
src/animations/restore-window-animation.h:25
ClassRunCommand
* Action to emulate a shortcut. */
src/actions/run-command.h:28
ClassSendKeys
* Action to emulate a shortcut. */
src/actions/send-keys.h:29
ClassShowDesktop
* Minimize the window under the pointer. */
src/actions/show-desktop.h:26
ClassShowDesktopAnimation
src/animations/show-desktop-animation.h:25
ClassTileWindow
src/actions/tile-window.h:25
ClassTileWindowAnimation
src/animations/tile-window-animation.h:25
ClassWindowSystem
* High level abstract interface to the underlying window system. * For the moment, and most likely forever, only X11 is supported. * However, if in
src/window-system/window-system.h:49
ClassWindowSystem
src/gesture-controller/gesture-controller.h:27
ClassWindowT
* Abstract window type. */
src/window-system/window-system.h:37
ClassX11
* X11 utilities. */
src/window-system/x11.h:45
ClassX11CairoSurface
* X11 cairo surface. */
src/window-system/x11-cairo-surface.h:30
ClassX11WindowT
* X11 WindowT implementation, just a Window as defined in <X11/X.h>. */
src/window-system/x11.h:36
ClassXmlConfigLoader
* Default config loader. It reads the configuration from * "~/.config/touchegg/touchegg.conf" if it exists. Otherwise it fallbacks to * "/usr/share/
src/config/xml-config-loader.h:38
Class_IncludeError
Indicates a problem with the include order in a file.
cmake/cpplint.py:1578
Classinotify_event
src/config/xml-config-loader.cpp:45
Classlibinput
src/gesture-gatherer/libinput-gesture-gatherer.h:60
Classlibinput_device
src/gesture-gatherer/libinput-handler.cpp:28
Classlibinput_device
src/gesture-gatherer/libinput-device-handler.cpp:30
Classlibinput_event
src/gesture-gatherer/libinput-pinch-handler.h:62
Classlibinput_event
src/gesture-gatherer/libinput-touch-handler.cpp:34
Classlibinput_event
src/gesture-gatherer/libinput-touch-handler.h:66
Classlibinput_event
src/gesture-gatherer/libinput-pinch-handler.cpp:25
Classlibinput_event
src/gesture-gatherer/libinput-gesture-gatherer.cpp:91
Classlibinput_event
src/gesture-gatherer/libinput-handler.cpp:24
Classlibinput_event
src/gesture-gatherer/libinput-swipe-handler.h:64
Classlibinput_event
src/gesture-gatherer/libinput-swipe-handler.cpp:28
Classlibinput_event
src/gesture-gatherer/libinput-handler.h:40
Classlibinput_event
src/gesture-gatherer/libinput-device-handler.h:43
Classlibinput_event
src/gesture-gatherer/libinput-device-handler.cpp:29
Classlibinput_event
src/gesture-gatherer/libinput-gesture-gatherer.h:71
Classlibinput_event_gesture
src/gesture-gatherer/libinput-pinch-handler.cpp:30
next →1–100 of 107, ranked by callers