Cleaned up whitespace, fix DOS line endings
[nbgit.git] / src / org / nbgit / ui / log / SearchHistoryTopComponent.java
blob1a5ce789cc7356d9ca0a60821bf836aede22f955
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() {
63 setIcon(org.openide.util.ImageUtilities.loadImage("org/nbgit/resources/icons/gitvcs-icon.png")); // NOI18N
64 getAccessibleContext().setAccessibleName(NbBundle.getMessage(SearchHistoryTopComponent.class, "ACSN_SearchHistoryT_Top_Component")); // NOI18N
65 getAccessibleContext().setAccessibleDescription(NbBundle.getMessage(SearchHistoryTopComponent.class, "ACSD_SearchHistoryT_Top_Component")); // NOI18N
68 public SearchHistoryTopComponent(VCSContext context) {
69 this(context, null, null, null, null);
72 public SearchHistoryTopComponent(VCSContext context, String commitMessage, String username, String from, String to) {
73 this();
74 File[] roots = context.getRootFiles().toArray(new File[0]);
75 initComponents(roots, commitMessage, username, from, to);
78 public SearchHistoryTopComponent(String repositoryUrl, File localRoot, String revision) {
79 this();
80 initComponents(repositoryUrl, localRoot, revision);
83 public void search(boolean showSearchCriteria) {
84 shp.executeSearch();
85 shp.setSearchCriteria(showSearchCriteria);
88 public void searchOut() {
89 shp.setOutSearch();
90 shp.executeSearch();
91 shp.setSearchCriteria(false);
92 scp.setFrom("");
93 scp.setTo("");
96 public void searchIncoming() {
97 shp.setIncomingSearch();
98 scp.setFrom("");
99 scp.setTo("");
102 private void initComponents(String repositoryUrl, File localRoot, String revision) {
103 setLayout(new BorderLayout());
104 scp = new SearchCriteriaPanel(repositoryUrl);
105 scp.setFrom(revision);
106 scp.setTo(revision);
107 shp = new SearchHistoryPanel(repositoryUrl, localRoot, scp);
108 add(shp);
111 private void initComponents(File[] roots, String commitMessage, String username, String from, String to) {
112 setLayout(new BorderLayout());
113 scp = new SearchCriteriaPanel(roots);
114 scp.setCommitMessage(commitMessage);
115 scp.setUsername(username);
116 if (from == null) {
117 from = Constants.HEAD;
119 scp.setFrom(from);
120 if (to == null) {
121 to = "";
123 scp.setTo(to);
124 shp = new SearchHistoryPanel(roots, scp);
125 add(shp);
128 @Override
129 public int getPersistenceType() {
130 return TopComponent.PERSISTENCE_NEVER;
133 @Override
134 protected void componentClosed() {
135 //((DiffMainPanel) getComponent(0)).componentClosed();
136 super.componentClosed();
139 @Override
140 protected String preferredID() {
141 if (shp.isIncomingSearch()) {
142 return "Git.IncomingSearchHistoryTopComponent";
143 } else if (shp.isOutSearch()) {
144 return "Git.OutSearchHistoryTopComponent";
146 return "Git.SearchHistoryTopComponent"; // NOI18N
149 @Override
150 public HelpCtx getHelpCtx() {
151 return new HelpCtx(getClass());
154 public Collection getSetups() {
155 return shp.getSetups();
158 public String getSetupDisplayName() {
159 return getDisplayName();