Examples of ImagePanel


Examples of com.art.anette.client.ui.controls.ImagePanel

        lblDescEnterLoginData = new JLabel();
        btnLogin = new JButton();
        btnExit = new JButton();
        lblVersion = new JLabel();
        sepLogin = new JSeparator();
        pnlLogo = new ImagePanel(new ImageIcon(getClass().getResource("/com/art/anette/client/ui/resources/logo.png")).getImage(), true);

        setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
        setModal(true);

        lblWelcome.setHorizontalAlignment(SwingConstants.CENTER);
View Full Code Here

Examples of com.art.anette.client.ui.controls.ImagePanel

        lblName = new JLabel();
        lblVersion = new JLabel();
        sepTop = new JSeparator();
        lblCopyright = new JLabel();
        pnlART = new ImagePanel(new ImageIcon(getClass().getResource("/com/art/anette/client/ui/resources/art.png")).getImage(), true);
        btnClose = new JButton();
        pnlLogo = new ImagePanel(new ImageIcon(getClass().getResource("/com/art/anette/client/ui/resources/logo.png")).getImage(), true);
        sepCopyright = new JSeparator();
        btnLicense = new JButton();
        sepThirdParty = new JSeparator();
        lblThirdParty = new JLabel();
View Full Code Here

Examples of com.atlauncher.gui.components.ImagePanel

        this.error.setLineWrap(true);
        this.error.setWrapStyleWord(true);
        this.error.setText(message);

        this.splitter.setEnabled(false);
        this.splitter.setLeftComponent(new ImagePanel(defaultImage));
        this.splitter.setRightComponent(this.error);

        this.add(this.splitter, BorderLayout.CENTER);
    }
View Full Code Here

Examples of com.atlauncher.gui.components.ImagePanel

    private final JButton openButton = new JButton(Language.INSTANCE.localize("common.openfolder"));

    public InstanceCard(Instance instance) {
        super(instance);
        this.instance = instance;
        this.image = new ImagePanel(instance.getImage().getImage());
        this.splitter.setLeftComponent(this.image);
        this.splitter.setRightComponent(this.rightPanel);
        this.splitter.setEnabled(false);

        this.descArea.setText(instance.getPackDescription());
View Full Code Here

Examples of com.moneychanger.ui.custom.ImagePanel

        filler1 = new javax.swing.Box.Filler(new java.awt.Dimension(0, 0), new java.awt.Dimension(0, 0), new java.awt.Dimension(32767, 32767));
        filler2 = new javax.swing.Box.Filler(new java.awt.Dimension(0, 0), new java.awt.Dimension(0, 0), new java.awt.Dimension(32767, 32767));
        jLabel_Title = new javax.swing.JLabel();
        filler3 = new javax.swing.Box.Filler(new java.awt.Dimension(0, 0), new java.awt.Dimension(0, 0), new java.awt.Dimension(32767, 32767));
        filler4 = new javax.swing.Box.Filler(new java.awt.Dimension(0, 0), new java.awt.Dimension(0, 0), new java.awt.Dimension(32767, 32767));
        jPanel_ImageView = new ImagePanel();
        filler5 = new javax.swing.Box.Filler(new java.awt.Dimension(0, 0), new java.awt.Dimension(0, 0), new java.awt.Dimension(32767, 32767));
        filler6 = new javax.swing.Box.Filler(new java.awt.Dimension(0, 0), new java.awt.Dimension(0, 0), new java.awt.Dimension(32767, 32767));
        jTextField_PathDisplay = new javax.swing.JTextField();
        filler7 = new javax.swing.Box.Filler(new java.awt.Dimension(0, 0), new java.awt.Dimension(0, 0), new java.awt.Dimension(32767, 32767));
        jButton_SelectImage = new javax.swing.JButton();
View Full Code Here

Examples of com.talixa.steganos.widgets.ImagePanel

    frame = new JFrame(SteganosConstants.TITLE_MAIN);   
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setLayout(new BorderLayout());

    // create image panel
    imagePanel = new ImagePanel()
    scrollPane = new JScrollPane(imagePanel);
    frame.add(scrollPane, BorderLayout.CENTER)
   
    lblText = new JTextArea();
    JScrollPane textPane = new JScrollPane(lblText)
View Full Code Here

Examples of getfacts.toolkit.ImagePanel

    private void initComponent()
    {        
        layout = new OneTwoThirdsLayoutManager(OneTwoThirdsLayoutManager.RIGHT);
        this.setLayout(layout);
       
        imagePanel = new ImagePanel(new javax.swing.ImageIcon(getClass().getResource("/getfacts/full/Logo.png")));
        imagePanel.setOpaque(false);
        this.add(imagePanel, OneTwoThirdsLayoutManager.ONE_THIRD);
       
        getFactsLabel = new JLabel("GetFacts");
        getFactsLabel.setForeground(this.getForeground());
View Full Code Here

Examples of limelight.ui.model.ImagePanel

  private PropPanel propPanel;
  private ImagePanel imagePanel;

  public void install(PanelEvent event)
  {
    imagePanel = new ImagePanel();
    propPanel = (PropPanel) event.getRecipient();
    propPanel.add(imagePanel);
    propPanel.getBackstage().put("image", this);
  }
View Full Code Here

Examples of mage.components.ImagePanel

    ptText.setForeground(Color.white);
    ptText.setGlow(Color.black, TEXT_GLOW_SIZE, TEXT_GLOW_INTENSITY);
    add(ptText);
   
    BufferedImage sickness = ImageManagerImpl.getInstance().getSicknessImage();
    overlayPanel = new ImagePanel(sickness, ImagePanel.SCALED);
    overlayPanel.setOpaque(false);
    add(overlayPanel);

    imagePanel = new ScaledImagePanel();
    imagePanel.setBorder(BorderFactory.createLineBorder(Color.white));
View Full Code Here

Examples of mage.components.ImagePanel

      if (background == null) {
        throw new FileNotFoundException("Couldn't find " + filename + " in resources.");
      }

      if (ui.containsKey("gamePanel") && ui.containsKey("jLayeredPane")) {
        ImagePanel bgPanel = new ImagePanel(background, ImagePanel.TILED);

        unsetOpaque(ui.get("jSplitPane1"));
        unsetOpaque(ui.get("pnlBattlefield"));
        unsetOpaque(ui.get("jPanel3"));
        unsetOpaque(ui.get("hand"));
        unsetOpaque(ui.get("chatPanel"));

        ui.get("gamePanel").remove(ui.get("jLayeredPane"));
        bgPanel.add(ui.get("jLayeredPane"));
        ui.get("gamePanel").add(bgPanel);
      } else {
        log.error("error: no components");
      }
    } catch (Exception e) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.