Python GUI Code -- Best Practice

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

    Python GUI Code -- Best Practice


    Hi --

    I'm looking to write some WxPython based applications, and am looking for
    existing applications of moderate complexity in order to read code and gain an
    understanding of how these things are structured.

    Tutorials aren't really useful - i've done most of them, and am looking to
    gain more of a 'gesalt' sense of how such programs are structured for real
    purposes.

    Is there anything people would recommend me taking a look at ?

    Thanks.

    --
    regards, chris
  • max khesin

    #2
    Re: Python GUI Code -- Best Practice

    Chris Stiles wrote:
    [color=blue]
    > Hi --
    >
    > I'm looking to write some WxPython based applications, and am looking for
    > existing applications of moderate complexity in order to read code and gain an
    > understanding of how these things are structured.
    >
    > Tutorials aren't really useful - i've done most of them, and am looking to
    > gain more of a 'gesalt' sense of how such programs are structured for real
    > purposes.
    >
    > Is there anything people would recommend me taking a look at ?[/color]


    check out the open-source apps mentioned @

    Comment

    • Thomas Guettler

      #3
      Re: Python GUI Code -- Best Practice

      Am Wed, 11 Feb 2004 20:58:22 +0000 schrieb Chris Stiles:
      [color=blue]
      >
      > Hi --
      >
      > I'm looking to write some WxPython based applications, and am looking for
      > existing applications of moderate complexity in order to read code and gain an
      > understanding of how these things are structured.
      >
      > Tutorials aren't really useful - i've done most of them, and am looking to
      > gain more of a 'gesalt' sense of how such programs are structured for real
      > purposes.[/color]

      Hi,

      WxPython has a demo which uses most widgets.

      thomas

      Comment

      • Chris Stiles

        #4
        Re: Python GUI Code -- Best Practice

        "Thomas Guettler" <guettli@thom as-guettler.de> writes:[color=blue]
        > WxPython has a demo which uses most widgets.[/color]

        I don't want a demo - using the widgets is simply a case of writing the API
        calls in the correct order. I want see how to structure an application - how
        to ensure that the GUI stays response while multiple things are done in the
        background - how and when to arrange polling of external events etc.

        --
        regards, chris

        Comment

        • Josiah Carlson

          #5
          Re: Python GUI Code -- Best Practice

          > I don't want a demo - using the widgets is simply a case of writing the API[color=blue]
          > calls in the correct order. I want see how to structure an application - how
          > to ensure that the GUI stays response while multiple things are done in the
          > background - how and when to arrange polling of external events etc.[/color]

          Check out the wxGuide editor, or any of the other wxGuide apps. While
          not being terribly feature-filled, they do offer a view into the
          /suggested/ visual layout, and hopefully, the way they would like
          people's code to be laid out.


          - Josiah

          Comment

          • david.g.morgenthaler@comcast.net

            #6
            Re: Python GUI Code -- Best Practice

            On Wed, 11 Feb 2004 20:58:22 +0000, Chris Stiles
            <rahsct502@snea kemail.com> wrote:

            You might want to get wxGlade and create some apps, then check out
            their organization.
            [color=blue]
            >
            >Hi --
            >
            >I'm looking to write some WxPython based applications, and am looking for
            >existing applications of moderate complexity in order to read code and gain an
            >understandin g of how these things are structured.
            >
            >Tutorials aren't really useful - i've done most of them, and am looking to
            >gain more of a 'gesalt' sense of how such programs are structured for real
            >purposes.
            >
            >Is there anything people would recommend me taking a look at ?
            >
            >Thanks.[/color]

            Comment

            Working...