/* * 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; /** * The results tab handler.<p> * * This class receives events information from the results tab and * delegates them to the gallery controller. * * @since 8.0.0 */ public class CmsTypesTabHandler extends A_CmsTabHandler { /** * Constructor.<p> * * @param controller the gallery controller */ public CmsTypesTabHandler(CmsGalleryController controller) { super(controller); } /** * @see org.opencms.ade.galleries.client.A_CmsTabHandler#clearParams() */ @Override public void clearParams() { m_controller.clearTypes(); } /** * Will be triggered when the user unchecks the checkbox to deselect a type.<p> * * @param resourceType the resource type as id */ public void deselectType(String resourceType) { m_controller.removeType(resourceType); } /** * @see org.opencms.ade.galleries.client.A_CmsTabHandler#onSelection() */ @Override public void onSelection() { m_controller.updatesTypesTab(); } /** * @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 user checks the checkbox to select a type.<p> * * @param resourceType the resource type as id */ public void selectType(String resourceType) { m_controller.addType(resourceType); } }