Python
  Home arrow Python arrow Page 2 - 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 - wxComboBox and wxListBox
    ( Page 2 of 5 )

    The wxComboBox and wxListBox controls are similar to wxChoice. The three controls share many methods. Let's take a quick look at the two controls and compare them with wxChoice:

    from wxPython.wx import *

    class OurFrame ( wxFrame ):

       def __init__ ( self ):

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

          self.panel = wxPanel ( self, -1 )

          # Create the wxChoice control

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

          # Create the wxComboBox control

          self.combo = wxComboBox ( self.panel, -1, '0', choices = [ '1', '2', '3', '4' ] )

          # Create the wxListBox control

          self.list = wxListBox ( self.panel, -1, choices = [ 'I', 'II', 'III', 'IV' ] )

          # Append an option to each control

          self.choice.Append ( 'E' )

          self.combo.Append ( '5' )

          self.list.Append ( 'V' )

          # Delete an option from each control

          self.choice.Delete ( 0 )

          self.combo.Delete ( 0 )

          self.list.Delete ( 0 )

          # Replace choices

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

          self.combo.SetString ( 1, 'X' )

          self.list.SetString ( 1, 'X' )

          # Count items

          self.choice.itemNum = self.choice.GetCount()

          self.combo.itemNum = self.combo.GetCount()

          self.list.itemNum = self.list.GetCount()

          # Add a button

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

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

          self.sizer = wxBoxSizer ( wxVERTICAL )

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

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

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

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

          self.panel.SetSizerAndFit ( self.sizer )

          self.Show ( True )

       def click ( self, event ):

          # Display the position of all selections

          print self.choice.GetSelection(), self.combo.GetSelection(), self.list.GetSelection()

          # Display the selection

          print self.choice.GetStringSelection(), self.combo.GetStringSelection(), self.list.GetStringSelection()

    application = wxPySimpleApp()

    window = OurFrame()

    application.MainLoop()

    The wxComboBox and wxListBox controls, however, do contain additional methods that you may use. First, we will tackle wxComboBox. As you know, wxComboBox provides the user with both a list and a text box. If you played around with the last example a bit, you probably saw that the GetStringSelection method will not return values that the user has typed in. Since GetSelection will return -1, however, it is easy to work around this:

    from wxPython.wx import *

    class OurFrame ( wxFrame ):

       def __init__ ( self ):

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

          self.panel = wxPanel ( self, -1 )

          self.combo = wxComboBox ( self.panel, -1, choices = [ '1', '2', '3', '4' ] )

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

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

          self.sizer = wxBoxSizer ( wxVERTICAL )

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

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

          self.panel.SetSizerAndFit ( self.sizer )

          self.Show ( True )

       def click ( self, event ):

          if self.combo.GetSelection() == -1:

             self.combo.userValue = self.combo.GetValue()

          else:

             self.combo.userValue = self.combo.GetStringSelection()

          print self.combo.userValue

    application = wxPySimpleApp()

    window = OurFrame()

    application.MainLoop()



     
     
    >>> 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