During the Open Design session at Mozilla with Aza we were informed that we could load a HTML file with a Chrome URL, allowing me to rebuild the MozMill UI a bit more like a web page instead of using the XUL constructs that I had been struggling with. Granted it feels a lot more like a web page than it does a desktop application, but the speed that I can build new UI features by using libraries like JQuery UI have made it worth it.
The combination of writing content style HTML, and the good advice we received have come together into what I feel is a pretty usable user interface. Granted this is the first revision and will probably continually be refined to become even more user friendly, but from 1.0 to 1.1 it is a vast improvement.

Improved Editor
The first major improvement is the implementation of a full featured code editor named EditArea.
We have been keeping our eye on Bespin, which we will look more into integrating when it is a bit more modular.
For the meantime EditArea does a great job, and was *relatively* painless to integrate.
Some of the features include:
- Multiple file editing
- Syntax hilighting
- Full Screen mode
- Adjustable font properties
- Jump to line numbers
- Search and replace
- Automatic tabulation
- Toggle hi-lighting
- Toggle edit modes
EditArea implements execCommand similar to the implementation in Midas.
Reorganized Menu’s
Part of the move from XUL involved no longer relying on the toolbox, so we have reorganized the menu’s into dialog’s (don’t worry most functions have a keyboard shortcut if you are one of those people that doesn’t want to deal with that extra click).
This cleanly displays all the available options, and doesn’t clutter up the main UI. This also provides space to easily add new features that fall into these logical spaces in the future.



Improved Inspector

There was a lot of frustration when it came to getting the results from the inspector into the editor, some of this had to do with the non editable default nature of the elements we were using to draw them out in XUL, but the integration of the feature into the IDE became very messy and confusing.
This creates an obvious separation between the rest of the UI and the inspector feature and puts helper features out in front of you to simplify the process by dumping to the clipboard and then moving you to a focused editor window.
Improved Output

The output UI has been completely revamped to give you the most important information quickly, but allow you to navigate down an expandable tree to explore the output of the exception.
All of the information in the output divs can be easily selected and copied to stick in bugs etc, but also saves you a trip to the error console as it should encompass all of the information being thrown in the error object, serialized and organized into a more readable format.
Thanks to JQuery UI’s information and error boxes I was able to tweak the CSS to make some relatively attractive, but more importantly, informative UI that should quickly give you the status of your test run.
More Information
- MozMill Google Code Project
- Mikeal Rogers Release Blog Post
- Google Code XPI Download
- QMO Documentation
- MozMill on PyPi
Thanks everyone who logged bugs!