de.sciss.mellite.gui.impl.component.PaintIcon.scala Maven / Gradle / Ivy
/*
* PaintIcon.scala
* (Mellite)
*
* Copyright (c) 2012-2016 Hanns Holger Rutz. All rights reserved.
*
* This software is published under the GNU General Public License v3+
*
*
* For further information, please contact Hanns Holger Rutz at
* [email protected]
*/
package de.sciss.mellite.gui.impl.component
import java.awt.{Paint, Graphics, Component}
import javax.swing.Icon
import scala.swing.Graphics2D
class PaintIcon(var paint: Paint, width: Int, height: Int) extends Icon {
def getIconWidth : Int = width
def getIconHeight: Int = height
def paintIcon(c: Component, g: Graphics, x: Int, y: Int): Unit = {
val g2 = g.asInstanceOf[Graphics2D]
g2.setPaint(paint)
g2.fillRect(x, y, width, height)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy