001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041: package org.netbeans.modules.collab.ui.actions;
042:
043: import org.openide.*;
044: import org.openide.nodes.Node;
045: import org.openide.util.*;
046: import org.openide.util.actions.CookieAction;
047:
048: import com.sun.collablet.CollabManager;
049: import com.sun.collablet.Conversation;
050: import org.netbeans.modules.collab.ui.CollabSessionCookie;
051: import org.netbeans.modules.collab.ui.ConversationCookie;
052:
053: /**
054: *
055: *
056: */
057: public class LeaveConversationAction extends CookieAction {
058: /**
059: *
060: *
061: */
062: public String getName() {
063: return NbBundle.getMessage(CreateConversationAction.class,
064: "LBL_LeaveConversationAction_Name"); // NOI18N
065: }
066:
067: /**
068: *
069: *
070: */
071: protected String iconResource() {
072: return "org/netbeans/modules/collab/ui/resources/chat_png.gif"; // NOI18N
073: }
074:
075: /**
076: *
077: *
078: */
079: public HelpCtx getHelpCtx() {
080: return HelpCtx.DEFAULT_HELP;
081: }
082:
083: /**
084: *
085: *
086: */
087: protected Class[] cookieClasses() {
088: return new Class[] { CollabSessionCookie.class,
089: ConversationCookie.class };
090: }
091:
092: /**
093: *
094: *
095: */
096: protected int mode() {
097: return MODE_ALL;
098: }
099:
100: /**
101: *
102: *
103: */
104: protected boolean asynchronous() {
105: return true;
106: }
107:
108: /**
109: *
110: *
111: */
112: protected boolean enable(Node[] nodes) {
113: if (nodes.length == 0) {
114: return false;
115: }
116:
117: // Sanity check to make sure the collab manager is present
118: CollabManager manager = CollabManager.getDefault();
119:
120: if (manager == null) {
121: return false;
122: }
123:
124: // Disable if cookie not present
125: if (!super .enable(nodes)) {
126: return false;
127: }
128:
129: // The selected nodes can either be the Conversations group node
130: // or one or more conversation nodes. We need to discover which mode we're
131: // operating in.
132: //return nodes[0].getCookie(ConversationCookie.class)!=null;
133: for (int i = 0; i < nodes.length; i++) {
134: ConversationCookie cookie = (ConversationCookie) nodes[i]
135: .getCookie(ConversationCookie.class);
136:
137: if (cookie == null) {
138: return false;
139: }
140:
141: Conversation conv = cookie.getConversation();
142:
143: if (conv == null) {
144: return false;
145: }
146: }
147:
148: return true;
149: }
150:
151: /**
152: *
153: *
154: */
155: protected void performAction(Node[] nodes) {
156: /*
157: CollabSessionCookie sessionCookie=(CollabSessionCookie)
158: nodes[0].getCookie(CollabSessionCookie.class);
159:
160: assert sessionCookie!=null:
161: "CollabSessionCookie was null despite enable check";
162:
163: CollabSession session=sessionCookie.getCollabSession();
164: */
165: NotifyDescriptor descriptor = new NotifyDescriptor.Confirmation(
166: NbBundle.getMessage(LeaveConversationAction.class,
167: "MSG_LeaveConversationAction_ConfirmLeave"),
168: NotifyDescriptor.YES_NO_OPTION);
169:
170: if (DialogDisplayer.getDefault().notify(descriptor) == NotifyDescriptor.YES_OPTION) {
171: for (int i = 0; i < nodes.length; i++) {
172: ConversationCookie conversationCookie = (ConversationCookie) nodes[i]
173: .getCookie(ConversationCookie.class);
174: assert conversationCookie != null : "ConversationCookie not found despite enable check";
175:
176: Conversation conversation = conversationCookie
177: .getConversation();
178:
179: if (conversation != null) {
180: conversation.leave();
181: }
182: }
183: }
184: }
185: }
|