Open
Bug 67161
Opened 24 years ago
Updated 2 years ago
Need `progress' type for windows
Categories
(Core :: XUL, enhancement)
Core
XUL
Tracking
()
NEW
Future
People
(Reporter: mpt, Unassigned)
References
Details
XP Toolkit needs six different kinds of window:
(1) popups (not movable, not modal, not closable, not minimizable, not resizable
by default, no chrome);
(2) document windows (movable, not modal, closable, minimizable, resizable by
default, ordinary chrome);
(3) dialogs (movable, modal, not closable, not minimizable, not resizable by
default, ordinary chrome);
(4) alerts (movable, modal, not closable, not minimizable, not resizable by
default, alert chrome, comes with optional standard overlay for position of
icon and position/ordering of buttons);
(5) progress windows (movable, not modal, not closable, minimizable, not
resizable by default, ordinary chrome);
(6) assistant windows (movable, not modal, not closable on Windows, closable on
other platforms, not minimizable, not resizable by default, ordinary chrome,
comes with free platform-specific overlay for position of banner and
position/assortment of buttons).
Currently we appear to have only the first three of these, and the lack of the
latter three is causing numerous undesirable results in Mozilla's UI.
This bug in particular requests the implementation of (5), the `progress' kind of
window. Two examples of where this is needed:
* the download progress window should be minimizable but is not, because it is
a dialog when it should be a progress window;
* the `Migrating Profile' progress window should not be closable or resizable
but is, because it is a document window when it should be a progress window.
Comment 1•24 years ago
|
||
Although these are nice general categories that might cover the majority of
situations, wouldn't it be easier to have a separately settable setting and let
the creator of the window decide what setting(s) his window should have?
e.g. "Window that does something":
[] movable
[] modal
[] closable
[] minimizable
[] resizable by default
[] no chrome
This would be far more flexible.
Reporter | ||
Comment 2•24 years ago
|
||
No, because that would just encourage developers to make mistakes. Mistakes like
trying to give alerts close boxes when Mac OS (for good reason) doesn't allow
that (Mozilla has already had a couple of `hang' bugs caused by developers doing
that). Or like unintentionally locking up a user's computer by making a large
modal dialog with no chrome (which means no title bar, and no way to get to other
windows).
I've thought a lot about this bug, trust me. :-)
Comment 3•24 years ago
|
||
I trust you, baby ;)
I just hope then that your list of *six different kinds of window* is complete.
Comment 4•24 years ago
|
||
How about both? Make the 6 window types, implemented by calling a generic
flexible implementation function. New window types could then easily be added
(calling the generic function), but only the code for specific window types
should call the generic function. (Possibly make it private.) Then if there's
a 7th window type that hasn't come to mind, adding it becomes trivial...
Comment 5•24 years ago
|
||
I don't see why dialogs and progress windows should be not closable. (I'm not
sure what that means.) I'm assuming you mean that they shouldn't have the close
button (X in top right corner of window)?
On Windows at least, Nav4 and IE5 progress windows (such as download progress)
are closable. Windows dialogs also often have the close button. Windows alerts
also have the close button.
Can you give specific examples of each type? For example, where does the Find
box fit?
I agree that having specific window types will help avoid errors.
Comment 7•24 years ago
|
||
->danm, for future consideration
Assignee: trudelle → danm
Target Milestone: --- → Future
Reporter | ||
Comment 8•24 years ago
|
||
The six types I listed are those which XP Toolkit *needs*; other types -- such
as windoids, which could be used for floating palettes etc -- fall into the
`nice to have' category.
Giving a dialog a close button is a bad idea, because it misleads the user into
thinking that they do not have to make a decision when really they do, so the
meaning of the close button is ambiguous -- what would a close button mean in
`Do you want to discard changes? ( Yes ) ( No )'? (The Windows UI guidelines
describe a close box for dialogs as `optional', probably because Microsoft
haven't yet removed it from all the dialogs in their own software.) Similarly,
giving a progress window a close button is a bad idea, because its meaning
would be ambiguous -- does it cancel the operation in progress, or does it just
hide the progress of the operation?
Specific examples of each type:
* popups: tooltips, help balloons
* document windows: browser windows, search results
* dialogs: Open Location dialog, Find in This Page dialog
* alerts: error messages, save-before-closing confirmation, cookie alerts
* progress windows: sending mail progress, file download progress
* assistant windows: New Profile Wizard, Account Wizard.
Comment 9•24 years ago
|
||
Typically when there is a close button on a progress window, there is only one
other button on the window, like cancel. I assumed that the close button took
on the function of the only other option on the window. In fact, I can't think
of any other function used in this situation other than cancel. Either way, it
dosen't really matter that much. I do agree that the function of the close
button becomes ambiguous in a yes/no dialog and it shouldn't be on there.
Comment 10•24 years ago
|
||
since Yes and No are hard to understand, Escape and X [close] should always
allow one to select the cancel event, whichever that is.
Comment 11•24 years ago
|
||
There is quite some bugs that are all blocked by this one. And some of those, is
blocking other bugs.. etc.
I think this bug should have a somewhat high priority. Nominating for mozilla1.0
Keywords: mozilla1.0
Comment 12•24 years ago
|
||
cc'ing to self as bug blocks other interesting bugs.
Comment 13•24 years ago
|
||
Cc'ing myself. IMO Target Milestone should be mozilla0.9.2 and certainly not
"future" as it blocks quite a few annoying bugs.
Comment 14•24 years ago
|
||
Didn't the fix for bug 26029, with the "minimizable" window essentially give the
progress window?
Reporter | ||
Comment 15•24 years ago
|
||
Updated•14 years ago
|
QA Contact: jrgmorrison → xptoolkit.widgets
Updated•2 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•