GUI with sophisticated Table support

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

    #1

    GUI with sophisticated Table support

    Hi,

    i want to write an application where i need a Table to
    display some values.

    The table should display a list of objects, so to say,
    a column for each attribute of the object.
    I'd also like the user to be able to change the width
    of each column, like in Excel.

    I'd prefer to use Tkinter, but i think it can't do all
    that.

    Is there a way for Tkinter to handle this?

    If not, what other GUI can do that? (wxPython?)


    Thanks for hints,
    Torsten.

  • F. GEIGER

    #2
    Re: GUI with sophisticated Table support

    "Torsten Mohr" <tmohr@s.netic. de> schrieb im Newsbeitrag
    news:cr0csd$b80 $1@schleim.qwe. de...[color=blue]
    > Hi,
    >
    > i want to write an application where i need a Table to
    > display some values.
    >
    > The table should display a list of objects, so to say,
    > a column for each attribute of the object.
    > I'd also like the user to be able to change the width
    > of each column, like in Excel.
    >
    > I'd prefer to use Tkinter, but i think it can't do all
    > that.[/color]

    Do a group-google search for *tkinter table*. That shows up quite a few
    hits.
    [color=blue]
    >
    > Is there a way for Tkinter to handle this?
    >
    > If not, what other GUI can do that? (wxPython?)[/color]

    What you are looking for is contained in the wxPython demo app.
    [color=blue]
    >
    >
    > Thanks for hints,
    > Torsten.
    >[/color]

    HTH
    Franz GEIGER


    Comment

    • Torsten Mohr

      #3
      Re: GUI with sophisticated Table support

      Hi,
      [color=blue]
      > Do a group-google search for *tkinter table*. That shows up quite a few
      > hits.[/color]

      thanks for that hint, but nearly every hit shows the Table of contents
      for Tkinter", which is not what i search for.

      My question here is rather in detail about Tkinters Table and if it can
      show resizable columns tho easily display a list of objects.

      I did not find any help searching for this with google, but i'd really
      rather like to use Tkinter over wxPython, that's the background of the
      question.

      Thanks for your help anyway, sorry if my question was unclear.


      Best regards,
      Torsten.

      Comment

      • Alex Martelli

        #4
        Re: GUI with sophisticated Table support

        Torsten Mohr <tmohr@s.netic. de> wrote:
        [color=blue]
        > My question here is rather in detail about Tkinters Table and if it can
        > show resizable columns tho easily display a list of objects.
        >
        > I did not find any help searching for this with google, but i'd really
        > rather like to use Tkinter over wxPython, that's the background of the
        > question.[/color]

        Hmmm -- there's a tktable (on sourceforge) which claims to have
        resizable columns and a Python/Tkinter wrapper, but I haven't tried it,
        myself. tktable.sourcef orge.net for more info...


        Alex

        Comment

        • F. GEIGER

          #5
          Re: GUI with sophisticated Table support


          "Torsten Mohr" <tmohr@s.netic. de> schrieb im Newsbeitrag
          news:cr0ir6$ett $1@schleim.qwe. de...[color=blue]
          > Hi,
          >[color=green]
          > > Do a group-google search for *tkinter table*. That shows up quite a few
          > > hits.[/color]
          >
          > thanks for that hint, but nearly every hit shows the Table of contents
          > for Tkinter", which is not what i search for.[/color]

          Do a *group* google serach (i.e. a search w/i groups indexed by Google,
          formerly known as DejaNews).

          Then you'll get for example



          s.com
          to name a few.

          But even if I do a normal (i.e.. web) google search I get

          for example.

          HTH
          Franz GEIGER
          [color=blue]
          >
          > My question here is rather in detail about Tkinters Table and if it can
          > show resizable columns tho easily display a list of objects.
          >
          > I did not find any help searching for this with google, but i'd really
          > rather like to use Tkinter over wxPython, that's the background of the
          > question.
          >
          > Thanks for your help anyway, sorry if my question was unclear.
          >
          >
          > Best regards,
          > Torsten.
          >[/color]


          Comment

          Working...