1 / 4

JFrame

JFrame. JPanel. Rectangle. x, y width, height. addWindowListener ( ) getContentPane ( ). paintComponent ( ). Raami- Kuular. MouseListener. Mull. Mull. värv uusVärv ( ) joonistada ( ). värv joonistada( ). Tahvel. vann start paintComponent ( ). Raam. Vann.

iren
Download Presentation

JFrame

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. JFrame JPanel Rectangle x, y width, height addWindowListener( ) getContentPane( ) paintComponent( ) Raami- Kuular MouseListener Mull Mull värv uusVärv( ) joonistada( ) värv joonistada( ) . . . Tahvel vann start paintComponent( ) Raam Vann HiireKuular mullid . . . tahvel mousePressed() mouseReleased( mouseEntered() mouseExited() mouseClicked() lisada(Mull m) joonistadaServ( ) joonistadaMullid( ) Mullivann Mullivann Versioon 1

  2. Tahvel( ){// konstruktor start = new Point(40,40); // algnihe ekraanil setBackground(TAUST); addMouseListener(new HiireKuular(this)); }//konstruktor Mullivann. Versioon 1

  3. import java.awt.*; // --> Point import java.awt.event.*; // --> MouseListener, // MouseEvent class HiireKuular implements MouseListener{ Tahvel tahvel; // tahvel, millelt hiireklõpsud HiireKuular(Tahvel t){// konstruktor tahvel = t; }//konstruktor public void mousePressed(MouseEvent e){} public void mouseReleased(MouseEvent e){} public void mouseEntered(MouseEvent e){} public void mouseExited(MouseEvent e){} Mullivann. Versioon 1

  4. public void mouseClicked(MouseEvent e){ // hiireklõpsu koht: Point p = new Point(e.getX( ), e.getY( )); if(e.isMetaDown( )) return; // klõpsatud parem klahv if(e.isAltDown( )) return; // klõpsatud keskmine // oli vasak klahv, teha hiire kohale uus mull: Mull m = new Mull( p.x-tahvel.start.x, p.y-tahvel.start.y); // muuta värvi ja suurust: int juhu = p.x%13; // "juhuslik" for(int i = 0; i < juhu ; i++) m.uusVärv(); m.height += juhu; m.width += juhu; tahvel.vann.lisada(m); tahvel.repaint(); }//MouseClicked }//HiireKuular Mullivann. Versioon 1

More Related