Home
last modified time | relevance | path

Searched refs:ImageIcon (Results 1 – 25 of 1859) sorted by relevance

12345678910>>...75

/dports/textproc/jdictionary/jdictionary/src-1_8/info/jdictionary/
H A DIconBank.java27 import javax.swing.ImageIcon;
36 public static ImageIcon world = new ImageIcon(iconBank.getURLForFile("World.png"));
37 public static ImageIcon caution = new ImageIcon(iconBank.getURLForFile("Caution.png"));
38 public static ImageIcon info = new ImageIcon(iconBank.getURLForFile("Inform.png"));
39 public static ImageIcon stop = new ImageIcon(iconBank.getURLForFile("Stop.png"));
41 public static ImageIcon bulb = new ImageIcon(iconBank.getURLForFile("Bulb.png"));
42 public static ImageIcon rescan = new ImageIcon(iconBank.getURLForFile("Rescan.png"));
43 public static ImageIcon exit = new ImageIcon(iconBank.getURLForFile("Exit.png"));
46 public static ImageIcon Folder = new ImageIcon(iconBank.getURLForFile("Folder.png"));
48 public static ImageIcon plug = new ImageIcon(iconBank.getURLForFile("Plug.png"));
[all …]
/dports/math/jts/jts-jts-1.18.1/modules/app/src/main/java/org/locationtech/jtstest/testbuilder/
H A DAppIcons.java3 import javax.swing.ImageIcon;
6 public final static ImageIcon APP = IconLoader.icon("app-icon.gif");
8 public final static ImageIcon ADD = IconLoader.icon("Plus.png");
10 public final static ImageIcon DELETE = IconLoader.icon("Delete.png");
15 public final static ImageIcon UNDO = IconLoader.icon("Undo.png");
20 public final static ImageIcon DOWN = IconLoader.icon("Down.png");
21 public final static ImageIcon UP = IconLoader.icon("Up.png");
22 public final static ImageIcon LEFT = IconLoader.icon("Left.png");
23 public final static ImageIcon RIGHT = IconLoader.icon("Right.png");
27 public final static ImageIcon COPY = IconLoader.icon("Copy.png");
[all …]
H A DJTSTestBuilderToolBar.java23 import javax.swing.ImageIcon;
64 private final ImageIcon leftIcon = new ImageIcon(this.getClass().getResource("Left.png"));
65 private final ImageIcon rightIcon = new ImageIcon(this.getClass().getResource("Right.png"));
66 private final ImageIcon plusIcon = new ImageIcon(this.getClass().getResource("Plus.png"));
67 private final ImageIcon copyCaseIcon = new ImageIcon(this.getClass().getResource("CopyCase.png"));
68 private final ImageIcon deleteIcon = new ImageIcon(this.getClass().getResource("Delete.png"));
78 private final ImageIcon infoIcon = new ImageIcon(this.getClass().getResource("Info.png"));
85 private final ImageIcon selectIcon = new ImageIcon(this.getClass().getResource("Select.gif"));
87 private final ImageIcon panIcon = new ImageIcon(this.getClass().getResource("Hand.gif"));
446 ImageIcon icon, in createToggleButton()
[all …]
/dports/java/jd-gui/jd-gui-1.6.6/services/src/main/java/org/jd/gui/service/type/
H A DAbstractTypeFactoryProvider.java273 protected static ImageIcon getTypeIcon(int access) { in getTypeIcon()
284 protected static ImageIcon getFieldIcon(int access) { in getFieldIcon()
288 protected static ImageIcon getMethodIcon(int access) { in getMethodIcon()
315 protected static ImageIcon mergeIcons(ImageIcon background, ImageIcon overlay, int x, int y) { in mergeIcons()
330 return new ImageIcon(image); in mergeIcons()
333 …protected static ImageIcon[] mergeIcons(ImageIcon[] backgrounds, ImageIcon overlay, int x, int y) { in mergeIcons()
335 ImageIcon[] result = new ImageIcon[length*2]; in mergeIcons()
363 …protected static final ImageIcon ENUM_ICON = new ImageIcon(ClassFileTypeFactoryProvider.class.getC…
376 protected static final ImageIcon[] DEFAULT_CLASS_ICONS = {
390 protected static final ImageIcon[] DEFAULT_FIELD_ICONS = {
[all …]
/dports/math/scilab/scilab-6.1.1/scilab/modules/ui_data/src/java/org/scilab/modules/ui_data/
H A DBrowseVar.java18 import javax.swing.ImageIcon;
66 private static final ImageIcon NO_ICON = new ImageIcon(FindIconHelper.findIcon("noicon"));
67 private static final ImageIcon DOUBLE_ICON = new ImageIcon(FindIconHelper.findIcon("double"));
71 private static final ImageIcon SPARSE_ICON = new ImageIcon(FindIconHelper.findIcon("sparse"));
72 private static final ImageIcon INT_ICON = new ImageIcon(FindIconHelper.findIcon("int"));
76 private static final ImageIcon LIST_ICON = new ImageIcon(FindIconHelper.findIcon("list"));
77 private static final ImageIcon TLIST_ICON = new ImageIcon(FindIconHelper.findIcon("tlist"));
78 private static final ImageIcon MLIST_ICON = new ImageIcon(FindIconHelper.findIcon("mlist"));
79 private static final ImageIcon CELL_ICON = new ImageIcon(FindIconHelper.findIcon("cell"));
80 private static final ImageIcon USER_ICON = new ImageIcon(FindIconHelper.findIcon("user"));
[all …]
/dports/java/jgraphx/jgraphx-4.2.2/examples/com/mxgraph/examples/swing/
H A DGraphEditor.java103 new ImageIcon( in GraphEditor()
110 new ImageIcon( in GraphEditor()
118 new ImageIcon( in GraphEditor()
126 new ImageIcon( in GraphEditor()
133 new ImageIcon( in GraphEditor()
140 new ImageIcon( in GraphEditor()
147 new ImageIcon( in GraphEditor()
154 new ImageIcon( in GraphEditor()
161 new ImageIcon( in GraphEditor()
168 new ImageIcon( in GraphEditor()
[all …]
/dports/devel/scalatest/scalatest-1.6.1/src/main/scala/org/scalatest/tools/
H A DIconEmbellishedListCellRenderer.scala64 private val purpleImageIcon: ImageIcon = new ImageIcon(purpleURL)
65 private val greenImageIcon: ImageIcon = new ImageIcon(greenURL)
66 private val redImageIcon: ImageIcon = new ImageIcon(redURL)
67 private val blueImageIcon: ImageIcon = new ImageIcon(blueURL)
68 private val grayImageIcon: ImageIcon = new ImageIcon(grayURL)
69 private val cyanImageIcon: ImageIcon = new ImageIcon(cyanURL)
70 private val yellowImageIcon: ImageIcon = new ImageIcon(yellowURL)
75 private val redSelImageIcon: ImageIcon = new ImageIcon(redSelURL)
76 private val blueSelImageIcon: ImageIcon = new ImageIcon(blueSelURL)
77 private val graySelImageIcon: ImageIcon = new ImageIcon(graySelURL)
[all …]
/dports/security/zaproxy/zaproxy-2.11.1/zap/src/main/java/org/zaproxy/zap/utils/
H A DDisplayUtils.java33 import javax.swing.ImageIcon;
62 public static ImageIcon getScaledIcon(URL url) { in getScaledIcon()
66 return getScaledIcon(new ImageIcon(url)); in getScaledIcon()
69 public static ImageIcon getScaledIcon(ImageIcon icon) { in getScaledIcon()
77 return new ImageIcon( in getScaledIcon()
90 || !(icon instanceof ImageIcon)) { in getScaledIcon()
94 return getScaledIcon((ImageIcon) icon); in getScaledIcon()
114 && label.getIcon() instanceof ImageIcon) { in scaleIcon()
115 label.setIcon(getScaledIcon((ImageIcon) label.getIcon())); in scaleIcon()
123 && button.getIcon() instanceof ImageIcon) { in scaleIcon()
[all …]
/dports/security/zaproxy/zaproxy-2.11.1/zap/src/main/java/org/zaproxy/zap/view/
H A DSiteMapTreeCellRenderer.java26 import javax.swing.ImageIcon;
50 new ImageIcon(
54 new ImageIcon(
57 new ImageIcon(
61 new ImageIcon(
65 new ImageIcon(
69 new ImageIcon(
73 new ImageIcon(
76 new ImageIcon(
81 new ImageIcon(
[all …]
/dports/security/zaproxy/zaproxy-2.11.1/zap/src/main/java/org/zaproxy/zap/extension/ascan/
H A DScanProgressActionIcon.java23 import javax.swing.ImageIcon;
33 private static final ImageIcon completedIcon =
34 new ImageIcon(ZAP.class.getResource("/resource/icon/10/102.png"));
35 private static final ImageIcon skippedIcon =
37 private static final ImageIcon skipIcon =
39 private static final ImageIcon focusedSkipIcon =
41 private static final ImageIcon pressedSkipIcon =
43 private static final ImageIcon SKIP_PENDING_ICON =
45 private static final ImageIcon SKIP_PENDING_FOCUSED_ICON =
47 private static final ImageIcon SKIP_PENDING_PRESSED_ICON =
[all …]
/dports/audio/bsequencer-lv2/BSEQuencer-1.8.10/src/BWidgets/
H A DImageIcon.cpp23 ImageIcon::ImageIcon () : ImageIcon (0.0, 0.0, BWIDGETS_DEFAULT_WIDTH, BWIDGETS_DEFAULT_HEIGHT, "ic… in ImageIcon() function in BWidgets::ImageIcon
25 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
29 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
40 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
51 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
58 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
65 Widget* ImageIcon::clone () const {return new ImageIcon (*this);} in clone()
67 void ImageIcon::loadImage (BColors::State state, cairo_surface_t* surface) in loadImage()
82 void ImageIcon::loadImage (BColors::State state, const std::string& filename) in loadImage()
/dports/audio/boops-lv2/BOops-1.8.2/src/BWidgets/
H A DImageIcon.cpp22 ImageIcon::ImageIcon () : ImageIcon (0.0, 0.0, BWIDGETS_DEFAULT_WIDTH, BWIDGETS_DEFAULT_HEIGHT, "ic… in ImageIcon() function in BWidgets::ImageIcon
24 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
28 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
39 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
50 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
57 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
64 Widget* ImageIcon::clone () const {return new ImageIcon (*this);} in clone()
66 void ImageIcon::loadImage (BColors::State state, cairo_surface_t* surface) in loadImage()
81 void ImageIcon::loadImage (BColors::State state, const std::string& filename) in loadImage()
/dports/audio/bshapr-lv2/BShapr-0.13/src/BWidgets/
H A DImageIcon.cpp22 ImageIcon::ImageIcon () : ImageIcon (0.0, 0.0, BWIDGETS_DEFAULT_WIDTH, BWIDGETS_DEFAULT_HEIGHT, "ic… in ImageIcon() function in BWidgets::ImageIcon
24 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
28 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
39 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
50 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
57 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
64 Widget* ImageIcon::clone () const {return new ImageIcon (*this);} in clone()
66 void ImageIcon::loadImage (BColors::State state, cairo_surface_t* surface) in loadImage()
81 void ImageIcon::loadImage (BColors::State state, const std::string& filename) in loadImage()
/dports/audio/bangr-lv2/BAngr-1.6.0/src/BWidgets/
H A DImageIcon.cpp22 ImageIcon::ImageIcon () : ImageIcon (0.0, 0.0, BWIDGETS_DEFAULT_WIDTH, BWIDGETS_DEFAULT_HEIGHT, "ic… in ImageIcon() function in BWidgets::ImageIcon
24 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
28 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
39 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
50 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
57 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
64 Widget* ImageIcon::clone () const {return new ImageIcon (*this);} in clone()
66 void ImageIcon::loadImage (BColors::State state, cairo_surface_t* surface) in loadImage()
81 void ImageIcon::loadImage (BColors::State state, const std::string& filename) in loadImage()
/dports/audio/bamp-lv2/BAmp-fe91b838f2ec801df55b12ffbdf6c6a4ab4ef093/BWidgets/
H A DImageIcon.cpp22 ImageIcon::ImageIcon () : ImageIcon (0.0, 0.0, BWIDGETS_DEFAULT_WIDTH, BWIDGETS_DEFAULT_HEIGHT, "ic… in ImageIcon() function in BWidgets::ImageIcon
24 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
28 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
39 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
50 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
57 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
64 Widget* ImageIcon::clone () const {return new ImageIcon (*this);} in clone()
66 void ImageIcon::loadImage (BColors::State state, cairo_surface_t* surface) in loadImage()
81 void ImageIcon::loadImage (BColors::State state, const std::string& filename) in loadImage()
/dports/audio/bharvestr-lv2/BHarvestr-7e6a1e7c81d0af61d4fabcd823978d62c8970502/src/BWidgets/
H A DImageIcon.cpp22 ImageIcon::ImageIcon () : ImageIcon (0.0, 0.0, BWIDGETS_DEFAULT_WIDTH, BWIDGETS_DEFAULT_HEIGHT, "ic… in ImageIcon() function in BWidgets::ImageIcon
24 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
28 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
39 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
50 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
57 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
64 Widget* ImageIcon::clone () const {return new ImageIcon (*this);} in clone()
66 void ImageIcon::loadImage (BColors::State state, cairo_surface_t* surface) in loadImage()
81 void ImageIcon::loadImage (BColors::State state, const std::string& filename) in loadImage()
/dports/audio/bschaffl-lv2/BSchaffl-1.4.8/src/BWidgets/
H A DImageIcon.cpp22 ImageIcon::ImageIcon () : ImageIcon (0.0, 0.0, BWIDGETS_DEFAULT_WIDTH, BWIDGETS_DEFAULT_HEIGHT, "ic… in ImageIcon() function in BWidgets::ImageIcon
24 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
28 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
39 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
50 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
57 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
64 Widget* ImageIcon::clone () const {return new ImageIcon (*this);} in clone()
66 void ImageIcon::loadImage (BColors::State state, cairo_surface_t* surface) in loadImage()
81 void ImageIcon::loadImage (BColors::State state, const std::string& filename) in loadImage()
/dports/audio/bslizr-lv2/BSlizr-1.2.16/src/BWidgets/
H A DImageIcon.cpp22 ImageIcon::ImageIcon () : ImageIcon (0.0, 0.0, BWIDGETS_DEFAULT_WIDTH, BWIDGETS_DEFAULT_HEIGHT, "ic… in ImageIcon() function in BWidgets::ImageIcon
24 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
28 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
39 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
50 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
57 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
64 Widget* ImageIcon::clone () const {return new ImageIcon (*this);} in clone()
66 void ImageIcon::loadImage (BColors::State state, cairo_surface_t* surface) in loadImage()
81 void ImageIcon::loadImage (BColors::State state, const std::string& filename) in loadImage()
/dports/audio/bchoppr-lv2/BChoppr-1.10.10/src/BWidgets/
H A DImageIcon.cpp22 ImageIcon::ImageIcon () : ImageIcon (0.0, 0.0, BWIDGETS_DEFAULT_WIDTH, BWIDGETS_DEFAULT_HEIGHT, "ic… in ImageIcon() function in BWidgets::ImageIcon
24 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
28 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
39 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
50 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
57 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
64 Widget* ImageIcon::clone () const {return new ImageIcon (*this);} in clone()
66 void ImageIcon::loadImage (BColors::State state, cairo_surface_t* surface) in loadImage()
81 void ImageIcon::loadImage (BColors::State state, const std::string& filename) in loadImage()
/dports/audio/bjumblr-lv2/BJumblr-1.6.8/src/BWidgets/
H A DImageIcon.cpp22 ImageIcon::ImageIcon () : ImageIcon (0.0, 0.0, BWIDGETS_DEFAULT_WIDTH, BWIDGETS_DEFAULT_HEIGHT, "ic… in ImageIcon() function in BWidgets::ImageIcon
24 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
28 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
39 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
50 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
57 ImageIcon::ImageIcon (const double x, const double y, const double width, const double height, in ImageIcon() function in BWidgets::ImageIcon
64 Widget* ImageIcon::clone () const {return new ImageIcon (*this);} in clone()
66 void ImageIcon::loadImage (BColors::State state, cairo_surface_t* surface) in loadImage()
81 void ImageIcon::loadImage (BColors::State state, const std::string& filename) in loadImage()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/sanity/client/lib/SwingSet3/src/com/sun/swingset3/demos/togglebutton/
H A DDirectionPanel.java30 import javax.swing.ImageIcon;
85 private final ImageIcon bl_dot = loadImageIcon("bl.gif", "bottom left layout button");
89 private final ImageIcon br_dot = loadImageIcon("br.gif", "bottom right layout button");
91 private final ImageIcon c_dot = loadImageIcon("c.gif", "center layout button");
93 private final ImageIcon ml_dot = loadImageIcon("ml.gif", "middle left layout button");
95 private final ImageIcon mr_dot = loadImageIcon("mr.gif", "middle right layout button");
97 private final ImageIcon tl_dot = loadImageIcon("tl.gif", "top left layout button");
99 private final ImageIcon tm_dot = loadImageIcon("tm.gif", "top middle layout button");
101 private final ImageIcon tr_dot = loadImageIcon("tr.gif", "top right layout button");
104 private ImageIcon loadImageIcon(String filename, String description) { in loadImageIcon()
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/sanity/client/lib/SwingSet3/src/com/sun/swingset3/demos/togglebutton/
H A DDirectionPanel.java30 import javax.swing.ImageIcon;
85 private final ImageIcon bl_dot = loadImageIcon("bl.gif", "bottom left layout button");
89 private final ImageIcon br_dot = loadImageIcon("br.gif", "bottom right layout button");
91 private final ImageIcon c_dot = loadImageIcon("c.gif", "center layout button");
93 private final ImageIcon ml_dot = loadImageIcon("ml.gif", "middle left layout button");
95 private final ImageIcon mr_dot = loadImageIcon("mr.gif", "middle right layout button");
97 private final ImageIcon tl_dot = loadImageIcon("tl.gif", "top left layout button");
99 private final ImageIcon tm_dot = loadImageIcon("tm.gif", "top middle layout button");
101 private final ImageIcon tr_dot = loadImageIcon("tr.gif", "top right layout button");
104 private ImageIcon loadImageIcon(String filename, String description) { in loadImageIcon()
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/sanity/client/lib/SwingSet3/src/com/sun/swingset3/demos/togglebutton/
H A DDirectionPanel.java30 import javax.swing.ImageIcon;
85 private final ImageIcon bl_dot = loadImageIcon("bl.gif", "bottom left layout button");
89 private final ImageIcon br_dot = loadImageIcon("br.gif", "bottom right layout button");
91 private final ImageIcon c_dot = loadImageIcon("c.gif", "center layout button");
93 private final ImageIcon ml_dot = loadImageIcon("ml.gif", "middle left layout button");
95 private final ImageIcon mr_dot = loadImageIcon("mr.gif", "middle right layout button");
97 private final ImageIcon tl_dot = loadImageIcon("tl.gif", "top left layout button");
99 private final ImageIcon tm_dot = loadImageIcon("tm.gif", "top middle layout button");
101 private final ImageIcon tr_dot = loadImageIcon("tr.gif", "top right layout button");
104 private ImageIcon loadImageIcon(String filename, String description) { in loadImageIcon()
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/sanity/client/lib/SwingSet3/src/com/sun/swingset3/demos/togglebutton/
H A DDirectionPanel.java30 import javax.swing.ImageIcon;
85 private final ImageIcon bl_dot = loadImageIcon("bl.gif", "bottom left layout button");
89 private final ImageIcon br_dot = loadImageIcon("br.gif", "bottom right layout button");
91 private final ImageIcon c_dot = loadImageIcon("c.gif", "center layout button");
93 private final ImageIcon ml_dot = loadImageIcon("ml.gif", "middle left layout button");
95 private final ImageIcon mr_dot = loadImageIcon("mr.gif", "middle right layout button");
97 private final ImageIcon tl_dot = loadImageIcon("tl.gif", "top left layout button");
99 private final ImageIcon tm_dot = loadImageIcon("tm.gif", "top middle layout button");
101 private final ImageIcon tr_dot = loadImageIcon("tr.gif", "top right layout button");
104 private ImageIcon loadImageIcon(String filename, String description) { in loadImageIcon()
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/sanity/client/lib/SwingSet3/src/com/sun/swingset3/demos/togglebutton/
H A DDirectionPanel.java30 import javax.swing.ImageIcon;
85 private final ImageIcon bl_dot = loadImageIcon("bl.gif", "bottom left layout button");
89 private final ImageIcon br_dot = loadImageIcon("br.gif", "bottom right layout button");
91 private final ImageIcon c_dot = loadImageIcon("c.gif", "center layout button");
93 private final ImageIcon ml_dot = loadImageIcon("ml.gif", "middle left layout button");
95 private final ImageIcon mr_dot = loadImageIcon("mr.gif", "middle right layout button");
97 private final ImageIcon tl_dot = loadImageIcon("tl.gif", "top left layout button");
99 private final ImageIcon tm_dot = loadImageIcon("tm.gif", "top middle layout button");
101 private final ImageIcon tr_dot = loadImageIcon("tr.gif", "top right layout button");
104 private ImageIcon loadImageIcon(String filename, String description) { in loadImageIcon()
[all …]

12345678910>>...75