Ejemplo n.º 1
0
    def __init__(self, widget_properties, line_diff=0):

        parent = widget_properties['root_widget']
        self.line_diff = line_diff

        screen_res_x = widget_properties['config']['screen'].as_int(
            'resolution_x')
        screen_res_y = widget_properties['config']['screen'].as_int(
            'resolution_y')
        bc_top = widget_properties['pos_size']['top']
        bc_left = int(0.02 * screen_res_x)
        bc_width = screen_res_x * 0.9  # any number, we ANCHOR_ALL later
        bc_height = screen_res_y * 0.07
        pudding.container.Container.__init__( \
                self, parent=parent, left=bc_left, top=bc_top,\
                width=bc_width, height=bc_height)

        box_border_color = widget_properties['box']['border']['color']
        box_bg_color = widget_properties['box']['background']['color']
        box_left = self.left
        box_width = self.width
        box_height = self.height
        bg_box = pudding.control.Box(self, \
                left=box_left, \
                width=box_width, \
                height=box_height, \
                background_color=box_bg_color, \
                border_color=box_border_color, \
                z_index=-3)
        bg_box.anchors = pudding.ANCHOR_BOTTOM | pudding.ANCHOR_LEFT \
                | pudding.ANCHOR_RIGHT
        self.label_list = LabelList(bg_box, widget_properties)
Ejemplo n.º 2
0
    def __init__(self, widget_properties, line_diff=0):

        parent = widget_properties['root_widget']
        self.line_diff = line_diff
        screen_res_x = int(widget_properties['config']['screen']['resolution'].split('x')[0])
        screen_res_y = int(widget_properties['config']['screen']['resolution'].split('x')[1])

        bc_top = widget_properties['pos_size']['top']
        bc_left = int (0.02 * screen_res_x)
        bc_width = screen_res_x * 0.9 # any number, we ANCHOR_ALL later
        bc_height = screen_res_y * 0.07
        pudding.container.Container.__init__( \
                self, parent=parent, left=bc_left, top=bc_top,\
                width=bc_width, height=bc_height)

        box_border_color = widget_properties['box']['border']['color']
        box_bg_color = widget_properties['box']['background']['color']
        box_left = self.left
        box_width = self.width
        box_height = self.height
        bg_box = pudding.control.Box(self, \
                left=box_left, \
                width=box_width, \
                height=box_height, \
                background_color=box_bg_color, \
                border_color=box_border_color, \
                z_index=-3)
        bg_box.anchors = pudding.ANCHOR_BOTTOM | pudding.ANCHOR_LEFT \
                | pudding.ANCHOR_RIGHT
        self.label_list = LabelList(bg_box, widget_properties)
Ejemplo n.º 3
0
class LyricsObserver(pudding.container.Container):

    def __init__(self, widget_properties, line_diff=0):

        parent = widget_properties['root_widget']
        self.line_diff = line_diff
        screen_res_x = int(widget_properties['config']['screen']['resolution'].split('x')[0])
        screen_res_y = int(widget_properties['config']['screen']['resolution'].split('x')[1])

        bc_top = widget_properties['pos_size']['top']
        bc_left = int (0.02 * screen_res_x)
        bc_width = screen_res_x * 0.9 # any number, we ANCHOR_ALL later
        bc_height = screen_res_y * 0.07
        pudding.container.Container.__init__( \
                self, parent=parent, left=bc_left, top=bc_top,\
                width=bc_width, height=bc_height)

        box_border_color = widget_properties['box']['border']['color']
        box_bg_color = widget_properties['box']['background']['color']
        box_left = self.left
        box_width = self.width
        box_height = self.height
        bg_box = pudding.control.Box(self, \
                left=box_left, \
                width=box_width, \
                height=box_height, \
                background_color=box_bg_color, \
                border_color=box_border_color, \
                z_index=-3)
        bg_box.anchors = pudding.ANCHOR_BOTTOM | pudding.ANCHOR_LEFT \
                | pudding.ANCHOR_RIGHT
        self.label_list = LabelList(bg_box, widget_properties)


    def update(self, subject):
        status = subject.data['type']
        if status == 'nextLine':
            song = subject.data['song']
            self.label_list._delete_all()
            line_nr = song.line_nr + self.line_diff
            if 0 <= line_nr < len(song.lines):
                self.label_list._show_line(song.lines[line_nr].segments)
        elif status == 'activateNote':
            if self.line_diff == 0:
                self.label_list._activate_note(subject.data['pos'])
        elif status == 'deActivateNote':
            if self.line_diff == 0:
                self.label_list._de_activate_note(subject.data['old_pos'])
        elif status == 'end':
            self.visible = 0
Ejemplo n.º 4
0
class LyricsObserver(pudding.container.Container):
    def __init__(self, widget_properties, line_diff=0):

        parent = widget_properties['root_widget']
        self.line_diff = line_diff

        screen_res_x = widget_properties['config']['screen'].as_int(
            'resolution_x')
        screen_res_y = widget_properties['config']['screen'].as_int(
            'resolution_y')
        bc_top = widget_properties['pos_size']['top']
        bc_left = int(0.02 * screen_res_x)
        bc_width = screen_res_x * 0.9  # any number, we ANCHOR_ALL later
        bc_height = screen_res_y * 0.07
        pudding.container.Container.__init__( \
                self, parent=parent, left=bc_left, top=bc_top,\
                width=bc_width, height=bc_height)

        box_border_color = widget_properties['box']['border']['color']
        box_bg_color = widget_properties['box']['background']['color']
        box_left = self.left
        box_width = self.width
        box_height = self.height
        bg_box = pudding.control.Box(self, \
                left=box_left, \
                width=box_width, \
                height=box_height, \
                background_color=box_bg_color, \
                border_color=box_border_color, \
                z_index=-3)
        bg_box.anchors = pudding.ANCHOR_BOTTOM | pudding.ANCHOR_LEFT \
                | pudding.ANCHOR_RIGHT
        self.label_list = LabelList(bg_box, widget_properties)

    def update(self, subject):
        status = subject.data['type']
        if status == 'nextLine':
            song = subject.data['song']
            self.label_list._delete_all()
            line_nr = song.line_nr + self.line_diff
            if 0 <= line_nr < len(song.lines):
                self.label_list._show_line(song.lines[line_nr].segments)
        elif status == 'activateNote':
            if self.line_diff == 0:
                self.label_list._activate_note(subject.data['pos'])
        elif status == 'deActivateNote':
            if self.line_diff == 0:
                self.label_list._de_activate_note(subject.data['old_pos'])
        elif status == 'end':
            self.visible = 0