Package util.ui

Examples of util.ui.ProgramReceiveTargetSelectionPanel


      timeZonePanel.add(mTimeZoneLabel);
      timeZonePanel.add(mTimeZones);
     
      pb.add(timeZonePanel, cc.xyw(3,26,3));
     
      mProgramReceiveTargetSelection = new ProgramReceiveTargetSelectionPanel(UiUtilities.getLastModalChildOf(CapturePlugin.getInstance().getSuperFrame()),
          mData.getProgramReceiveTargets(),null,CapturePlugin.getInstance(),true,mLocalizer.msg("sendToTitle","Send scheduled programs to:"));
      mProgramReceiveTargetSelection.addChangeListener(this);
      pb.add(mProgramReceiveTargetSelection, cc.xyw(1,28,5));
     
      // add ChangeListener to the spinners
View Full Code Here


   *
   * @return util.ui.ProgramReceiveTargetSelectionPanel
   */
  private ProgramReceiveTargetSelectionPanel getPassOnComponent() {
    if (passOnComponent == null) {
      passOnComponent = new ProgramReceiveTargetSelectionPanel(UiUtilities.getLastModalChildOf(CapturePlugin
          .getInstance().getSuperFrame()), configuration.getReceiveTargets(), null, CapturePlugin.getInstance(), false,
          null);
    }
    return passOnComponent;
  }
View Full Code Here

               }
            }
        });
        extendedPanel.add(select, cc.xy(6, extendedPanel.getRow()));

        mProgramReceiveTargetSelection = new ProgramReceiveTargetSelectionPanel(UiUtilities.getLastModalChildOf(CapturePlugin.getInstance().getSuperFrame()),
            mConfig.getProgramReceiveTargets(),null,CapturePlugin.getInstance(),true,mLocalizer.msg("sendToTitle","Send scheduled programs to:"));

        extendedPanel.addRow();
        extendedPanel.addRow();
        extendedPanel.add(mProgramReceiveTargetSelection, cc.xyw(1,extendedPanel.getRow(),7));
View Full Code Here

TOP

Related Classes of util.ui.ProgramReceiveTargetSelectionPanel

Copyright © 2018 www.massapicom. 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.