X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=helpers%2Fkey.py;h=612758f5e4f01f7e489ce7b01f64ca5cec573652;hb=fba0caf0417cbb4e5b370e16e4b0c855c74094c1;hp=e643dc240f030042831000c6a890d85b6bfc961f;hpb=5c327cc405f11575446915627d1bbf0c14323b67;p=perso%2FImmae%2FProjets%2FPython%2FMusicSampler.git diff --git a/helpers/key.py b/helpers/key.py index e643dc2..612758f 100644 --- a/helpers/key.py +++ b/helpers/key.py @@ -6,15 +6,6 @@ import sys import pygame class Key: - row_positions = { - 'first': 0, - 'second': 50, - 'third': 100, - 'fourth': 150, - 'fifth': 200, - 'sixth': 250, - } - default_outer_color = (120, 120, 120) lighter_outer_color = (200, 200, 200) default_inner_color = (255, 255, 255) @@ -27,11 +18,7 @@ class Key: self.key_name = key_name self.key_sym = key_sym - if isinstance(top, str): - self.top = self.row_positions[top] - else: - self.top = top - + self.top = top self.left = left self.width = width self.height = height @@ -41,6 +28,7 @@ class Key: self.rect = (self.left, self.top, self.right, self.bottom) self.position = (self.left, self.top) + self.disabled = disabled if disabled: self.outer_color = self.lighter_outer_color