| 1 | /* ***** BEGIN LICENSE BLOCK ***** |
|---|
| 2 | This program is free software; you can redistribute it and/or modify |
|---|
| 3 | it under the terms of the GNU General Public License as published by |
|---|
| 4 | the Free Software Foundation; either version 2 of the License, or |
|---|
| 5 | (at your option) any later version. |
|---|
| 6 | |
|---|
| 7 | This program is distributed in the hope that it will be useful, |
|---|
| 8 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 9 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 10 | GNU General Public License for more details. |
|---|
| 11 | |
|---|
| 12 | You should have received a copy of the GNU General Public License |
|---|
| 13 | along with this program; if not, write to the Free Software |
|---|
| 14 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|---|
| 15 | |
|---|
| 16 | The Original Code is the Virtual Identity Extension. |
|---|
| 17 | |
|---|
| 18 | The Initial Developer of the Original Code is Rene Ejury. |
|---|
| 19 | Portions created by the Initial Developer are Copyright (C) 2007 |
|---|
| 20 | the Initial Developer. All Rights Reserved. |
|---|
| 21 | |
|---|
| 22 | Contributor(s): |
|---|
| 23 | * ***** END LICENSE BLOCK ***** */ |
|---|
| 24 | |
|---|
| 25 | virtualIdentityExtension.ns(function() { with (virtualIdentityExtension.LIB) { |
|---|
| 26 | var smartReply_dialog = { |
|---|
| 27 | Obj_radioGroup : null, |
|---|
| 28 | all_addresses : null, |
|---|
| 29 | |
|---|
| 30 | init : function() { |
|---|
| 31 | smartReply_dialog.Obj_radioGroup = document.getElementById("replySelector.radiogroup"); |
|---|
| 32 | smartReply_dialog.all_addresses = window.arguments[0]; |
|---|
| 33 | for (var index = 0; index < smartReply_dialog.all_addresses.number; index++) { |
|---|
| 34 | var menuentry = smartReply_dialog.all_addresses.identityDataCollection[index].combinedName; |
|---|
| 35 | |
|---|
| 36 | var id = null; var smtp = null; |
|---|
| 37 | |
|---|
| 38 | if (smartReply_dialog.all_addresses.identityDataCollection[index].id) |
|---|
| 39 | id = smartReply_dialog.all_addresses.identityDataCollection[index].id.value; |
|---|
| 40 | if (smartReply_dialog.all_addresses.identityDataCollection[index].smtp) |
|---|
| 41 | smtp = smartReply_dialog.all_addresses.identityDataCollection[index].smtp.value; |
|---|
| 42 | |
|---|
| 43 | menuentry += (id?" (" + id + "," + |
|---|
| 44 | (smtp?smtp:document.getElementById("bundle_messenger").getString("defaultServerTag")) + |
|---|
| 45 | ")":"") |
|---|
| 46 | smartReply_dialog.add_row(menuentry); |
|---|
| 47 | } |
|---|
| 48 | }, |
|---|
| 49 | |
|---|
| 50 | add_row : function(combinedName) { |
|---|
| 51 | var radio = document.createElement("radio"); |
|---|
| 52 | radio.setAttribute("label",combinedName); |
|---|
| 53 | smartReply_dialog.Obj_radioGroup.appendChild(radio); |
|---|
| 54 | }, |
|---|
| 55 | |
|---|
| 56 | accept : function() { |
|---|
| 57 | /* window.argument[1] stores callback function */ |
|---|
| 58 | window.arguments[1](smartReply_dialog.all_addresses, smartReply_dialog.Obj_radioGroup.selectedIndex); |
|---|
| 59 | document.documentElement.acceptDialog(); |
|---|
| 60 | } |
|---|
| 61 | } |
|---|
| 62 | window.addEventListener("load", smartReply_dialog.init, false); |
|---|
| 63 | vI.smartReply_dialog = smartReply_dialog; |
|---|
| 64 | }}); |
|---|