Add missing NetBeans *.form files.
[nbgit.git] / src / org / netbeans / modules / git / ui / log / SearchHistoryTopComponent.java
blobc12d1e6dfc94e7ababe7a34fbd52692f41beb6ca
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.netbeans.modules.git.ui.log;
44 import java.awt.BorderLayout;
45 import java.io.File;
46 import java.util.Collection;
47 import java.util.Date;
48 import org.netbeans.modules.git.ui.diff.DiffSetupSource;
49 import org.netbeans.modules.git.util.GitUtils;
50 import org.netbeans.modules.versioning.spi.VCSContext;
51 import org.openide.util.HelpCtx;
52 import org.openide.util.NbBundle;
53 import org.openide.windows.TopComponent;
55 /**
56 * @author Maros Sandor
58 public class SearchHistoryTopComponent extends TopComponent implements DiffSetupSource {
60 private SearchHistoryPanel shp;
61 private SearchCriteriaPanel scp;
63 public SearchHistoryTopComponent() {
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, Date from, Date 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, long revision) {
79 this();
80 initComponents(repositoryUrl, localRoot, revision);
83 public void search() {
84 shp.executeSearch();
85 shp.setSearchCriteria(false);
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, long revision) {
103 setLayout(new BorderLayout());
104 scp = new SearchCriteriaPanel(repositoryUrl);
105 scp.setFrom(Long.toString(revision));
106 scp.setTo(Long.toString(revision));
107 shp = new SearchHistoryPanel(repositoryUrl, localRoot, scp);
108 add(shp);
111 private void initComponents(File[] roots, String commitMessage, String username, Date from, Date to) {
112 setLayout(new BorderLayout());
113 scp = new SearchCriteriaPanel(roots);
114 scp.setCommitMessage(commitMessage);
115 scp.setUsername(username);
116 if (from != null){
117 scp.setFrom(SearchExecutor.simpleDateFormat.format(from));
118 }else{
119 scp.setFrom(GitUtils.getLastWeeksDateStr());
121 if (to != null){
122 scp.setTo(SearchExecutor.simpleDateFormat.format(to));
123 }else{
124 scp.setTo(GitUtils.getTodaysDateStr());
126 shp = new SearchHistoryPanel(roots, scp);
127 add(shp);
130 public int getPersistenceType(){
131 return TopComponent.PERSISTENCE_NEVER;
134 protected void componentClosed() {
135 //((DiffMainPanel) getComponent(0)).componentClosed();
136 super.componentClosed();
139 protected String preferredID(){
140 if (shp.isIncomingSearch()) {
141 return "Hg.IncomingSearchHistoryTopComponent"; // NOI18N
142 } else if (shp.isOutSearch()) {
143 return "Hg.OutSearchHistoryTopComponent"; // NOI18N
145 return "Hg.SearchHistoryTopComponent"; // NOI18N
148 public HelpCtx getHelpCtx() {
149 return new HelpCtx(getClass());
152 public Collection getSetups() {
153 return shp.getSetups();
156 public String getSetupDisplayName() {
157 return getDisplayName();