Class AbstractStreamItem

java.lang.Object
de.rcblum.stream.deck.items.AbstractStreamItem
All Implemented Interfaces:
StreamKeyListener, StreamItem
Direct Known Subclasses:
ExecutableItem, FolderItem, RunnableItem, ToggleItem, URIItem

public abstract class AbstractStreamItem extends Object implements StreamItem
Abstract version of StreamItem, implements al relevant functions for icons and animations.

MIT License Copyright (c) 2017 Roland von Werden Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Version:
1.0.0
Author:
Roland von Werden
  • Field Details

    • text

      protected String text
    • textPos

      protected int textPos
    • parent

      protected StreamItem parent
      Parent of the item
    • rawImg

      protected SDImage rawImg
      Raw image of the folder
    • img

      protected SDImage img
      Image with text if present.
    • animation

      protected AnimationStack animation
      Animation for the key, if present
    • buttonCount

      protected int buttonCount
      Button count of the connected StreamDeck
    • rowCount

      protected int rowCount
      Row count of the connected StreamDeck
  • Constructor Details

    • AbstractStreamItem

      public AbstractStreamItem(SDImage img)
    • AbstractStreamItem

      public AbstractStreamItem(IconPackage pkg)
    • AbstractStreamItem

      public AbstractStreamItem(SDImage img, AnimationStack animation)
    • AbstractStreamItem

      public AbstractStreamItem(SDImage img, AnimationStack animation, String text)
    • AbstractStreamItem

      public AbstractStreamItem(SDImage img, int buttonCount, int rowCount)
    • AbstractStreamItem

      public AbstractStreamItem(IconPackage pkg, int buttonCount, int rowCount)
    • AbstractStreamItem

      public AbstractStreamItem(SDImage img, AnimationStack animation, int buttonCount, int rowCount)
    • AbstractStreamItem

      public AbstractStreamItem(SDImage rawImg, AnimationStack animation, String text, int textPos, int buttonCount, int rowCount)
  • Method Details