GithubHelp home page GithubHelp logo

<MouseWheel> on Linux about tksheet HOT 9 CLOSED

ragardner avatar ragardner commented on May 20, 2024
on Linux

from tksheet.

Comments (9)

ragardner avatar ragardner commented on May 20, 2024

Yes you're right, the bindings are different under Linux, will try to get this fix included in next version

thanks

from tksheet.

skedus avatar skedus commented on May 20, 2024

Thank you ;-)

from tksheet.

ragardner avatar ragardner commented on May 20, 2024

You can try out the fix in I added 4.9.9 if you want to

from tksheet.

skedus avatar skedus commented on May 20, 2024

Hi,
code in _tksheet_main_table.py is correct for Linux into basic_bindings function but it does not work with 4.9.9

I was using 4.9.1 and it seems that function mousewheel has changed from 4.9.9

I tested with the old mousewheel function and it is OK

mousewheel 4.9.1:

def mousewheel(self, event = None):

from tksheet.

skedus avatar skedus commented on May 20, 2024

as you added platform detection it could be temporally (quick fix) a linux binding to mousewheel_linux which is the old function ? and the new mousewheel one for windows ?
may be you do not have the possibility to test on linux ?

from tksheet.

ragardner avatar ragardner commented on May 20, 2024

@skedus

Sorry about that, it must be the event.num hopefully it works for you in 4.9.92

from tksheet.

skedus avatar skedus commented on May 20, 2024

Hi @ragardner
Thank you for your quick answer :-)
Well, it does not work yet (for some reason enum.delta is always 0 on linux)

Here is the code modification which is working: simple elif instead of if

def mousewheel(self, event = None):
         if event.delta < 0 or event.num == 5:
             self.yview_scroll(1, "units")
             self.RI.yview_scroll(1, "units")
         elif event.delta >= 0 or event.num == 4:
             if self.canvasy(0) <= 0:
                 return
             self.yview_scroll(-1, "units")
             self.RI.yview_scroll(-1, "units")
         self.main_table_redraw_grid_and_text(redraw_row_index = True)

I added as well shift_mousewheel using your code for mousewheel into basic_bindings function as following (with the unbind too)

            if USER_OS == "Linux":
                for canvas in (self, self.CH):
                    canvas.bind("<Shift-Button-4>", self.shift_mousewheel)
                    canvas.bind("<Shift-Button-5>", self.shift_mousewheel)

and modify shift_mousewheel function as following with elif as well and move event.num == 4 with elif

    def shift_mousewheel(self, event = None):
        if event.delta < 0 or event.num == 5:
            self.xview_scroll(1, "units")
            self.CH.xview_scroll(1, "units")
        elif event.delta >= 0 or event.num == 4:
            if self.canvasx(0) <= 0:
                return
            self.xview_scroll(-1, "units")
            self.CH.xview_scroll(-1, "units")
        self.main_table_redraw_grid_and_text(redraw_header = True)

And it is working well, if you can introduce those modifications that would be great
Thanks

from tksheet.

ragardner avatar ragardner commented on May 20, 2024

Sorry about that, they have been introduced in 4.9.94 and yeah, I don't have access to Linux at the moment, need to install to 2nd hard drive at some point

Edited: version 4.9.94 is the correct version

from tksheet.

skedus avatar skedus commented on May 20, 2024

Yes all is OK now with 4.9.94
Thank you very much :-)

from tksheet.

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.