tp
This commit is contained in:
BIN
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/Changement.class
Normal file
BIN
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/Changement.class
Normal file
Binary file not shown.
@@ -0,0 +1,19 @@
|
||||
import java.awt.*;
|
||||
import javax.swing.*;
|
||||
import java.util.*;
|
||||
import java.io.*;
|
||||
|
||||
public class Changement{
|
||||
|
||||
ClassLoader loader = Thread.currentThread().getContextClassLoader();
|
||||
InputStream file = loader.getResourceAsStream("Main.java");
|
||||
InputStream file2 = loader.getResourceAsStream("Listeimage.java");
|
||||
static public void fenetreCliquer(int LR){
|
||||
if (LR==1){
|
||||
Main.fenetre.pan.card.next(Main.fenetre.pan);
|
||||
}else {
|
||||
Main.fenetre.pan.card.previous(Main.fenetre.pan);
|
||||
}
|
||||
Main.fenetre.revalidate();
|
||||
}
|
||||
}
|
||||
BIN
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/Fenetre.class
Normal file
BIN
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/Fenetre.class
Normal file
Binary file not shown.
23
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/Fenetre.java
Normal file
23
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/Fenetre.java
Normal file
@@ -0,0 +1,23 @@
|
||||
import java.awt.*;
|
||||
import javax.swing.*;
|
||||
import java.util.*;
|
||||
import java.io.*;
|
||||
|
||||
public class Fenetre extends JFrame{
|
||||
|
||||
static Galerie pan = new Galerie();
|
||||
private ClassLoader loader = Thread.currentThread().getContextClassLoader();
|
||||
private InputStream file = loader.getResourceAsStream("Galerie.java");
|
||||
static int x;
|
||||
|
||||
public Fenetre(){
|
||||
for (x=0; x<=4; x++) {
|
||||
pan.add(Listeimage.liste[x]);
|
||||
}
|
||||
this.setSize(250, 250);
|
||||
this.setLocation(250, 250);
|
||||
this.addMouseListener(pan);
|
||||
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||||
this.setContentPane(pan);
|
||||
}
|
||||
}
|
||||
BIN
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/Galerie.class
Normal file
BIN
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/Galerie.class
Normal file
Binary file not shown.
39
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/Galerie.java
Normal file
39
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/Galerie.java
Normal file
@@ -0,0 +1,39 @@
|
||||
import java.awt.*;
|
||||
import javax.swing.*;
|
||||
import java.awt.event.*;
|
||||
import java.util.*;
|
||||
import java.io.*;
|
||||
|
||||
public class Galerie extends JPanel implements MouseListener{
|
||||
|
||||
ClassLoader loader = Thread.currentThread().getContextClassLoader();
|
||||
InputStream file = loader.getResourceAsStream("Changement.java");
|
||||
static CardLayout card = new CardLayout();
|
||||
|
||||
public Galerie(){
|
||||
super();
|
||||
this.setLayout(card);
|
||||
|
||||
}
|
||||
|
||||
public void mouseClicked(MouseEvent e){
|
||||
int x = e.getX();
|
||||
if (x <= this.getWidth()/5){
|
||||
Changement.fenetreCliquer(0);
|
||||
}else if(x >= (this.getWidth()/5)*4){
|
||||
Changement.fenetreCliquer(1);
|
||||
}
|
||||
}
|
||||
|
||||
public void mouseEntered(MouseEvent evenement){
|
||||
}
|
||||
|
||||
public void mouseExited(MouseEvent evenement){
|
||||
}
|
||||
|
||||
public void mousePressed(MouseEvent evenement){
|
||||
}
|
||||
|
||||
public void mouseReleased(MouseEvent evenement){
|
||||
}
|
||||
}
|
||||
BIN
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/Listeimage.class
Normal file
BIN
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/Listeimage.class
Normal file
Binary file not shown.
@@ -0,0 +1,18 @@
|
||||
import java.awt.*;
|
||||
import javax.swing.*;
|
||||
import java.awt.event.*;
|
||||
import java.util.*;
|
||||
import java.io.*;
|
||||
|
||||
public class Listeimage{
|
||||
|
||||
ClassLoader loader = Thread.currentThread().getContextClassLoader();
|
||||
|
||||
static JLabel image1 = new JLabel(new ImageIcon("./img/image1.jpg"));
|
||||
static JLabel image2 = new JLabel(new ImageIcon("./img/image2.jpg"));
|
||||
static JLabel image3 = new JLabel(new ImageIcon("./img/image3.jpg"));
|
||||
static JLabel image4 = new JLabel(new ImageIcon("./img/image4.jpg"));
|
||||
static JLabel image5 = new JLabel(new ImageIcon("./img/image5.jpg"));
|
||||
static JLabel[] liste = {image1, image2, image3, image4, image5};
|
||||
static int index=0;
|
||||
}
|
||||
BIN
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/Main.class
Normal file
BIN
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/Main.class
Normal file
Binary file not shown.
14
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/Main.java
Normal file
14
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/Main.java
Normal file
@@ -0,0 +1,14 @@
|
||||
import java.awt.*;
|
||||
import javax.swing.*;
|
||||
import java.util.*;
|
||||
import java.io.*;
|
||||
|
||||
public class Main{
|
||||
|
||||
static Fenetre fenetre = new Fenetre();
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
fenetre.setVisible(true);
|
||||
}
|
||||
}
|
||||
BIN
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/img/image1.jpg
Normal file
BIN
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/img/image1.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.7 KiB |
BIN
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/img/image2.jpg
Normal file
BIN
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/img/image2.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.6 KiB |
BIN
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/img/image3.jpg
Normal file
BIN
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/img/image3.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.3 KiB |
BIN
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/img/image4.jpg
Normal file
BIN
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/img/image4.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
BIN
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/img/image5.jpg
Normal file
BIN
DEV3.1/TP2:Transitions/GalerieVersionCardLayout/img/image5.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.7 KiB |
Reference in New Issue
Block a user