Examples of UISWTView


Examples of org.gudy.azureus2.ui.swt.plugins.UISWTView

          //viewComposite.setBackground(parent.getDisplay().getSystemColor(SWT.COLOR_WIDGET_BACKGROUND));
          //viewComposite.setForeground(parent.getDisplay().getSystemColor(SWT.COLOR_WIDGET_FOREGROUND));

          boolean doGridLayout = true;
          if (iview instanceof UISWTView) {
            UISWTView swtView = (UISWTView) iview;
            if (swtView.getControlType() == UISWTViewCore.CONTROLTYPE_SKINOBJECT) {
              doGridLayout = false;
            }
          }
          if (doGridLayout) {
            GridLayout gridLayout = new GridLayout();
View Full Code Here

Examples of org.gudy.azureus2.ui.swt.plugins.UISWTView

              debug("Opening IRC channel " + channel + " on " + server
                  + " for user " + alias);
              UISWTInstance swtInstance = (UISWTInstance) instance;
              UISWTView[] openViews = swtInstance.getOpenViews(UISWTInstance.VIEW_MAIN);
              for (int i = 0; i < openViews.length; i++) {
                UISWTView view = openViews[i];
                // if only there was a way to tell if it was our IRC
                view.closeView();
              }

              swtInstance.openView(UISWTInstance.VIEW_MAIN, "IRC",
                  new String[] {
                    server,
View Full Code Here

Examples of org.gudy.azureus2.ui.swt.plugins.UISWTView

          parent.setBackgroundMode(SWT.INHERIT_NONE);

          Composite viewComposite = soContents.getComposite();
          boolean doGridLayout = true;
          if (iview instanceof UISWTView) {
            UISWTView swtView = (UISWTView) iview;
            if (swtView.getControlType() == UISWTViewCore.CONTROLTYPE_SKINOBJECT) {
              doGridLayout = false;
            }
          }
          //          viewComposite.setBackground(parent.getDisplay().getSystemColor(
          //              SWT.COLOR_WIDGET_BACKGROUND));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.