Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sundry fixes and enhancements to the keystrokes recorder plugin #980

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Conversation

brackleian
Copy link

Uses the Geany "key-press" signal, allowing access to all keys, including bound ones.
Fixes a bug that prevent the use of bound keys without modifiers.
Prevents playback during recording.
Displays recording indicator on the status bar.

Brackleian added 4 commits May 20, 2020 16:01
Connects to the Geany "key-press" signal, rather than the GTK "key-press-event"
signal.  This allows recording of keys bound to other plugins.
Depends on API changes made in PR #1836, so revise API version to 237.
Needs to use gtk_main_do_event instead of gdk_display_put_event,
and gdk_event_copy, gdk_event_free instead of g_new0, g_free.
Shows an indicator 'REC' on the status bar while recording.
The test for the bound keys ('record' and 'play') were incorrect,
causing extra modifiers to be ignored, and preventing the use of
bound keys with no modifiers.
@codebrainz
Copy link
Member

You should compile with at least -Wall -Wextra -Werror and make sure there's no warnings/errors. Sometimes it's useful to add -Wno-unused-parameter and -DGLIB_DISABLE_DEPRECATION_WARNINGS to filter out the noise. You can also change into the plugin directory and do make from there to avoid getting bombarded by messages from other plugins.

@brackleian
Copy link
Author

brackleian commented May 20, 2020 via email

@codebrainz
Copy link
Member

codebrainz commented May 20, 2020

my previous build had --enable-gtk3, and now I can't seem to make it not use GTK3.

You should be able to put --disable-gtk3 to force GTK+2 build. You'll of course have to install the dependencies for GTK+2 if you don't have them installed (ex. on Ubuntu libgtk2.0-dev package for GTK+).

Brackleian added 2 commits May 21, 2020 15:33
Fix all compiler warnings.
Tidy up source layout, trying to comply with coding standards.
Use a GLib array object for storing the recorded key-press events.
Minor source reformatting.
@brackleian
Copy link
Author

OK, GTK2 builds correctly too.

@brackleian
Copy link
Author

Anything else I need to do, or is it just wait until reviewing is done?

@elextr
Copy link
Member

elextr commented May 23, 2020

Plugin are maintained by individuals (see MAINTAINERS file) so likely have to wait for the maintainer to comment.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants