mirror of
https://github.com/sezanzeb/input-remapper
synced 2024-11-04 12:00:16 +00:00
consistent member naming
This commit is contained in:
parent
6b6d0e5492
commit
c9d148bba2
@ -46,13 +46,13 @@ class Row(Gtk.ListBoxRow):
|
|||||||
self.delete_callback = delete_callback
|
self.delete_callback = delete_callback
|
||||||
|
|
||||||
self.character_input = None
|
self.character_input = None
|
||||||
self.keycode = None
|
self.keycode_input = None
|
||||||
|
|
||||||
self.put_together(keycode, character)
|
self.put_together(keycode, character)
|
||||||
|
|
||||||
def get_keycode(self):
|
def get_keycode(self):
|
||||||
"""Get the integer keycode from the left column."""
|
"""Get the integer keycode from the left column."""
|
||||||
keycode = self.keycode.get_label()
|
keycode = self.keycode_input.get_label()
|
||||||
return int(keycode) if keycode else None
|
return int(keycode) if keycode else None
|
||||||
|
|
||||||
def get_character(self):
|
def get_character(self):
|
||||||
@ -84,7 +84,7 @@ class Row(Gtk.ListBoxRow):
|
|||||||
|
|
||||||
# it's legal to display the keycode
|
# it's legal to display the keycode
|
||||||
self.window.get('status_bar').remove_all(CTX_KEYCODE)
|
self.window.get('status_bar').remove_all(CTX_KEYCODE)
|
||||||
self.keycode.set_label(str(new_keycode))
|
self.keycode_input.set_label(str(new_keycode))
|
||||||
# switch to the character, don't require mouse input because
|
# switch to the character, don't require mouse input because
|
||||||
# that would overwrite the key with the mouse-button key if
|
# that would overwrite the key with the mouse-button key if
|
||||||
# the current device is a mouse. idle_add this so that the
|
# the current device is a mouse. idle_add this so that the
|
||||||
@ -172,11 +172,13 @@ class Row(Gtk.ListBoxRow):
|
|||||||
self.show_all()
|
self.show_all()
|
||||||
|
|
||||||
self.character_input = character_input
|
self.character_input = character_input
|
||||||
self.keycode = keycode_input
|
self.keycode_input = keycode_input
|
||||||
|
|
||||||
def on_delete_button_clicked(self, *args):
|
def on_delete_button_clicked(self, *args):
|
||||||
"""Destroy the row and remove it from the config."""
|
"""Destroy the row and remove it from the config."""
|
||||||
keycode = self.get_keycode()
|
keycode = self.get_keycode()
|
||||||
if keycode is not None:
|
if keycode is not None:
|
||||||
custom_mapping.clear(keycode)
|
custom_mapping.clear(keycode)
|
||||||
|
self.character_input.set_text('')
|
||||||
|
self.keycode_input.set_label('')
|
||||||
self.delete_callback(self)
|
self.delete_callback(self)
|
||||||
|
Loading…
Reference in New Issue
Block a user