IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Interfaces Graphiques en Java Discussion :

problème avec OKCancelDialog (java)


Sujet :

Interfaces Graphiques en Java

  1. #1
    Futur Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Mars 2013
    Messages
    13
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : Maroc

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Mars 2013
    Messages : 13
    Points : 7
    Points
    7
    Par défaut problème avec OKCancelDialog (java)
    SALUT
    j'ai un petit problème : j'ai réaliser des interfaces graphiques sur okCancelDialog et je veux savoir comment passer d'une interface (N°1) à une autre (N°2) cliquant sur un bouton qui se situer dans N°1
    Merci à tous

  2. #2
    Modérateur

    Homme Profil pro
    Développeur java, access, sql server
    Inscrit en
    Octobre 2005
    Messages
    2 710
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Val de Marne (Île de France)

    Informations professionnelles :
    Activité : Développeur java, access, sql server
    Secteur : Industrie

    Informations forums :
    Inscription : Octobre 2005
    Messages : 2 710
    Points : 4 794
    Points
    4 794
    Par défaut
    Du code svp ! (ma boule de cristal a un bug)
    Labor improbus omnia vincit un travail acharné vient à bout de tout - Ambroise Paré (1510-1590)

    Consulter sans modération la FAQ ainsi que les bons ouvrages : http://jmdoudoux.developpez.com/cours/developpons/java/

  3. #3
    Futur Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Mars 2013
    Messages
    13
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : Maroc

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Mars 2013
    Messages : 13
    Points : 7
    Points
    7
    Par défaut voilà le code
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    package pfe;
     
    import java.awt.event.ActionEvent;
    import java.awt.event.KeyEvent;
    import javax.swing.AbstractAction;
    import javax.swing.ActionMap;
    import javax.swing.InputMap;
    import javax.swing.JComponent;
    import javax.swing.KeyStroke;
     
    /**
     *
     * @author tinghir
     */
    public class TEST extends javax.swing.JDialog {
     
        /**
         * A return status code - returned if Cancel button has been pressed
         */
        public static final int RET_CANCEL = 0;
        /**
         * A return status code - returned if OK button has been pressed
         */
        public static final int RET_OK = 1;
     
        /**
         * Creates new form TEST
         */
        public TEST(java.awt.Frame parent, boolean modal) {
            super(parent, modal);
            initComponents();
     
            // Close the dialog when Esc is pressed
            String cancelName = "cancel";
            InputMap inputMap = getRootPane().getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT);
            inputMap.put(KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0), cancelName);
            ActionMap actionMap = getRootPane().getActionMap();
            actionMap.put(cancelName, new AbstractAction() {
     
                public void actionPerformed(ActionEvent e) {
                    doClose(RET_CANCEL);
                }
            });
        }
     
        /**
         * @return the return status of this dialog - one of RET_OK or RET_CANCEL
         */
        public int getReturnStatus() {
            return returnStatus;
        }
     
        /**
         * This method is called from within the constructor to initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is always
         * regenerated by the Form Editor.
         */
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">
        private void initComponents() {
     
            cancelButton = new javax.swing.JButton();
            desktopPane = new javax.swing.JDesktopPane();
            jButton1 = new javax.swing.JButton();
            jButton2 = new javax.swing.JButton();
            jButton3 = new javax.swing.JButton();
            jScrollPane1 = new javax.swing.JScrollPane();
            jTable1 = new javax.swing.JTable();
            jLabel3 = new javax.swing.JLabel();
            jLabel5 = new javax.swing.JLabel();
            jLabel4 = new javax.swing.JLabel();
            jLabel6 = new javax.swing.JLabel();
     
            addWindowListener(new java.awt.event.WindowAdapter() {
                public void windowClosing(java.awt.event.WindowEvent evt) {
                    closeDialog(evt);
                }
            });
     
            cancelButton.setText("Cancel");
            cancelButton.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    cancelButtonActionPerformed(evt);
                }
            });
     
            desktopPane.setBackground(new java.awt.Color(204, 204, 255));
     
            jButton1.setBackground(new java.awt.Color(0, 153, 255));
            jButton1.setFont(new java.awt.Font("Arial", 3, 18)); // NOI18N
            jButton1.setText("Saisir Devis");
            jButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton1ActionPerformed(evt);
                }
            });
            jButton1.setBounds(0, 260, 150, 50);
            desktopPane.add(jButton1, javax.swing.JLayeredPane.DEFAULT_LAYER);
     
            jButton2.setBackground(new java.awt.Color(0, 153, 255));
            jButton2.setFont(new java.awt.Font("Arial", 3, 18)); // NOI18N
            jButton2.setText("Livraison");
            jButton2.setBounds(170, 260, 190, 50);
            desktopPane.add(jButton2, javax.swing.JLayeredPane.DEFAULT_LAYER);
     
            jButton3.setBackground(new java.awt.Color(0, 153, 255));
            jButton3.setFont(new java.awt.Font("Arial", 3, 18)); // NOI18N
            jButton3.setText("Commande");
            jButton3.setBounds(380, 260, 180, 50);
            desktopPane.add(jButton3, javax.swing.JLayeredPane.DEFAULT_LAYER);
     
            jTable1.setModel(new javax.swing.table.DefaultTableModel(
                new Object [][] {
                    {null, null, null, null},
                    {null, null, null, null},
                    {null, null, null, null},
                    {null, null, null, null},
                    {null, null, null, null},
                    {null, null, null, null},
                    {null, null, null, null},
                    {null, null, null, null},
                    {null, null, null, null},
                    {null, null, null, null},
                    {null, null, null, null},
                    {null, null, null, null},
                    {null, null, null, null},
                    {null, null, null, null},
                    {null, null, null, null},
                    {null, null, null, null},
                    {null, null, null, null}
                },
                new String [] {
                    "ID-Piece", "Prix", "Quantité", "Date Achat"
                }
            ) {
                Class[] types = new Class [] {
                    java.lang.Integer.class, java.lang.Float.class, java.lang.Integer.class, java.lang.String.class
                };
     
                public Class getColumnClass(int columnIndex) {
                    return types [columnIndex];
                }
            });
            jScrollPane1.setViewportView(jTable1);
     
            jScrollPane1.setBounds(0, 330, 570, 220);
            desktopPane.add(jScrollPane1, javax.swing.JLayeredPane.DEFAULT_LAYER);
     
            jLabel3.setIcon(new javax.swing.ImageIcon(getClass().getResource("/images/prcauto.png"))); // NOI18N
            jLabel3.setText("jLabel3");
            jLabel3.setBounds(0, 0, 580, 150);
            desktopPane.add(jLabel3, javax.swing.JLayeredPane.DEFAULT_LAYER);
     
            jLabel5.setIcon(new javax.swing.ImageIcon(getClass().getResource("/images/demande2.jpg"))); // NOI18N
            jLabel5.setText("jLabel5");
            jLabel5.setBounds(10, 160, 120, 90);
            desktopPane.add(jLabel5, javax.swing.JLayeredPane.DEFAULT_LAYER);
     
            jLabel4.setIcon(new javax.swing.ImageIcon(getClass().getResource("/images/Sans titre_1.png"))); // NOI18N
            jLabel4.setText("jLabel4");
            jLabel4.setBounds(180, 150, 180, 100);
            desktopPane.add(jLabel4, javax.swing.JLayeredPane.DEFAULT_LAYER);
     
            jLabel6.setIcon(new javax.swing.ImageIcon(getClass().getResource("/images/verifier-fichiers-recherche-icone-5761-96.png"))); // NOI18N
            jLabel6.setText("jLabel6");
            jLabel6.setBounds(420, 160, 100, 90);
            desktopPane.add(jLabel6, javax.swing.JLayeredPane.DEFAULT_LAYER);
     
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                    .addContainerGap(501, Short.MAX_VALUE)
                    .addComponent(cancelButton)
                    .addContainerGap())
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                    .addGroup(layout.createSequentialGroup()
                        .addContainerGap()
                        .addComponent(desktopPane, javax.swing.GroupLayout.DEFAULT_SIZE, 556, Short.MAX_VALUE)
                        .addContainerGap()))
            );
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                    .addContainerGap(491, Short.MAX_VALUE)
                    .addComponent(cancelButton)
                    .addContainerGap())
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                    .addGroup(layout.createSequentialGroup()
                        .addContainerGap()
                        .addComponent(desktopPane, javax.swing.GroupLayout.DEFAULT_SIZE, 503, Short.MAX_VALUE)
                        .addContainerGap()))
            );
     
            pack();
        }// </editor-fold>
     
        private void cancelButtonActionPerformed(java.awt.event.ActionEvent evt) {                                             
            doClose(RET_CANCEL);
        }                                            
     
        /**
         * Closes the dialog
         */
        private void closeDialog(java.awt.event.WindowEvent evt) {                             
            doClose(RET_CANCEL);
        }                            
     
        private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
            // TODO add your handling code here:
     
        }
     
        private void doClose(int retStatus) {
            returnStatus = retStatus;
            setVisible(false);
            dispose();
        }
     
        /**
         * @param args the command line arguments
         */
        public static void main(String args[]) {
            /*
             * Set the Nimbus look and feel
             */
            //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
            /*
             * If Nimbus (introduced in Java SE 6) is not available, stay with the
             * default look and feel. For details see
             * <a href="http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html" target="_blank">http://download.oracle.com/javase/tu...feel/plaf.html</a>
             */
            try {
                for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                    if ("Nimbus".equals(info.getName())) {
                        javax.swing.UIManager.setLookAndFeel(info.getClassName());
                        break;
                    }
                }
            } catch (ClassNotFoundException ex) {
                java.util.logging.Logger.getLogger(TEST.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (InstantiationException ex) {
                java.util.logging.Logger.getLogger(TEST.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (IllegalAccessException ex) {
                java.util.logging.Logger.getLogger(TEST.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (javax.swing.UnsupportedLookAndFeelException ex) {
                java.util.logging.Logger.getLogger(TEST.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            }
            //</editor-fold>
     
            /*
             * Create and display the dialog
             */
            java.awt.EventQueue.invokeLater(new Runnable() {
     
                public void run() {
                    TEST dialog = new TEST(new javax.swing.JFrame(), true);
                    dialog.addWindowListener(new java.awt.event.WindowAdapter() {
     
                        @Override
                        public void windowClosing(java.awt.event.WindowEvent e) {
                            System.exit(0);
                        }
                    });
                    dialog.setVisible(true);
                }
            });
        }
        // Variables declaration - do not modify
        private javax.swing.JButton cancelButton;
        private javax.swing.JDesktopPane desktopPane;
        private javax.swing.JButton jButton1;
        private javax.swing.JButton jButton2;
        private javax.swing.JButton jButton3;
        private javax.swing.JLabel jLabel3;
        private javax.swing.JLabel jLabel4;
        private javax.swing.JLabel jLabel5;
        private javax.swing.JLabel jLabel6;
        private javax.swing.JScrollPane jScrollPane1;
        private javax.swing.JTable jTable1;
        // End of variables declaration
        private int returnStatus = RET_CANCEL;
    }

  4. #4
    Futur Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Mars 2013
    Messages
    13
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : Maroc

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Mars 2013
    Messages : 13
    Points : 7
    Points
    7
    Par défaut
    c au niveau de ce bouton que je veux faire apparaitre de la classe(test2) cliquant sur ce bouton :
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {


    }

  5. #5
    Modérateur

    Homme Profil pro
    Développeur java, access, sql server
    Inscrit en
    Octobre 2005
    Messages
    2 710
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Val de Marne (Île de France)

    Informations professionnelles :
    Activité : Développeur java, access, sql server
    Secteur : Industrie

    Informations forums :
    Inscription : Octobre 2005
    Messages : 2 710
    Points : 4 794
    Points
    4 794
    Par défaut
    si tu veux faire "apparaître" la classe test2 :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
    new test2();
    }
    maintenant de quelle nature est test2 ?
    JDialog ?, JFrame ? ...
    Labor improbus omnia vincit un travail acharné vient à bout de tout - Ambroise Paré (1510-1590)

    Consulter sans modération la FAQ ainsi que les bons ouvrages : http://jmdoudoux.developpez.com/cours/developpons/java/

  6. #6
    Futur Membre du Club
    Femme Profil pro
    Étudiant
    Inscrit en
    Mars 2013
    Messages
    13
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : Maroc

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Mars 2013
    Messages : 13
    Points : 7
    Points
    7
    Par défaut ENFIN
    j'ai trouvé la solution c que dans TEST

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
     private void DerActionPerformed(java.awt.event.ActionEvent evt) {                                    
     
     new test2(null,rootPaneCheckingEnabled);
    }
    et mettre dans le panel test2

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    setVisible(true); // (dans la methode actionparformed)

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Problème avec le Java installé
    Par L'aigle de Carthage dans le forum Débuter avec Java
    Réponses: 10
    Dernier message: 20/08/2011, 21h27
  2. Problème avec le Java heap space
    Par Viscapon dans le forum JSF
    Réponses: 5
    Dernier message: 18/05/2009, 17h42
  3. Problème avec NamingContext.java:1448
    Par bga_O dans le forum GWT et Vaadin
    Réponses: 0
    Dernier message: 27/04/2009, 14h43
  4. Problème avec Spring : java.io.FileNotFoundException
    Par lionel84 dans le forum Spring
    Réponses: 6
    Dernier message: 29/08/2008, 09h59
  5. problème avec les .java compilés
    Par root76 dans le forum Eclipse Java
    Réponses: 5
    Dernier message: 05/05/2006, 19h14

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo