From c25e26d61a312b55f8be7763051e4f9a8c01d9b4 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Sat, 12 Oct 2019 13:07:35 +0200 Subject: [PATCH] Remove a dead file --- .../player/controller/AutoCoverDemo.java | 66 ------------------- 1 file changed, 66 deletions(-) delete mode 100644 airsonic-main/src/main/java/org/airsonic/player/controller/AutoCoverDemo.java diff --git a/airsonic-main/src/main/java/org/airsonic/player/controller/AutoCoverDemo.java b/airsonic-main/src/main/java/org/airsonic/player/controller/AutoCoverDemo.java deleted file mode 100644 index 1a987cf6..00000000 --- a/airsonic-main/src/main/java/org/airsonic/player/controller/AutoCoverDemo.java +++ /dev/null @@ -1,66 +0,0 @@ -/* - This file is part of Airsonic. - - Airsonic 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. - - Airsonic 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 Airsonic. If not, see . - - Copyright 2016 (C) Airsonic Authors - Based upon Subsonic, Copyright 2013 (C) Sindre Mehus - */ -package org.airsonic.player.controller; - -import org.apache.commons.lang.RandomStringUtils; - -import javax.swing.*; - -import java.awt.*; - -/** - * @author Sindre Mehus - * @version $Id$ - */ -public class AutoCoverDemo { - - public static void main(String[] args) { - JFrame frame = new JFrame(); - JPanel panel = new JPanel(); - panel.add(new AlbumComponent(110, 110)); - panel.add(new AlbumComponent(150, 150)); - panel.add(new AlbumComponent(200, 200)); - panel.add(new AlbumComponent(300, 300)); - panel.add(new AlbumComponent(400, 240)); - panel.add(new AlbumComponent(240, 400)); - - panel.setBackground(Color.LIGHT_GRAY); - frame.add(panel); - frame.setSize(1000, 800); - frame.setVisible(true); - } - - private static class AlbumComponent extends JComponent { - private final int width; - private final int height; - - public AlbumComponent(int width, int height) { - this.width = width; - this.height = height; - setPreferredSize(new Dimension(width, height)); - } - - @Override - protected void paintComponent(Graphics g) { - String key = RandomStringUtils.random(5); - new CoverArtController.AutoCover((Graphics2D) g, key, "Artist with a very long name", "Album", width, height).paintCover(); - } - } -}