Simplified icons

This commit is contained in:
2018-09-10 22:44:16 +01:00
parent 053a37ea89
commit 25efcb553c
2 changed files with 16 additions and 54 deletions

View File

@@ -189,14 +189,7 @@ public class AudiobookRecorder extends JFrame {
window = this;
Icons.loadIcons();
// initSphinx();
try {
// String clsname = "com.jtattoo.plaf.aluminium.AluminiumLookAndFeel";
String clsname = "com.jtattoo.plaf.hifi.HiFiLookAndFeel";
UIManager.setLookAndFeel(clsname);

View File

@@ -3,51 +3,20 @@ package uk.co.majenko.audiobookrecorder;
import javax.swing.*;
public class Icons {
static public ImageIcon book;
static public ImageIcon chapter;
static public ImageIcon sentence;
static public ImageIcon play;
static public ImageIcon playon;
static public ImageIcon stop;
static public ImageIcon record;
static public ImageIcon openBook;
static public ImageIcon newBook;
static public ImageIcon newChapter;
static public ImageIcon recordRoom;
static public ImageIcon save;
static public ImageIcon redo;
static public ImageIcon fft;
static public ImageIcon peak;
static public ImageIcon locked;
static void loadIcons() {
book = new ImageIcon(Icons.class.getResource("icons/book.png"));
chapter = new ImageIcon(Icons.class.getResource("icons/chapter.png"));
sentence = new ImageIcon(Icons.class.getResource("icons/sentence.png"));
play = new ImageIcon(Icons.class.getResource("icons/play.png"));
playon = new ImageIcon(Icons.class.getResource("icons/playon.png"));
stop = new ImageIcon(Icons.class.getResource("icons/stop.png"));
record = new ImageIcon(Icons.class.getResource("icons/record.png"));
openBook = new ImageIcon(Icons.class.getResource("icons/open.png"));
newBook = new ImageIcon(Icons.class.getResource("icons/new.png"));
newChapter = new ImageIcon(Icons.class.getResource("icons/new-chapter.png"));
recordRoom = new ImageIcon(Icons.class.getResource("icons/record-room.png"));
save = new ImageIcon(Icons.class.getResource("icons/save.png"));
redo = new ImageIcon(Icons.class.getResource("icons/redo.png"));
fft = new ImageIcon(Icons.class.getResource("icons/fft.png"));
peak = new ImageIcon(Icons.class.getResource("icons/peak.png"));
locked = new ImageIcon(Icons.class.getResource("icons/locked.png"));
}
static public ImageIcon book = new ImageIcon(Icons.class.getResource("icons/book.png"));
static public ImageIcon chapter = new ImageIcon(Icons.class.getResource("icons/chapter.png"));
static public ImageIcon sentence = new ImageIcon(Icons.class.getResource("icons/sentence.png"));
static public ImageIcon play = new ImageIcon(Icons.class.getResource("icons/play.png"));
static public ImageIcon playon = new ImageIcon(Icons.class.getResource("icons/playon.png"));
static public ImageIcon stop = new ImageIcon(Icons.class.getResource("icons/stop.png"));
static public ImageIcon record = new ImageIcon(Icons.class.getResource("icons/record.png"));
static public ImageIcon openBook = new ImageIcon(Icons.class.getResource("icons/open.png"));
static public ImageIcon newBook = new ImageIcon(Icons.class.getResource("icons/new.png"));
static public ImageIcon newChapter = new ImageIcon(Icons.class.getResource("icons/new-chapter.png"));
static public ImageIcon recordRoom = new ImageIcon(Icons.class.getResource("icons/record-room.png"));
static public ImageIcon save = new ImageIcon(Icons.class.getResource("icons/save.png"));
static public ImageIcon redo = new ImageIcon(Icons.class.getResource("icons/redo.png"));
static public ImageIcon fft = new ImageIcon(Icons.class.getResource("icons/fft.png"));
static public ImageIcon peak = new ImageIcon(Icons.class.getResource("icons/peak.png"));
static public ImageIcon locked = new ImageIcon(Icons.class.getResource("icons/locked.png"));
}