Ignore:
Timestamp:
Mar 19, 2014, 11:31:01 PM (11 years ago)
Author:
dmik
Message:

python: Merge vendor 2.7.6 to trunk.

Location:
python/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/trunk

  • python/trunk/Lib/idlelib/SearchDialogBase.py

    r2 r391  
     1'''Define SearchDialogBase used by Search, Replace, and Grep dialogs.'''
    12from Tkinter import *
    23
    34class SearchDialogBase:
     5    '''Create most of a modal search dialog (make_frame, create_widgets).
     6
     7    The wide left column contains:
     8    1 or 2 text entry lines (create_entries, make_entry);
     9    a row of standard radiobuttons (create_option_buttons);
     10    a row of dialog specific radiobuttons (create_other_buttons).
     11
     12    The narrow right column contains command buttons
     13    (create_command_buttons, make_button).
     14    These are bound to functions that execute the command.
     15
     16    Except for command buttons, this base class is not limited to
     17    items common to all three subclasses.  Rather, it is the Find dialog
     18    minus the "Find Next" command and its execution function.
     19    The other dialogs override methods to replace and add widgets.
     20    '''
    421
    522    title = "Search Dialog"
Note: See TracChangeset for help on using the changeset viewer.