Cleanup code whitespace
[nbgit.git] / src / org / nbgit / ui / log / SearchHistoryTopComponent.java
blob526c3f7cf4067af048284bd4dfd399aff4dec08f
1 /*
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
4 * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
6 * The contents of this file are subject to the terms of either the GNU
7 * General Public License Version 2 only ("GPL") or the Common
8 * Development and Distribution License("CDDL") (collectively, the
9 * "License"). You may not use this file except in compliance with the
10 * License. You can obtain a copy of the License at
11 * http://www.netbeans.org/cddl-gplv2.html
12 * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
13 * specific language governing permissions and limitations under the
14 * License. When distributing the software, include this License Header
15 * Notice in each file and include the License file at
16 * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
17 * particular file as subject to the "Classpath" exception as provided
18 * by Sun in the GPL Version 2 section of the License file that
19 * accompanied this code. If applicable, add the following below the
20 * License Header, with the fields enclosed by brackets [] replaced by
21 * your own identifying information:
22 * "Portions Copyrighted [year] [name of copyright owner]"
24 * Contributor(s):
26 * The Original Software is NetBeans. The Initial Developer of the Original
27 * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
28 * Microsystems, Inc. All Rights Reserved.
29 * Portions Copyright 2008 Alexander Coles (Ikonoklastik Productions).
31 * If you wish your version of this file to be governed by only the CDDL
32 * or only the GPL Version 2, indicate your decision by adding
33 * "[Contributor] elects to include this software in this distribution
34 * under the [CDDL or GPL Version 2] license." If you do not indicate a
35 * single choice of license, a recipient has the option to distribute
36 * your version of this file under either the CDDL, the GPL Version 2 or
37 * to extend the choice of license to its licensees as provided above.
38 * However, if you add GPL Version 2 code and therefore, elected the GPL
39 * Version 2 license, then the option applies only if the new code is
40 * made subject to such option by the copyright holder.
42 package org.nbgit.ui.log;
44 import java.awt.BorderLayout;
45 import java.io.File;
46 import java.util.Collection;
47 import org.nbgit.ui.diff.DiffSetupSource;
48 import org.netbeans.modules.versioning.spi.VCSContext;
49 import org.openide.util.HelpCtx;
50 import org.openide.util.NbBundle;
51 import org.openide.windows.TopComponent;
52 import org.spearce.jgit.lib.Constants;
54 /**
55 * @author Maros Sandor
57 public class SearchHistoryTopComponent extends TopComponent implements DiffSetupSource {
59 private SearchHistoryPanel shp;
60 private SearchCriteriaPanel scp;
62 public SearchHistoryTopComponent()
64 setIcon(org.openide.util.Utilities.loadImage("org/nbgit/resources/icons/gitvcs-icon.png")); // NOI18N
65 getAccessibleContext().setAccessibleName(NbBundle.getMessage(SearchHistoryTopComponent.class, "ACSN_SearchHistoryT_Top_Component")); // NOI18N
66 getAccessibleContext().setAccessibleDescription(NbBundle.getMessage(SearchHistoryTopComponent.class, "ACSD_SearchHistoryT_Top_Component")); // NOI18N
69 public SearchHistoryTopComponent(VCSContext context)
71 this(context, null, null, null, null);
74 public SearchHistoryTopComponent(VCSContext context, String commitMessage, String username, String from, String to)
76 this();
77 File[] roots = context.getRootFiles().toArray(new File[0]);
78 initComponents(roots, commitMessage, username, from, to);
81 public SearchHistoryTopComponent(String repositoryUrl, File localRoot, String revision)
83 this();
84 initComponents(repositoryUrl, localRoot, revision);
87 public void search(boolean showSearchCriteria)
89 shp.executeSearch();
90 shp.setSearchCriteria(showSearchCriteria);
93 public void searchOut()
95 shp.setOutSearch();
96 shp.executeSearch();
97 shp.setSearchCriteria(false);
98 scp.setFrom("");
99 scp.setTo("");
102 public void searchIncoming()
104 shp.setIncomingSearch();
105 scp.setFrom("");
106 scp.setTo("");
109 private void initComponents(String repositoryUrl, File localRoot, String revision)
111 setLayout(new BorderLayout());
112 scp = new SearchCriteriaPanel(repositoryUrl);
113 scp.setFrom(revision);
114 scp.setTo(revision);
115 shp = new SearchHistoryPanel(repositoryUrl, localRoot, scp);
116 add(shp);
119 private void initComponents(File[] roots, String commitMessage, String username, String from, String to)
121 setLayout(new BorderLayout());
122 scp = new SearchCriteriaPanel(roots);
123 scp.setCommitMessage(commitMessage);
124 scp.setUsername(username);
125 if (from == null)
126 from = Constants.HEAD;
127 scp.setFrom(from);
128 if (to == null)
129 to = "";
130 scp.setTo(to);
131 shp = new SearchHistoryPanel(roots, scp);
132 add(shp);
135 @Override
136 public int getPersistenceType()
138 return TopComponent.PERSISTENCE_NEVER;
141 @Override
142 protected void componentClosed()
144 //((DiffMainPanel) getComponent(0)).componentClosed();
145 super.componentClosed();
148 @Override
149 protected String preferredID()
151 if (shp.isIncomingSearch())
152 return "Git.IncomingSearchHistoryTopComponent";
153 else if (shp.isOutSearch())
154 return "Git.OutSearchHistoryTopComponent";
155 return "Git.SearchHistoryTopComponent"; // NOI18N
158 @Override
159 public HelpCtx getHelpCtx()
161 return new HelpCtx(getClass());
164 public Collection getSetups()
166 return shp.getSetups();
169 public String getSetupDisplayName()
171 return getDisplayName();