Git Product home page Git Product logo

Comments (5)

mbusch-regis avatar mbusch-regis commented on May 29, 2024

Never mind. I'm an idiot. I still had a local subclass of WListBox in my code file, but trying to use one in a separate file.

from picotui.

lethe3000 avatar lethe3000 commented on May 29, 2024

Hi, could you show your code to handle listbox 'changed' and 'selected' please, I'm also working on this, thank you

from picotui.

cezarc avatar cezarc commented on May 29, 2024

The "click" and "selected" events for seems to not work for WListBox. What event should I grab to have the information that user pressed Enter while browsing the list?

from picotui.

lodenrogue avatar lodenrogue commented on May 29, 2024

The "click" and "selected" events for seems to not work for WListBox. What event should I grab to have the information that user pressed Enter while browsing the list?

Same question

from picotui.

bergercookie avatar bergercookie commented on May 29, 2024

Is this what you are looking for?

class WListCheckbox(WListBox):
    def __init__(self, w, h, items):
        super().__init__(w, h, items)
        self.item_selected: List[bool] = [False for _ in items]
        self.prefix_selected = "[X] "
        self.prefix_unselected = "[ ] "

    def handle_key(self, key):
        res = super().handle_key(key)
        self.choice = self.cur_line
        if key == b" ":
            self.flip()

        self.redraw()
        self.signal("changed")
        return res

    def flip(self):
        """Flip the currently selected choice"""
        self.item_selected[self.choice] = not self.item_selected[self.choice]
        self.redraw()
        self.signal("changed")

    def show_line(self, l, i):
        is_selected = self.item_selected[i]

        # highlight current line
        hlite = self.cur_line == i
        if hlite:
            if self.focus:
                self.attr_color(C_B_WHITE, C_GREEN)
            else:
                self.attr_color(C_BLACK, C_GREEN)

        # differentiate between selected and unselected lines
        if i != -1:
            prefix = self.prefix_selected if is_selected else self.prefix_unselected
            l = prefix + l
            l = self.render_line(l)[: self.width]

            if is_selected and not hlite:
                self.attr_color(C_YELLOW)
            self.wr(l)
            self.attr_reset()

        self.clear_num_pos(self.width - len(l))
        if hlite:
            self.attr_reset()

    def handle_mouse(self, x, y):
        res = super().handle_mouse(x, y)
        self.choice = self.cur_line
        self.flip()
        self.redraw()
        self.signal("changed")
        return res

When you either click on an item or you're pressing space while having it selected it gets selected. You can find all the selected item indices by querying the instance selected_items variable

1625388173-screenshot
1625388166-screenshot

from picotui.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.