Added the text zoom control, so far to the top menu.

This commit is contained in:
mgalli%geckonnection.com 2005-08-12 01:30:19 +00:00
Родитель 96717997c3
Коммит 03ab4e7b39
2 изменённых файлов: 17 добавлений и 0 удалений

Просмотреть файл

@ -335,3 +335,14 @@ function urlbar() {
}
/* Reset the text size */
function BrowserResetZoomPlus() {
getBrowser().selectedBrowser.markupDocumentViewer.textZoom+= .25;
}
function BrowserResetZoomMinus() {
getBrowser().selectedBrowser.markupDocumentViewer.textZoom-= .25;
}

Просмотреть файл

@ -82,6 +82,12 @@
<menuitem id="menu_closeWindow" command="cmd_closeWindow"
key="key_closeWindow" label="about"/>
<menuitem id="command_BrowserOpenTab" label="new Tab" />
<menu id="menu-zoom" label ="Text zoom">
<menupopup >
<menuitem id="" oncommand="BrowserResetZoomPlus()" label="ZOOM + " />
<menuitem id="" oncommand="BrowserResetZoomMinus()" label="ZOOM - " />
</menupopup>
</menu>
<!--
<menuitem id="command_BrowserOpenInfo" label="page Info" />
<menuitem id="command_BrowserTestDialogs" label="Dialog XUL" />