⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 infopanel.java

📁 客户端浏览医学图像的jsp源代码。可用于临床工作站。
💻 JAVA
字号:
/*
 * InfoPanel.java - 拲栚夋憸偺忣曬傪昞帵偡傞僷僱儖
 *
 * Copyright(C) 2000, Nagoya Institute of Technology, Iwata laboratory and Takahiro Katoji
 * http://mars.elcom.nitech.ac.jp/dicom/
 *
 * @author	Takahiro Katoji(mailto:katoco@mars.elcom.nitech.ac.jp)
 * @version
 *
 */

package dicomviewer;

import java.awt.*;

public class InfoPanel extends Panel{

  DicomData dicomData;

  // 儗僀傾僂僩
  GridBagLayout layout  = new GridBagLayout();
  GridBagConstraints c  = new GridBagConstraints();
  // 儔儀儖
  Label label1          = new Label("Patient Info.");
  Label id_L            = new Label("ID");    // (0010,0020)
  Label id_F            = new Label();        // 幚嵺偺拞恎偼偙偙偵擖傟傞
  Label name_L          = new Label("Name");  // (0010,0010)
  Label name_F          = new Label();
  Label age_L           = new Label("Age");   // (0010,1010)
  Label age_F           = new Label();
  Label sex_L           = new Label("Sex");   // (0010,0040)
  Label sex_F           = new Label();
  Label label2          = new Label("Study Info.");
  Label sid_L           = new Label("ID");    // (0020,0010)
  Label sid_F           = new Label();
  Label date_L          = new Label("Date");  // (0008,0020)
  Label date_F          = new Label();
  Label time_L          = new Label("Time");  // (0008,0030)
  Label time_F          = new Label();

  // 僐儞僗僩儔僋僞
  public InfoPanel() {
    super();
    try  {
      jbInit();
    }
    catch(Exception e) {
      e.printStackTrace();
    }
  }

  // 僐儞億乕僱儞僩偺弶婜壔
  private void jbInit() throws Exception {
    this.setLayout(layout);
//    c.anchor = GridBagConstraints.WEST;
    c.fill = GridBagConstraints.HORIZONTAL;
    c.weightx =1;
    c.weighty =0;

    // 1峴栚
    c.gridx =0;
    c.gridy =0;
    c.gridwidth =2;
    layout.setConstraints(label1, c);
    this.add(label1);

    // 2峴栚
    c.gridx =0;
    c.gridy =1;
    c.gridwidth =2;
    layout.setConstraints(id_F, c);
    this.add(id_F);

    // 3峴栚
    c.gridx =0;
    c.gridy =2;
    c.gridwidth =2;
    layout.setConstraints(name_F, c);
    this.add(name_F);

    // 4峴栚
    c.gridx =0;
    c.gridy =3;
    c.gridwidth =1;
    layout.setConstraints(age_F, c);
    this.add(age_F);

    c.gridx =1;
    c.gridy =3;
    c.gridwidth =1;
    layout.setConstraints(sex_F, c);
    this.add(sex_F);

    // 5峴栚

    // 6峴栚
    c.gridx =0;
    c.gridy =5;
    c.gridwidth =2;
    layout.setConstraints(label2, c);
    this.add(label2);

    // 7峴栚
    c.gridx =0;
    c.gridy =6;
    c.gridwidth =2;
    layout.setConstraints(sid_F, c);
    this.add(sid_F);

    // 8峴栚
    c.gridx =0;
    c.gridy =7;
    c.gridwidth =2;
    layout.setConstraints(date_F, c);
    this.add(date_F);

    // 9峴栚
    c.gridx =0;
    c.gridy =8;
    c.gridwidth =2;
    layout.setConstraints(time_F, c);
    this.add(time_F);
  }

  // 僨乕僞傪僙僢僩偡傞
  public void setDicomData(DicomData dicomData) {
    this.dicomData = dicomData;
    setLabel(id_F, "(0010,0020)");
    setLabel(name_F, "(0010,0010)");
    setLabel(age_F, "(0010,1010)");
    setLabel(sex_F, "(0010,0040)");
    setLabel(sid_F, "(0020,0010)");
    setLabel(date_F, "(0008,0020)");
    setLabel(time_F, "(0008,0030)");
  }

  // tag偱抣傪挷傋偰儔儀儖傪彂偒姺偊傞
  private void setLabel(Label label, String tag) {
    // tag偑娷傑傟偰偄傞偐偳偆偐僠僃僢僋偡傞
    if(dicomData.isContain(tag)) {
      label.setText(dicomData.getAnalyzedValue(tag));
      label.setEnabled(true);
    }else {
      label.setText("none");
      label.setEnabled(false);
    }
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -