java Programming Glossary: getheight
Show an animated BG in Swing http://stackoverflow.com/questions/10836832/show-an-animated-bg-in-swing super.paintComponent g g.drawImage this.image 0 0 getWidth getHeight this public static void main String args throws MalformedURLException..
Java: maintaining aspect ratio of JPanel background image http://stackoverflow.com/questions/11959758/java-maintaining-aspect-ratio-of-jpanel-background-image image super.paintComponent g g.drawImage img 0 0 getWidth getHeight this g.drawImage img 0 0 this EDIT I should mention that I.. getScaledFactorToFit new Dimension image.getWidth image.getHeight getSize int scaledWidth image.getWidth scale int scaledHeight.. 1d getScaleFactorToFit new Dimension image.getWidth image.getHeight getSize int scaleWidth int Math.round image.getWidth scaleFactor..
Java Bouncing Ball http://stackoverflow.com/questions/13022754/java-bouncing-ball x vx 0 x diameter vx getWidth vx 1 if y vy 0 y diameter vy getHeight vy 1 x vx y vy private void start while isVisible try Thread.sleep.. .getWidth int y int Math.round Math.random getParent .getHeight setLocation x y catch InterruptedException exp exp.printStackTrace.. .getWidth vx 1 if y vy 0 y diameter vy getParent .getHeight vy 1 x vx y vy Update the size and location... setSize getPreferredSize..
Threads with Key Bindings http://stackoverflow.com/questions/13999506/threads-with-key-bindings 500l Entity ballEntity new Entity gp.getWidth 2 gp.getHeight 2 ballEntityImages ballEntityTimings ballEntity.RIGHT true.. break if circular g2.fillRect 0 0 img.getWidth img.getHeight else g2.fillOval 0 0 img.getWidth img.getHeight g2.dispose.. img.getHeight else g2.fillOval 0 0 img.getWidth img.getHeight g2.dispose return img Starts a new thread and runs the game..
JFormattedTextField is not properly cleared http://stackoverflow.com/questions/4148336/jformattedtextfield-is-not-properly-cleared paintComponent Graphics g int w this.getWidth int h this.getHeight g.setColor this.getBackground int dx1 w width height 4 int dx2.. ActionEvent e popup.show JDigit.this getWidth width getHeight 2 private class SelectAction extends AbstractAction private..
Stretch a JLabel text http://stackoverflow.com/questions/8281886/stretch-a-jlabel-text return new Dimension image.getWidth 2 image.getHeight 2 @Override protected void paintComponent Graphics g super.paintComponent.. g super.paintComponent g g.drawImage image 0 0 getWidth getHeight null private BufferedImage createImage String label Font font.. g2d.setColor getBackground g2d.fillRect 0 0 bi.getWidth bi.getHeight g2d.setColor getForeground layout.draw g2d 0 r.y g2d.dispose..
Passing current Date http://stackoverflow.com/questions/8614972/passing-current-date c JComponent con x 0 y 0 w con.getWidth h con.getHeight con con.getParent super.addDirtyRegion c x y w h frame.setDefaultCloseOperation.. paint Graphics g if img null img.getWidth getWidth img.getHeight getHeight img new BufferedImage getWidth getHeight BufferedImage.TYPE_INT_ARGB.. g if img null img.getWidth getWidth img.getHeight getHeight img new BufferedImage getWidth getHeight BufferedImage.TYPE_INT_ARGB..
rotating coordinate plane for data and text in Java http://stackoverflow.com/questions/9371961/rotating-coordinate-plane-for-data-and-text-in-java myDiffs.add 31.0 DataPanel myPP new DataPanel myDiffs this.getHeight this.getWidth this.add myPP this.setVisible true Display the.. data about plotting environment and about text int height getHeight int width getWidth ins getInsets Graphics2D g2d Graphics2D g.. fontMetrics.stringWidth xString int xStrHeight fontMetrics.getHeight String yString y axis label int yStrWidth fontMetrics.stringWidth..
Something seems wrong with the layout, JButton showing unexpected behaviour at resize of the window http://stackoverflow.com/questions/9849950/something-seems-wrong-with-the-layout-jbutton-showing-unexpected-behaviour-at-r int getY if y 0 positiveY true else if y drawingArea.getHeight diameter positiveY false return calculateY private int calculateY.. g g.setColor backgroundColor g.fillRect 0 0 getWidth getHeight g.setColor foregroundColor g.fillOval x y ballDiameter ballDiameter.. int getY if y 0 positiveY true else if y drawingArea.getHeight diameter positiveY false return calculateY private int calculateY..
|