All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jwebmp.plugins.bootstrap.toggle.BSDropDownToggle Maven / Gradle / Ivy

There is a newer version: 0.66.0.1
Show newest version
/*
 * Copyright (C) 2017 Marc Magon
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */
package com.jwebmp.plugins.bootstrap.toggle;

import com.jwebmp.core.base.html.Div;
import com.jwebmp.core.base.html.List;
import com.jwebmp.core.base.html.attributes.ButtonAttributes;
import com.jwebmp.core.base.html.attributes.LinkAttributes;
import com.jwebmp.plugins.bootstrap.dropdown.BSComponentDropDownOptions;

import java.util.ArrayList;
import java.util.LinkedHashSet;

/**
 * An implementation of the Bootstrap Toggle Feature
 * 

*

* * @author Marc Magon * @version 1.0 * @since 29 Aug 2015 */ @SuppressWarnings("unused") public class BSDropDownToggle> extends Div { private static final long serialVersionUID = 1L; private static final String ToggleString = "dropdown"; /** * The title component for this drop down */ private BSToggleChildren title; /** * A list of the contents for this drop down */ private List contents; /** * Construct a new toggle item with the given items * * @param titleItem * Displays by default, clickable to show the contents * @param contents */ @SuppressWarnings("unused") public BSDropDownToggle(BSDropDownToggleTitle titleItem, List contents) { setTag(titleItem.getTag()); setTitle(titleItem); setContents(contents); } /** * Construct a new toggle item with the given items * * @param titleItem * Displays by default, clickable to show the contents * @param contents */ @SuppressWarnings("unused") public BSDropDownToggle(BSDropDownToggleButton titleItem, List contents) { setTag(titleItem.getTag()); setTitle(titleItem); setContents(contents); } /** * Sets the title * * @param title */ public final void setTitle(BSDropDownToggleButton title) { getChildren().remove(this.title); this.title = title; if (title != null) { java.util.List tempList = new ArrayList<>(getChildren()); tempList.add(0, this.title); setChildren(new LinkedHashSet<>(tempList)); this.title.addClass(BSComponentDropDownOptions.Dropdown_Toggle); title.addAttribute(ButtonAttributes.Data_Toggle, ToggleString); if (contents != null) { title.addAttribute(ButtonAttributes.Data_Target, contents.getID(true)); } } } /** * Returns the title component * * @return */ public BSToggleChildren getTitle() { return title; } /** * Sets the title * * @param title */ public final void setTitle(BSDropDownToggleTitle title) { remove(this.title); this.title = title; if (title != null) { java.util.List tempList = new ArrayList<>(getChildren()); tempList.add(0, this.title); setChildren(new LinkedHashSet<>(tempList)); this.title.addClass(BSComponentDropDownOptions.Dropdown_Toggle); title.addAttribute(LinkAttributes.Data_Toggle, ToggleString); if (contents != null) { title.addAttribute(LinkAttributes.Data_Target, contents.getID(true)); } } } @Override public int hashCode() { return super.hashCode(); } @Override public boolean equals(Object o) { return super.equals(o); } /** * Returns the contents * * @return */ public List getContents() { return contents; } /** * Sets the contents * * @param contents */ public final void setContents(List contents) { this.contents = contents; if (contents != null) { contents.addClass(BSComponentDropDownOptions.Dropdown_Menu); contents.addClass(""); title.asAttributeBase() .addAttribute(ButtonAttributes.Data_Toggle.toString(), ToggleString); title.asAttributeBase() .addAttribute(ButtonAttributes.Data_Target.toString(), contents.getID(true)); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy