-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
673d269
commit b5f8f7f
Showing
10 changed files
with
43 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,39 +7,13 @@ | |
*/ | ||
package com.databasepreservation.common.client.common.search; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
import com.databasepreservation.common.client.common.lists.utils.AsyncTableCell; | ||
import com.databasepreservation.common.client.common.search.panel.SearchFieldPanel; | ||
import com.databasepreservation.common.client.index.filter.BasicSearchFilterParameter; | ||
import com.databasepreservation.common.client.index.filter.Filter; | ||
import com.databasepreservation.common.client.index.filter.FilterParameter; | ||
import com.databasepreservation.common.client.models.structure.ViewerDatabase; | ||
import com.databasepreservation.common.client.tools.FontAwesomeIconManager; | ||
import com.databasepreservation.common.client.tools.HistoryManager; | ||
import com.databasepreservation.common.client.widgets.wcag.AccessibleFocusPanel; | ||
import com.google.gwt.core.client.GWT; | ||
import com.google.gwt.event.dom.client.ClickEvent; | ||
import com.google.gwt.event.dom.client.KeyCodes; | ||
import com.google.gwt.event.logical.shared.HasValueChangeHandlers; | ||
import com.google.gwt.event.logical.shared.ValueChangeEvent; | ||
import com.google.gwt.event.logical.shared.ValueChangeHandler; | ||
import com.google.gwt.event.shared.HandlerRegistration; | ||
import com.google.gwt.uibinder.client.UiBinder; | ||
import com.google.gwt.uibinder.client.UiField; | ||
import com.google.gwt.uibinder.client.UiHandler; | ||
import com.google.gwt.user.client.rpc.AsyncCallback; | ||
import com.google.gwt.user.client.ui.Button; | ||
import com.google.gwt.user.client.ui.Composite; | ||
import com.google.gwt.user.client.ui.FlowPanel; | ||
import com.google.gwt.user.client.ui.HTML; | ||
import com.google.gwt.user.client.ui.SimplePanel; | ||
import com.google.gwt.user.client.ui.TextBox; | ||
import com.google.gwt.user.client.ui.Widget; | ||
|
||
import config.i18n.client.ClientMessages; | ||
|
||
/** | ||
* @author Bruno Ferreira <[email protected]> | ||
*/ | ||
|
@@ -56,19 +30,21 @@ public void initSearchAll() { | |
this.selectedDatabasesButtonWrapper.init(defaultFilter, allFilter, messages, this); | ||
} | ||
|
||
public SearchPanelWithSearchAll(Filter defaultFilter, String allFilter, String placeholder, boolean showSearchInputListBox, | ||
boolean showSearchAdvancedDisclosureButton) { | ||
public SearchPanelWithSearchAll(Filter defaultFilter, String allFilter, String placeholder, | ||
boolean showSearchInputListBox, boolean showSearchAdvancedDisclosureButton) { | ||
super(defaultFilter, allFilter, placeholder, showSearchInputListBox, showSearchAdvancedDisclosureButton); | ||
} | ||
|
||
public SearchPanelWithSearchAll(Filter defaultFilter, String allFilter, String placeholder, String context, | ||
boolean showSearchAdvancedDisclosureButton, final AsyncCallback<Void> saveQueryCallback) { | ||
boolean showSearchAdvancedDisclosureButton, final AsyncCallback<Void> saveQueryCallback) { | ||
super(defaultFilter, allFilter, placeholder, context, showSearchAdvancedDisclosureButton, saveQueryCallback); | ||
} | ||
|
||
public SearchPanelWithSearchAll(Filter defaultFilter, String allFilter, String placeholder, boolean showSearchInputListBox, | ||
boolean showSearchAdvancedDisclosureButton, final AsyncCallback<Void> saveQueryCallback) { | ||
super(defaultFilter, allFilter, placeholder, showSearchInputListBox, showSearchAdvancedDisclosureButton, saveQueryCallback); | ||
public SearchPanelWithSearchAll(Filter defaultFilter, String allFilter, String placeholder, | ||
boolean showSearchInputListBox, boolean showSearchAdvancedDisclosureButton, | ||
final AsyncCallback<Void> saveQueryCallback) { | ||
super(defaultFilter, allFilter, placeholder, showSearchInputListBox, showSearchAdvancedDisclosureButton, | ||
saveQueryCallback); | ||
} | ||
|
||
@Override | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters