]> git.mxchange.org Git - addressbook-lib.git/blobdiff - Addressbook/src/org/mxchange/addressbook/client/gui/AddressbookFrame.java
Introduced more methods + added first dialog call (yes, it is still visible by startu...
[addressbook-lib.git] / Addressbook / src / org / mxchange / addressbook / client / gui / AddressbookFrame.java
index 92e8dfe375646bba016972fa4d2fc863ae1ce076..ea74026336507034521e9e9ae1c67eebd33d29b8 100644 (file)
@@ -46,6 +46,7 @@ import javax.swing.table.TableModel;
 import org.mxchange.addressbook.BaseFrameworkSystem;
 import org.mxchange.addressbook.application.AddressbookApplication;
 import org.mxchange.addressbook.client.Client;
+import org.mxchange.addressbook.contact.Contact;
 import org.mxchange.addressbook.contact.Gender;
 import org.mxchange.addressbook.exceptions.FrameAlreadyInitializedException;
 import org.mxchange.addressbook.model.contact.ContactTableModel;
@@ -140,6 +141,24 @@ public class AddressbookFrame extends BaseFrameworkSystem implements ClientFrame
                this.setClient(client);
        }
 
+       @Override
+       public Contact doEnterOwnData () {
+               // Is the "add contact" window visible?
+               if (this.addContact.isVisible()) {
+                       // Something bad happened
+                       throw new IllegalStateException("Window addContact is already visible.");
+               }
+
+               // Disable main window
+               this.frame.setEnabled(false);
+
+               // Make other window visible
+               this.addContact.setVisible(true);
+
+               // Return value is not supported
+               return null;
+       }
+
        /**
         * Shutdown this frame
         */
@@ -149,6 +168,19 @@ public class AddressbookFrame extends BaseFrameworkSystem implements ClientFrame
                this.updateStatus("shutdown"); //NOI18N
        }
 
+
+       /**
+        * Enables main window (frame)
+        */
+       @Override
+       public void enableMainWindow () {
+               // Enable it again
+               this.frame.setEnabled(true);
+
+               // Request focus for this window
+               this.frame.requestFocus();
+       }
+
        /**
         * Setups the frame, do not set isInitialized here
         *
@@ -262,6 +294,12 @@ public class AddressbookFrame extends BaseFrameworkSystem implements ClientFrame
                return title;
        }
 
+       /**
+        * Initializes "add" and "cancel" buttons
+        */
+       private void initAddCancelButtons () {
+       }
+
        /**
         * Initializes "add contact" dialog
         */
@@ -284,32 +322,58 @@ public class AddressbookFrame extends BaseFrameworkSystem implements ClientFrame
                // Initial dimension
                this.addContact.setSize(500, 500);
 
+               // And it is not resizeable
+               this.addContact.setResizable(false);
+
                /*
                 * Add listener which asks for confirmation, if data has been entered
                 * but not saved yet. The user may appriciate this ... ;-)
                 *
                 * @TODO Unfinished
                 */
+               this.addContact.addWindowListener(new WindowAdapter() {
+                       /**
+                        * Invoked when a window has been closed.
+                        */
+                       @Override
+                       public void windowClosed (final WindowEvent e) {
+                               // Enable main window again
+                               AddressbookFrame.getSelfInstance(null).enableMainWindow();
+                       }
+
+                       /**
+                        * Invoked when a window is in the process of being closed. The
+                        * close operation can be overridden at this point.
+                        */
+                       @Override
+                       public void windowClosing (final WindowEvent e) {
+                               e.getWindow().dispose();
+                       }
+               });
+
                // Init 3 panels:
                // 1) "name" panel
-               initNameDataPanel();
+               initNameDataPanel(this.addContact);
 
                // 2) "address" panel
-               initAddressDataPanel();
+               initAddressDataPanel(this.addContact);
 
                // 3) "other" panel
-               initOtherDataPanel();
+               initOtherDataPanel(this.addContact);
+
+               // 4) "Add" and "Cancel" buttons
+               initAddCancelButtons();
 
                // x)Only for developing:
-               /*
-                * DEBUG:
-                */ this.addContact.setVisible(true);
+               /* DEBUG: */ this.addContact.setVisible(true);
        }
 
        /**
         * Initializes address panel
+        *
+        * @param dialog A JDialog instance to this components to
         */
-       private void initAddressDataPanel () {
+       private void initAddressDataPanel (final JDialog dialog) {
                // Panel "address" input boxes
                JPanel addressPanel = new JPanel();
                addressPanel.setLayout(new BoxLayout(addressPanel, BoxLayout.Y_AXIS));
@@ -437,7 +501,7 @@ public class AddressbookFrame extends BaseFrameworkSystem implements ClientFrame
                addressPanel.add(zipCityPanel);
 
                // Add panel to dialog
-               this.addContact.add(addressPanel);
+               dialog.add(addressPanel);
        }
 
        /**
@@ -584,8 +648,10 @@ public class AddressbookFrame extends BaseFrameworkSystem implements ClientFrame
 
        /**
         * Initializes name panel
+        *
+        * @param dialog A JDialog instance to this components to
         */
-       private void initNameDataPanel () {
+       private void initNameDataPanel (final JDialog dialog) {
                // Panel "name" input boxes
                JPanel namePanel = new JPanel();
                namePanel.setLayout(new BoxLayout(namePanel, BoxLayout.Y_AXIS));
@@ -651,13 +717,25 @@ public class AddressbookFrame extends BaseFrameworkSystem implements ClientFrame
                namePanel.add(fPanel);
 
                // Finally add panel to dialog
-               this.addContact.add(namePanel);
+               dialog.add(namePanel);
        }
 
        /**
         * Initializes "other" data panel
+        *
+        * @param dialog A JDialog instance to this components to
+        * @todo Fill this with life
         */
-       private void initOtherDataPanel () {
+       private void initOtherDataPanel (final JDialog dialog) {
+               // Panel "other" input boxes
+               JPanel otherPanel = new JPanel();
+               otherPanel.setLayout(new BoxLayout(otherPanel, BoxLayout.Y_AXIS));
+
+               // Set border to titled version
+               otherPanel.setBorder(new TitledBorder(this.generateBorderTitle("other"))); //NOI18N
+
+               // Finally add panel to dialog
+               dialog.add(otherPanel);
        }
 
        /**