Tkinter and Text() widget interactivity ?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Tonino

    #1

    Tkinter and Text() widget interactivity ?

    Hi,

    I have a small Tkinter app that gets data from a socket connection to a
    "server". The app has a Text() widget to display the info that it gets
    from the socket connection. I have the ability to stop the text at any
    point.

    What I want to be able todo is select a line from the Text() window and
    double click or whatever on it to open a new window with that selected
    text as a paramater to the new window.

    The app is a network sniffer and I want to be able to select a line
    from the Text() window and run a decode on the data from the sniffer.

    any help and pointers would help. I have no idea of what to search for
    ;)

    Thanks

  • Pierre Quentel

    #2
    Re: Tkinter and Text() widget interactivity ?

    Tonino a écrit :[color=blue]
    > Hi,
    >
    > I have a small Tkinter app that gets data from a socket connection to a
    > "server". The app has a Text() widget to display the info that it gets
    > from the socket connection. I have the ability to stop the text at any
    > point.
    >
    > What I want to be able todo is select a line from the Text() window and
    > double click or whatever on it to open a new window with that selected
    > text as a paramater to the new window.
    >
    > The app is a network sniffer and I want to be able to select a line
    > from the Text() window and run a decode on the data from the sniffer.
    >
    > any help and pointers would help. I have no idea of what to search for
    > ;)
    >
    > Thanks
    >[/color]

    Here is an example of what you can do :

    # from Tkinter import *
    #
    # def action(event):
    # begin,end=event .widget.tag_ran ges(SEL)
    # selected_text=e vent.widget.get (begin,end)
    # new_window = Toplevel(root)
    # n_text = Text(new_window )
    # n_text.pack()
    # n_text.insert(E ND,selected_tex t)
    #
    # root=Tk()
    # t=Text(root)
    # t.pack()
    # t.tag_bind(SEL, "<Button-1>",action)
    # t.insert(END,"S weetness, sweetness I was only joking when I said\n")
    # t.insert(END,"B y rights you should be bludgeoned in your bed")
    #
    # root.mainloop()

    In a Text widget you can add event bindings to tags, the selected text
    has the built-in tag SEL. I don't think you can bind the event
    <Double-Button> to it because double-clicking on a text widget selects
    the word the cursor is on ; here I use <Button-1> (left click) but you
    can use other events

    In the function "action" the widget where the event occured is
    event.widget (the Text widget). Its method tag_ranges returns the
    beginning and end of the text with the specified tag (here SEL), then
    you get the selected text by the method get() of the text widget

    This is explained in "An introduction to Tkinter" by Fredrik Lundh, in
    the chapter "The Text Widget"
    http://www.pythonware.com/library/tkinter/introduction/

    Regards,
    Pierre

    Comment

    • Tonino

      #3
      Re: Tkinter and Text() widget interactivity ?

      Many thanks for this - will give it a bash ;)

      Tonino

      Comment

      Working...