blob: b220a6a40f74a5b53f3d2a5d619666615af07e92 [file] [log] [blame]
/****************************************************************
* Licensed to the Apache Software Foundation (ASF) under one *
* or more contributor license agreements. See the NOTICE file *
* distributed with this work for additional information *
* regarding copyright ownership. The ASF licenses this file *
* to you under the Apache License, Version 2.0 (the *
* "License"); you may not use this file except in compliance *
* with the License. You may obtain a copy of the License at *
* *
* http://www.apache.org/licenses/LICENSE-2.0 *
* *
* Unless required by applicable law or agreed to in writing, *
* software distributed under the License is distributed on an *
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY *
* KIND, either express or implied. See the License for the *
* specific language governing permissions and limitations *
* under the License. *
****************************************************************/
package org.apache.hupa.client.ui;
import org.apache.hupa.client.activity.MessageListFooterActivity;
import org.apache.hupa.client.rf.HupaRequestFactory;
import com.google.gwt.core.client.GWT;
import com.google.gwt.uibinder.client.UiBinder;
import com.google.gwt.uibinder.client.UiField;
import com.google.gwt.user.cellview.client.SimplePager;
import com.google.gwt.user.cellview.client.SimplePager.TextLocation;
import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.HasVisibility;
import com.google.gwt.user.client.ui.HorizontalPanel;
import com.google.gwt.user.client.ui.ListBox;
import com.google.gwt.user.client.ui.SimplePanel;
import com.google.inject.Inject;
public class MessageListFooterView extends Composite implements MessageListFooterActivity.Displayable {
@UiField(provided = true) SimplePager simplePager;
@UiField ListBox labels;
@UiField SimplePanel labelsPanel;
@Inject
public MessageListFooterView(final MessagesCellTable table, final HupaRequestFactory rf) {
SimplePager.Resources pagerResources = GWT.create(SimplePager.Resources.class);
simplePager = new SimplePager(TextLocation.CENTER, pagerResources, false, 0, true);
simplePager.setDisplay(table);
// simplePager.setRangeLimited(false);
initWidget(binder.createAndBindUi(this));
// FIXME: make it work
labels.setVisible(false);
}
interface MessageListFooterUiBinder extends UiBinder<HorizontalPanel, MessageListFooterView> {
}
private static MessageListFooterUiBinder binder = GWT.create(MessageListFooterUiBinder.class);
@Override
public SimplePager getPager() {
return simplePager;
}
@Override
public HasVisibility getLabelsPanel() {
return labelsPanel;
}
@Override
public ListBox getLabels() {
return labels;
}
}