Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix filter.png not found #1214

Merged
merged 1 commit into from Nov 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -0,0 +1,124 @@
/**
* Copyright (c) 2016, 2019 ControlsFX
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of ControlsFX, any associated website, nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL CONTROLSFX BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.controlsfx.samples.tableview;

import javafx.beans.property.SimpleStringProperty;
import javafx.scene.Node;
import javafx.scene.control.*;
import javafx.scene.control.cell.PropertyValueFactory;
import javafx.stage.Stage;
import org.controlsfx.ControlsFXSample;
import org.controlsfx.control.table.TableFilter;

public class HelloTableFilter extends ControlsFXSample {
@Override
public String getSampleName() {
return "TableFilter";
}

@Override
@SuppressWarnings("unchecked")
public Node getPanel(Stage stage) {
TableView tableView = new TableView();

TableColumn<String, Person> firstNameCol = new TableColumn<>("First Name");
firstNameCol.setCellValueFactory(new PropertyValueFactory<>("firstName"));

TableColumn<String, Person> lastNameCol = new TableColumn<>("Last Name");
lastNameCol.setCellValueFactory(new PropertyValueFactory<>("lastName"));

TableColumn<String, Person> emailCol = new TableColumn<>("Email");
emailCol.setCellValueFactory(new PropertyValueFactory<>("email"));

tableView.getColumns().addAll(firstNameCol, lastNameCol, emailCol);

tableView.getItems().add(new Person("Jacob", "Smith", "jacob.smith@example.com"));
tableView.getItems().add(new Person("Isabella", "Johnson", "isabella.johnson@example.com"));
tableView.getItems().add(new Person("Ethan", "Williams", "ethan.williams@example.com"));
tableView.getItems().add(new Person("Emma", "Jones", "emma.jones@example.com"));
tableView.getItems().add(new Person("Michael", "Brown", "michael.brown@example.com"));
tableView.getItems().add(new Person("Isabella", "Smith", "isabella.smith@example.com"));

// apply filter
TableFilter.forTableView(tableView).apply();

return tableView;
}

@Override
public String getJavaDocURL() {
return "org/controlsfx/control/table/TableFilter.html";
}

@Override
public String getSampleDescription() {
return "Applies a filtering control to a provided TableView instance. "
+ "The filter will be applied immediately on construction, "
+ "and can be made visible by right-clicking the desired column to filter on.";
}

public static void main(String[] args) {
launch(args);
}

public static class Person {

private final SimpleStringProperty firstName;
private final SimpleStringProperty lastName;
private final SimpleStringProperty email;

public Person(String firstName, String lastName, String email) {
this.firstName = new SimpleStringProperty(firstName);
this.lastName = new SimpleStringProperty(lastName);
this.email = new SimpleStringProperty(email);
}

public String getFirstName() {
return firstName.get();
}

public void setFirstName(String firstName) {
this.firstName.set(firstName);
}

public String getLastName() {
return lastName.get();
}

public void setLastName(String lastName) {
this.lastName.set(lastName);
}

public String getEmail() {
return email.get();
}

public void setEmail(String fName) {
email.set(fName);
}
}
}
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2015, 2016, ControlsFX
* Copyright (c) 2015, 2019, ControlsFX
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -69,7 +69,7 @@ public final class FilterPanel<T,R> extends VBox {
// This collection will reference column header listeners. References must be kept locally because weak listeners are registered
private final Collection<InvalidationListener> columnHeadersChangeListeners = new ArrayList();

private static final Image filterIcon = new Image("/impl/org/controlsfx/table/filter.png");
private static final Image filterIcon = new Image(FilterPanel.class.getResource("/impl/org/controlsfx/table/filter.png").toExternalForm());

private static final Supplier<ImageView> filterImageView = () -> {
ImageView imageView = new ImageView(filterIcon);
Expand Down
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2015, ControlsFX
* Copyright (c) 2015, 2019, ControlsFX
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -78,7 +78,7 @@ private TableFilter(TableView<T> tableView, boolean isLazy) {
tableView.setItems(sortedControlList);

applyForAllColumns();
tableView.getStylesheets().add("/impl/org/controlsfx/table/tablefilter.css");
tableView.getStylesheets().add(TableFilter.class.getResource("/impl/org/controlsfx/table/tablefilter.css").toExternalForm());

if (!isLazy) {
columnFilters.forEach(ColumnFilter::initialize);
Expand Down