/* * This library is part of OpenCms - * the Open Source Content Management System * * Copyright (c) Alkacon Software GmbH (http://www.alkacon.com) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * For further information about Alkacon Software, please see the * company website: http://www.alkacon.com * * For further information about OpenCms, please see the * project website: http://www.opencms.org * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package org.opencms.ade.galleries.client; import com.google.gwt.event.logical.shared.CloseEvent; import com.google.gwt.user.client.ui.PopupPanel; /** * The results tab handler.<p> * * This class receives event information from the results tab and * delegates it to the gallery controller. * * @since 8.0.0 */ public class CmsResultsTabHandler extends A_CmsTabHandler { /** * Constructor.<p> * * @param controller the gallery controller */ public CmsResultsTabHandler(CmsGalleryController controller) { super(controller); } /** * @see org.opencms.ade.galleries.client.A_CmsTabHandler#clearParams() */ @Override public void clearParams() { // nothing to do here } /** * Deletes the given resource.<p> * * @param resourcePath the resource path of the resource to delete */ public void deleteResource(String resourcePath) { m_controller.deleteResource(resourcePath); } /** * Returns if resource entries in the search result are selectable.<p> * * @return if resource entries in the search result are selectable */ public boolean hasSelectResource() { return m_controller.hasSelectResource(); } /** * Returns if a load results request is currently running.<p> * * @return <code>true</code> if a load results request is currently running */ public boolean isLoading() { return m_controller.isLoading(); } /** * @see org.opencms.ade.galleries.client.A_CmsTabHandler#onClose(com.google.gwt.event.logical.shared.CloseEvent) */ @Override public void onClose(CloseEvent<PopupPanel> event) { m_controller.updateResultsTab(false); } /** * Will be triggered when the bottom of the result list is reached by scrolling.<p> */ public void onScrollToBottom() { m_controller.updateResultsTab(true); } /** * @see org.opencms.ade.galleries.client.A_CmsTabHandler#onSelection() */ @Override public void onSelection() { if (m_controller.isSearchObjectChanged()) { m_controller.updateResultsTab(false); } } /** * @see org.opencms.ade.galleries.client.A_CmsTabHandler#onSort(java.lang.String,java.lang.String) */ @Override public void onSort(String sortParams, String filter) { // ignore filter, not available for this tab m_controller.sortResults(sortParams); } /** * Will be triggered when the result item is clicked.<p> * * @param resourcePath the resource path of the result * @param resourceType */ public void openPreview(String resourcePath, String resourceType) { m_controller.openPreview(resourcePath, resourceType); } /** * Selects the given resource and sets its path into the xml-content field or editor link.<p> * * @param resourcePath the item resource path * @param title the resource title * @param resourceType the item resource type */ public void selectResource(String resourcePath, String title, String resourceType) { m_controller.selectResource(resourcePath, title, resourceType); } }