Basic widget in place; no functionality
authorrsesek <rsesek@ad1dcce9-c9fe-0310-b82b-83ea1733dbb0>
Sun, 21 Aug 2005 02:16:26 +0000 (02:16 +0000)
committerrsesek <rsesek@ad1dcce9-c9fe-0310-b82b-83ea1733dbb0>
Sun, 21 Aug 2005 02:16:26 +0000 (02:16 +0000)
git-svn-id: svn://depot/macosx/trunk@3 ad1dcce9-c9fe-0310-b82b-83ea1733dbb0

RGB_Converter/RGB_Converter.wdgt/Info.plist [new file with mode: 0644]
RGB_Converter/RGB_Converter.wdgt/RGB_Converter.css [new file with mode: 0644]
RGB_Converter/RGB_Converter.wdgt/RGB_Converter.html [new file with mode: 0644]
RGB_Converter/RGB_Converter.wdgt/RGB_Converter.js [new file with mode: 0644]
RGB_Converter/RGB_Converter.wdgt/back.png [new file with mode: 0644]
RGB_Converter/RGB_Converter.wdgt/front.png [new file with mode: 0644]
RGB_Converter/back.psd [new file with mode: 0644]
RGB_Converter/front.psd [new file with mode: 0644]

diff --git a/RGB_Converter/RGB_Converter.wdgt/Info.plist b/RGB_Converter/RGB_Converter.wdgt/Info.plist
new file mode 100644 (file)
index 0000000..0255558
--- /dev/null
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+       <key>CFBundleDisplayName</key>
+       <string>RGB Converter</string>
+       <key>CFBundleIdentifier</key>
+       <string>com.iris-studios.widget.rgb_converter</string>
+       <key>CFBundleName</key>
+       <string>RGB_Converter</string>
+       <key>CFBundleVersion</key>
+       <string>[#]version[#]</string>
+       <key>MainHTML</key>
+       <string>RGB_Converter.html</string>
+</dict>
+</plist>
diff --git a/RGB_Converter/RGB_Converter.wdgt/RGB_Converter.css b/RGB_Converter/RGB_Converter.wdgt/RGB_Converter.css
new file mode 100644 (file)
index 0000000..22b2870
--- /dev/null
@@ -0,0 +1,22 @@
+/*=====================================================================*\
+|| ################################################################### ||
+|| # RGB Converter Widget [#]version[#]
+|| # --------------------------------------------------------------- # ||
+|| # Copyright ©2002-[#]year[#] by Iris Studios, Inc. All Rights Reserved. # ||
+|| # This file may not be reproduced in any way without permission.  # ||
+|| # --------------------------------------------------------------- # ||
+|| # User License Agreement at http://www.iris-studios.com/license/  # ||
+|| ################################################################### ||
+\*=====================================================================*/
+
+body
+{
+       margin: 0px;
+}
+
+/*=====================================================================*\
+|| ###################################################################
+|| # $HeadURL$
+|| # $Id$
+|| ###################################################################
+\*=====================================================================*/
\ No newline at end of file
diff --git a/RGB_Converter/RGB_Converter.wdgt/RGB_Converter.html b/RGB_Converter/RGB_Converter.wdgt/RGB_Converter.html
new file mode 100644 (file)
index 0000000..074fde0
--- /dev/null
@@ -0,0 +1,49 @@
+<!--
+/*=====================================================================*\
+|| ################################################################### ||
+|| # RGB Converter Widget [#]version[#]
+|| # --------------------------------------------------------------- # ||
+|| # Copyright ©2002-[#]year[#] by Iris Studios, Inc. All Rights Reserved. # ||
+|| # This file may not be reproduced in any way without permission.  # ||
+|| # --------------------------------------------------------------- # ||
+|| # User License Agreement at http://www.iris-studios.com/license/  # ||
+|| ################################################################### ||
+\*=====================================================================*/
+-->
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+       <style type="text/css">
+               @import "RGB_Converter.css";
+       </style>
+       <script src="RGB_Converter.js" type="text/javascript"></script>
+       <title>RGB Conveter $Revision$</title>
+</head>
+<body>
+
+
+<!-- front -->
+<div id="front">
+
+</div>
+<!-- / front -->
+
+<!-- back -->
+<div id="back">
+
+</div>
+<!-- / back -->
+
+</body>
+</html>
+
+<!--
+/*=====================================================================*\
+|| ###################################################################
+|| # $HeadURL$
+|| # $Id$
+|| ###################################################################
+\*=====================================================================*/
+-->
\ No newline at end of file
diff --git a/RGB_Converter/RGB_Converter.wdgt/RGB_Converter.js b/RGB_Converter/RGB_Converter.wdgt/RGB_Converter.js
new file mode 100644 (file)
index 0000000..e620121
--- /dev/null
@@ -0,0 +1,18 @@
+/*=====================================================================*\
+|| ################################################################### ||
+|| # RGB Converter Widget [#]version[#]
+|| # --------------------------------------------------------------- # ||
+|| # Copyright ©2002-[#]year[#] by Iris Studios, Inc. All Rights Reserved. # ||
+|| # This file may not be reproduced in any way without permission.  # ||
+|| # --------------------------------------------------------------- # ||
+|| # User License Agreement at http://www.iris-studios.com/license/  # ||
+|| ################################################################### ||
+\*=====================================================================*/
+
+
+/*=====================================================================*\
+|| ###################################################################
+|| # $HeadURL$
+|| # $Id$
+|| ###################################################################
+\*=====================================================================*/
\ No newline at end of file
diff --git a/RGB_Converter/RGB_Converter.wdgt/back.png b/RGB_Converter/RGB_Converter.wdgt/back.png
new file mode 100644 (file)
index 0000000..f226f32
Binary files /dev/null and b/RGB_Converter/RGB_Converter.wdgt/back.png differ
diff --git a/RGB_Converter/RGB_Converter.wdgt/front.png b/RGB_Converter/RGB_Converter.wdgt/front.png
new file mode 100644 (file)
index 0000000..5fa78d2
Binary files /dev/null and b/RGB_Converter/RGB_Converter.wdgt/front.png differ
diff --git a/RGB_Converter/back.psd b/RGB_Converter/back.psd
new file mode 100644 (file)
index 0000000..215d168
Binary files /dev/null and b/RGB_Converter/back.psd differ
diff --git a/RGB_Converter/front.psd b/RGB_Converter/front.psd
new file mode 100644 (file)
index 0000000..5f5bc54
Binary files /dev/null and b/RGB_Converter/front.psd differ