diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-02-02 03:32:58 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-02-02 03:32:58 -0500 |
commit | e72ef92b5bdc43cd2584198e2e54e951b70299e8 (patch) | |
tree | 01ceb4a897c33eca9e7ccf2bc3aefbe530169fe5 /application/basilisk/base/content/popup-notifications.inc | |
parent | 0d19b77d3eaa5b8d837bf52c19759e68e42a1c4c (diff) | |
download | UXP-e72ef92b5bdc43cd2584198e2e54e951b70299e8.tar UXP-e72ef92b5bdc43cd2584198e2e54e951b70299e8.tar.gz UXP-e72ef92b5bdc43cd2584198e2e54e951b70299e8.tar.lz UXP-e72ef92b5bdc43cd2584198e2e54e951b70299e8.tar.xz UXP-e72ef92b5bdc43cd2584198e2e54e951b70299e8.zip |
Add Basilisk
Diffstat (limited to 'application/basilisk/base/content/popup-notifications.inc')
-rw-r--r-- | application/basilisk/base/content/popup-notifications.inc | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/application/basilisk/base/content/popup-notifications.inc b/application/basilisk/base/content/popup-notifications.inc new file mode 100644 index 000000000..ae8e04bea --- /dev/null +++ b/application/basilisk/base/content/popup-notifications.inc @@ -0,0 +1,89 @@ +# to be included inside a popupset element + + <panel id="notification-popup" + type="arrow" + position="after_start" + hidden="true" + orient="vertical" + noautofocus="true" + role="alert"/> + + <popupnotification id="webRTC-shareDevices-notification" hidden="true"> + <popupnotificationcontent id="webRTC-selectCamera" orient="vertical"> + <label value="&getUserMedia.selectCamera.label;" + accesskey="&getUserMedia.selectCamera.accesskey;" + control="webRTC-selectCamera-menulist"/> + <menulist id="webRTC-selectCamera-menulist"> + <menupopup id="webRTC-selectCamera-menupopup"/> + </menulist> + </popupnotificationcontent> + + <popupnotificationcontent id="webRTC-selectWindowOrScreen" orient="vertical"> + <label id="webRTC-selectWindow-label" + control="webRTC-selectWindow-menulist"/> + <menulist id="webRTC-selectWindow-menulist" + oncommand="webrtcUI.updateWarningLabel(this);"> + <menupopup id="webRTC-selectWindow-menupopup"/> + </menulist> + <description id="webRTC-all-windows-shared" hidden="true">&getUserMedia.allWindowsShared.message;</description> + </popupnotificationcontent> + + <popupnotificationcontent id="webRTC-preview" hidden="true"> + <html:video id="webRTC-previewVideo"/> + <vbox id="webRTC-previewWarningBox"> + <spacer flex="1"/> + <description id="webRTC-previewWarning"/> + </vbox> + </popupnotificationcontent> + + <popupnotificationcontent id="webRTC-selectMicrophone" orient="vertical"> + <label value="&getUserMedia.selectMicrophone.label;" + accesskey="&getUserMedia.selectMicrophone.accesskey;" + control="webRTC-selectMicrophone-menulist"/> + <menulist id="webRTC-selectMicrophone-menulist"> + <menupopup id="webRTC-selectMicrophone-menupopup"/> + </menulist> + </popupnotificationcontent> + </popupnotification> + + <popupnotification id="servicesInstall-notification" hidden="true"> + <popupnotificationcontent orient="vertical" align="start"> + <!-- XXX bug 974146, tests are looking for this, can't remove yet. --> + </popupnotificationcontent> + </popupnotification> + + <popupnotification id="password-notification" hidden="true"> + <popupnotificationcontent orient="vertical"> + <textbox id="password-notification-username"/> + <textbox id="password-notification-password" type="password" show-content=""/> + <checkbox id="password-notification-visibilityToggle" hidden="true"/> + </popupnotificationcontent> + </popupnotification> + + + <popupnotification id="addon-progress-notification" hidden="true"> + <popupnotificationcontent orient="vertical"> + <progressmeter id="addon-progress-notification-progressmeter"/> + <label id="addon-progress-notification-progresstext" crop="end"/> + </popupnotificationcontent> + </popupnotification> + + <popupnotification id="addon-install-confirmation-notification" hidden="true"> + <popupnotificationcontent id="addon-install-confirmation-content" orient="vertical"/> + </popupnotification> + + <popupnotification id="addon-webext-permissions-notification" hidden="true"> + <popupnotificationcontent orient="vertical"> + <description id="addon-webext-perm-header" class="addon-webext-perm-header"/> + <description id="addon-webext-perm-text" class="addon-webext-perm-text"/> + <label id="addon-webext-perm-intro" class="addon-webext-perm-text"/> + <html:ul id="addon-webext-perm-list" class="addon-webext-perm-list"/> + </popupnotificationcontent> + </popupnotification> + + <popupnotification id="addon-installed-notification" hidden="true"> + <popupnotificationcontent orient="vertical"> + <description id="addon-installed-notification-header"/> + <description id="addon-installed-notification-message"/> + </popupnotificationcontent> + </popupnotification> |