All Projects → hluk → qxtglobalshortcut

hluk / qxtglobalshortcut

Licence: other
Cross-platform library for handling system-wide shortcuts in Qt applications

Programming Languages

C++
36643 projects - #6 most used programming language
c
50402 projects - #5 most used programming language
CMake
9771 projects
Batchfile
5799 projects
shell
77523 projects

Projects that are alternatives of or similar to qxtglobalshortcut

Gata
Bookmarks made better
Stars: ✭ 17 (-72.13%)
Mutual labels:  shortcuts
Foundationextension
Foundation/Cocoa/UIKit extension kit. Reference document:
Stars: ✭ 115 (+88.52%)
Mutual labels:  shortcuts
Inkscape Shortcut Manager
Inkscape shorcut manager
Stars: ✭ 200 (+227.87%)
Mutual labels:  shortcuts
Spotify Shortcuts Ios12
This repository contains a list of all available Shortcuts to control Spotify as well as an update mechanism.
Stars: ✭ 34 (-44.26%)
Mutual labels:  shortcuts
Xcactionbar
"Alfred for Xcode" plugin
Stars: ✭ 1,217 (+1895.08%)
Mutual labels:  shortcuts
Sketch Plugin Monster
A Sketch plugin for managing all plugin shortcuts.
Stars: ✭ 143 (+134.43%)
Mutual labels:  shortcuts
Macgesture
Global mouse gestures for macOS
Stars: ✭ 626 (+926.23%)
Mutual labels:  shortcuts
Quickactions
Swift wrapper for iOS Home Screen Quick Actions (App Icon Shortcuts)
Stars: ✭ 237 (+288.52%)
Mutual labels:  shortcuts
Shortcuts Js
A JavaScript iOS 12 Shortcuts creator
Stars: ✭ 1,278 (+1995.08%)
Mutual labels:  shortcuts
Hotkey
Trigger an action on an element with a keyboard shortcut.
Stars: ✭ 2,389 (+3816.39%)
Mutual labels:  shortcuts
Shortcuts
Super performant and feature rich shortcuts management library.
Stars: ✭ 40 (-34.43%)
Mutual labels:  shortcuts
Shrtcts
Make Anything an RStudio Shortcut
Stars: ✭ 71 (+16.39%)
Mutual labels:  shortcuts
Hotkeys
🤖 A declarative library for handling hotkeys in Angular applications
Stars: ✭ 158 (+159.02%)
Mutual labels:  shortcuts
Better Chrome Native Video
Add keyboard support to Chrome's native HTML5 video player.
Stars: ✭ 31 (-49.18%)
Mutual labels:  shortcuts
Icanhazshortcut
simple shortcut manager for macOS
Stars: ✭ 204 (+234.43%)
Mutual labels:  shortcuts
Shortcutmapper
A visual keyboard shortcuts explorer for popular applications.
Stars: ✭ 657 (+977.05%)
Mutual labels:  shortcuts
Shortcuts Swift
Write Shortcuts in Playgrounds
Stars: ✭ 116 (+90.16%)
Mutual labels:  shortcuts
code2img
🖨️ A carbon-now API wrapper and iOS Shortcut
Stars: ✭ 74 (+21.31%)
Mutual labels:  shortcuts
Devcomrade
DevComrade - A copy/paste/run productivity improvement utility for developers
Stars: ✭ 206 (+237.7%)
Mutual labels:  shortcuts
Njt
njt (npm jump to): a quick navigation tool for npm packages
Stars: ✭ 179 (+193.44%)
Mutual labels:  shortcuts

Cross-platform library for handling system-wide shortcuts in Qt applications.

Build Status Windows Build Status

API Reference

This code was originally part of Qtx which is no longer maintained.

Supported Platforms

  • Windows
  • OS X
  • Linux/X11

Requirements

  • Compiler with C++11 support
  • Qt 5 or Qt 4
  • CMake 3.0.0 and later

Build

To build the library without installation run:

cmake .
make

To build and install run:

cmake -DCMAKE_INSTALL_PREFIX=/usr/local .
make install

To build static library run:

cmake -DQXTGLOBALSHORTCUT_STATIC=ON .
make

Use the Library

Directory "example" contains simple CMake project which uses the installed library.

To compile and run the example:

cd example
cmake .
make
./qxtglobalshortcut_text

If cmake prints error that it cannot find package for the library you have to specify it's install path. E.g.

qxtglobalshortcut_DIR=/usr/local/lib/cmake/qxtglobalshortcut cmake .

Alternatively you can add the path to CMAKE_PREFIX_PATH environment variable.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].