Python
  Home arrow Python arrow A Close Look at wxPython Controls
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
VPS Hosting  
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid  
Request Media Kit
Contact Us  
Site Map  
Privacy Policy  
Support  
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
Google.com  
PYTHON

A Close Look at wxPython Controls
By: Peyton McCullough
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 11
    2005-07-06


    Table of Contents:
  • A Close Look at wxPython Controls
  • wxComboBox and wxListBox
  • wxListBox is versatile
  • wxTextCtrl
  • Password text boxes, read-only text boxes

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article

     
     
    ADVERTISEMENT


    A Close Look at wxPython Controls
    ( Page 1 of 5 )

    Controls are, obviously, essential to your wxPython applications. They allow you to gather input from the user so that you can make decisions based on that input. Let's take a close look at a few controls availible to you and your applications. This article will cover wxChoice, wxComboBox, wxListBox and wxTextCtrl. It is the third one in a series about wxPython.

    wxChoice

    Here is how a basic wxChoice control is put into an application:

    wxChoice ( self, -1, choices = [ 'A', 'B', 'C', 'D' ] )

    Note that self is the parent, and -1 is the same as wxID_ANY. The list we provide at the end is, of course, the list of options availible to the user. Let's put our control in an application so that we can work with it:

    from wxPython.wx import *

    class OurFrame ( wxFrame ):

       def __init__ ( self ):

          wxFrame.__init__ ( self, None, -1, 'wxPython' )

          self.panel = wxPanel ( self, -1 )

          self.choice = wxChoice ( self.panel, -1, choices = [ 'Choice A', 'Choice B', 'Choice C', 'Choice D' ] )

          self.sizer = wxBoxSizer ( wxVERTICAL )

          self.sizer.Add ( self.choice, 0 )

          self.panel.SetSizerAndFit ( self.sizer )

          self.Show ( True )

    application = wxPySimpleApp()

    window = OurFrame()

    application.MainLoop()

    Currently, nothing is selected on default. However, suppose we want the second option to be selected on default. We can do this with wxChoice's SetSelection method. It accepts one argument, which is the position it should start at. “Choice A” is 0, and it increments from there. Let's force “Choice B” to be selected:

    from wxPython.wx import *

    class OurFrame ( wxFrame ):

       def __init__ ( self ):

          wxFrame.__init__ ( self, None, -1, 'wxPython' )

          self.panel = wxPanel ( self, -1 )

          self.choice = wxChoice ( self.panel, -1, choices = [ 'Choice A', 'Choice B', 'Choice C', 'Choice D' ] )

          self.choice.SetSelection ( 1 )

          self.sizer = wxBoxSizer ( wxVERTICAL )

          self.sizer.Add ( self.choice, 0 )

          self.panel.SetSizerAndFit ( self.sizer )

          self.Show ( True )

    application = wxPySimpleApp()

    window = OurFrame()

    application.MainLoop()

    What if, however, we don't know the position of the string we want to select? This is easily solved. Let's select “Choice C” without directly passing its position:

    from wxPython.wx import *

    class OurFrame ( wxFrame ):

       def __init__ ( self ):

          wxFrame.__init__ ( self, None, -1, 'wxPython' )

          self.panel = wxPanel ( self, -1 )

          self.choice = wxChoice ( self.panel, -1, choices = [ 'Choice A', 'Choice B', 'Choice C', 'Choice D' ] )

          positionC = self.choice.FindString ( 'Choice C' )

          self.choice.SetSelection ( positionC )

          self.sizer = wxBoxSizer ( wxVERTICAL )

          self.sizer.Add ( self.choice, 0 )

          self.panel.SetSizerAndFit ( self.sizer )

          self.Show ( True )

    application = wxPySimpleApp()

    window = OurFrame()

    application.MainLoop()

    The GetString method is the opposite of FindString. It accepts a position and returns the string in that position:

    from wxPython.wx import *

    class OurFrame ( wxFrame ):

       def __init__ ( self ):

          wxFrame.__init__ ( self, None, -1, 'wxPython' )

          self.panel = wxPanel ( self, -1 )

          self.choice = wxChoice ( self.panel, -1, choices = [ 'Choice A', 'Choice B', 'Choice C', 'Choice D' ] )

          stringC = self.choice.GetString ( 2 )

          positionC = self.choice.FindString ( stringC )

          self.choice.SetSelection ( positionC )

          self.sizer = wxBoxSizer ( wxVERTICAL )

          self.sizer.Add ( self.choice, 0 )

          self.panel.SetSizerAndFit ( self.sizer )

          self.Show ( True )

    application = wxPySimpleApp()

    window = OurFrame()

    application.MainLoop()

    We can manipulate the items in the list using a variety of methods:

    from wxPython.wx import *

    class OurFrame ( wxFrame ):

       def __init__ ( self ):

          wxFrame.__init__ ( self, None, -1, 'wxPython' )

          self.panel = wxPanel ( self, -1 )

          self.choice = wxChoice ( self.panel, -1, choices = [ 'Choice A', 'Choice B', 'Choice C', 'Choice D' ] )

          # Delete an item ( "Choice A" )

          self.choice.Delete ( 0 )

          # Delete everything

          self.choice.Clear()

          # Add a few choices back

          self.choice.Append ( 'Choice E' )

          self.choice.Append ( 'Choice F' )

          self.choice.Append ( 'Choice G' )

          # Replace a  choice ( "Choice F" )

          self.choice.SetString ( 1, 'Choice X' )

          # Count the items

          itemNum = self.choice.GetCount()

          self.sizer = wxBoxSizer ( wxVERTICAL )

          self.sizer.Add ( self.choice, 0 )

          self.panel.SetSizerAndFit ( self.sizer )

          self.Show ( True )

    application = wxPySimpleApp()

    window = OurFrame()

    application.MainLoop()

    Finally, we are left with the task of extracting what the user selected. This is extremely simple, fortunately:

    from wxPython.wx import *

    class OurFrame ( wxFrame ):

       def __init__ ( self ):

          wxFrame.__init__ ( self, None, -1, 'wxPython' )

          self.panel = wxPanel ( self, -1 )

          self.choice = wxChoice ( self.panel, -1, choices = [ 'Choice A', 'Choice B', 'Choice C', 'Choice D' ] )

          self.button = wxButton ( self.panel, 100, 'Submit' )

          EVT_BUTTON ( self.panel, 100, self.click )

          self.sizer = wxBoxSizer ( wxVERTICAL )

          self.sizer.Add ( self.choice, 0 )

          self.sizer.Add ( self.button, 0 )

          self.panel.SetSizerAndFit ( self.sizer )

          self.Show ( True )

       def click ( self, event ):

          # Display the position of the selection

          print self.choice.GetSelection()

          # Display the selection

          print self.choice.GetStringSelection()

    application = wxPySimpleApp()

    window = OurFrame()

    application.MainLoop()

    You can also use EVT_COMBOBOX, which calls the function passed to it when the user selects a new option.



     
     
    >>> More Python Articles          >>> More By Peyton McCullough
     

       

    PYTHON ARTICLES

    - Tuples and Other Python Object Types
    - The Dictionary Python Object Type
    - String and List Python Object Types
    - Introducing Python Object Types
    - Mobile Programming using PyS60: Advanced UI ...
    - Nested Functions in Python
    - Python Parameters, Functions and Arguments
    - Python Statements and Functions
    - Statements and Iterators in Python
    - Sequences and Sets in Python
    - Python Expressions and Operators
    - Dictionaries, Variables and Statements in Py...
    - Data Types in Python
    - The Python Language
    - SSH with Twisted





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 3 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek