Setting : hidden binary setting tab in setting dialog 96/28096/1
authorheeyoung <heeyoung1008.hwang@samsung.com>
Fri, 26 Sep 2014 05:23:26 +0000 (14:23 +0900)
committerheeyoung <heeyoung1008.hwang@samsung.com>
Fri, 26 Sep 2014 05:23:26 +0000 (14:23 +0900)
comment : HIDDEN BINARY SETTING PAGE

Change-Id: I8ff1597b28c61e1aedcf08c8d8a47342119346fd
Signed-off-by: heeyoung <heeyoung1008.hwang@samsung.com>
org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/ui/toolbar/setting/SettingDialog.java

index 7eb0a23..1ef5645 100644 (file)
@@ -213,9 +213,10 @@ public class SettingDialog extends DAMessageBox {
                                tabView.getContentComposite(), SWT.NONE);
                tabView.addView(settingPage, false);
 
-               DABaseComposite binarySettings = new SettingDialogBinarySettingsPage(
-                               tabView.getContentComposite(), SWT.NONE);
-               tabView.addView(binarySettings, false);
+//             comment : HIDDEN BINARY SETTING PAGE            
+//             DABaseComposite binarySettings = new SettingDialogBinarySettingsPage(
+//                             tabView.getContentComposite(), SWT.NONE);
+//             tabView.addView(binarySettings, false);
                
                // button composite
                buttonContentsComp = new Composite(shell, SWT.NONE);
@@ -241,33 +242,34 @@ public class SettingDialog extends DAMessageBox {
                        }
                });
        
-               binarySettings.addListener(SWT.Show, new Listener() {
-
-                       @Override
-                       public void handleEvent(Event event) {
-                               FormData data = (FormData) applyButton.getLayoutData();
-                               data.width = 0;
-
+//             comment : HIDDEN BINARY SETTING PAGE
+//             binarySettings.addListener(SWT.Show, new Listener() {
+//
+//                     @Override
+//                     public void handleEvent(Event event) {
+//                             FormData data = (FormData) applyButton.getLayoutData();
+//                             data.width = 0;
+//
 //                             data = (FormData) revertButton.getLayoutData();
 //                             data.width = 0;
-
-                               buttonContentsComp.layout();
-                       }
-               });
-
-               binarySettings.addListener(SWT.Hide, new Listener() {
-
-                       @Override
-                       public void handleEvent(Event event) {
-                               FormData data = (FormData) applyButton.getLayoutData();
-                               data.width = 100;
-
+//
+//                             buttonContentsComp.layout();
+//                     }
+//             });
+//
+//             binarySettings.addListener(SWT.Hide, new Listener() {
+//
+//                     @Override
+//                     public void handleEvent(Event event) {
+//                             FormData data = (FormData) applyButton.getLayoutData();
+//                             data.width = 100;
+//
 //                             data = (FormData) revertButton.getLayoutData();
 //                             data.width = 100;
-
-                               buttonContentsComp.layout();
-                       }
-               });
+//
+//                             buttonContentsComp.layout();
+//                     }
+//             });
 
                
                closeButton = new DAButton(buttonContentsComp, SWT.NONE);