Changeset 391 for python/trunk/Lib/idlelib/SearchDialogBase.py
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Lib/idlelib/SearchDialogBase.py
r2 r391 1 '''Define SearchDialogBase used by Search, Replace, and Grep dialogs.''' 1 2 from Tkinter import * 2 3 3 4 class 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 ''' 4 21 5 22 title = "Search Dialog"
Note:
See TracChangeset
for help on using the changeset viewer.