diff chrome/content/dialogs/options.xul @ 0:c14d52a3b2fe

initial import
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Mon, 11 Aug 2008 20:34:21 +0900
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/chrome/content/dialogs/options.xul	Mon Aug 11 20:34:21 2008 +0900
@@ -0,0 +1,23 @@
+<?xml version="1.0"?>
+
+<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
+
+<dialog buttons="accept,cancel"
+        id="tinyurl-options-dialog"
+        ondialogaccept="return tinyurl_saveOptions();"
+		ondialogcancel="return true;"
+        onload="tinyurl_initOptions()"
+        title="TinyUrl Options"
+        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
+	
+	<script type="application/x-javascript" src="chrome://tinyurl/content/dialogs/options.js"></script>
+	
+	<groupbox style="width: 250px;">
+        <caption label="General"/>
+        <checkbox id="tinyurl.update.notify" label="Notify me of updates" checked="true" />
+	</groupbox>
+	<groupbox>
+		<caption label="Confirmation" />
+		<checkbox id="tinyurl.confirmation.hide" label="Do not show confirmation dialog apon TinyUrl creation." />
+	</groupbox>
+</dialog>
\ No newline at end of file