[issue23218] Modernize the IDLE Find/Replace/Find in Files dialogs

2019-09-20 Thread Terry J. Reedy


Change by Terry J. Reedy :


--
versions: +Python 3.9 -Python 2.7, Python 3.4, Python 3.5

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23218] Modernize the IDLE Find/Replace/Find in Files dialogs

2016-11-07 Thread Terry J. Reedy

Terry J. Reedy added the comment:

Al, thanks for the honest comparison. 

For 3.6, we can just import and use ttk with no fuss. 

When I get to this, I will review tests and responses to  and  
(see #27621).

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23218] Modernize the IDLE Find/Replace/Find in Files dialogs

2016-11-05 Thread Al Sweigart

Al Sweigart added the comment:

*Bump* Just wanted to bring attention to this issue. We could keep "Regular 
expression" instead of "Regex" for the label (Sublime Text and other editors 
have "Regular expression")

I think Mark's patch would be better over mine.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23218] Modernize the IDLE Find/Replace/Find in Files dialogs

2015-09-25 Thread Mark Roseman

Mark Roseman added the comment:

Have attached find-dialogs.patch, which does some cosmetic tweaks to the 
existing dialogs, as per the previous screenshot. It uses ttk widgets if 
available, and standard Tk widgets if not.

Relies on the ui.py module (not attached, as it is changing often).

--
Added file: http://bugs.python.org/file40583/find-dialogs.patch

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23218] Modernize the IDLE Find/Replace/Find in Files dialogs

2015-08-02 Thread Mark Roseman

Mark Roseman added the comment:

For illustration, attached idle_find_ttk.png, which is a minor layout tweak of 
the existing one (works on all the various find dialogs, though not shown in 
screen shot). I agree with Al's other suggestions here.

--
nosy: +markroseman
Added file: http://bugs.python.org/file40107/idle_find_ttk.png

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23218
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23218] Modernize the IDLE Find/Replace/Find in Files dialogs

2015-08-02 Thread Raymond Hettinger

Raymond Hettinger added the comment:

These changes all seem reasonable and have a nice look.
I have misgivings about shortening regular expression to regex.
Otherwise, +1 for everything else.

--
nosy: +rhettinger

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23218
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23218] Modernize the IDLE Find/Replace/Find in Files dialogs

2015-01-18 Thread Al Sweigart

Changes by Al Sweigart asweig...@gmail.com:


Added file: http://bugs.python.org/file37760/idle_find_ui_redesign2.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23218
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23218] Modernize the IDLE Find/Replace/Find in Files dialogs

2015-01-18 Thread Al Sweigart

Changes by Al Sweigart asweig...@gmail.com:


Added file: http://bugs.python.org/file37759/idle_grep_compare2.png

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23218
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23218] Modernize the IDLE Find/Replace/Find in Files dialogs

2015-01-18 Thread Al Sweigart

Al Sweigart added the comment:

I've made some minor updates: Adding colons to the labels and right-justifying 
them. These updates can be seen in the second comparison screenshot.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23218
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23218] Modernize the IDLE Find/Replace/Find in Files dialogs

2015-01-11 Thread Berker Peksag

Changes by Berker Peksag berker.pek...@gmail.com:


--
nosy: +terry.reedy
stage:  - patch review

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23218
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23218] Modernize the IDLE Find/Replace/Find in Files dialogs

2015-01-10 Thread Al Sweigart

New submission from Al Sweigart:

Various changes to modernize the user interface of the Find, Replace, and Find 
in Files dialogs:

- Got rid of the close button, since it is redundant.
- Moved the buttons below the text fields, to make better use of screen real 
estate.
- Shorten the titles by getting rid of the Dialog part.
- Renamed Search title to Find to match the menu item.
- Renamed Regular expression label to the shorter Regex
- Added slightly more padding.
- Removed the Replace+Find and made Replace have this functionality. (all 
modern editors use Replace to mean Replace and Find)

The attached png shows the before/after differences in the design of these 
dialogs.

--
components: IDLE
files: idle_grep_compare.png
messages: 233812
nosy: Al.Sweigart
priority: normal
severity: normal
status: open
title: Modernize the IDLE Find/Replace/Find in Files dialogs
type: enhancement
versions: Python 3.5
Added file: http://bugs.python.org/file37664/idle_grep_compare.png

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23218
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23218] Modernize the IDLE Find/Replace/Find in Files dialogs

2015-01-10 Thread Al Sweigart

Changes by Al Sweigart asweig...@gmail.com:


--
keywords: +patch
Added file: http://bugs.python.org/file37666/idle_find_ui_redesign.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23218
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23218] Modernize the IDLE Find/Replace/Find in Files dialogs

2015-01-10 Thread Al Sweigart

Changes by Al Sweigart asweig...@gmail.com:


--
versions: +Python 2.7, Python 3.4

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23218
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com