java.awt.Button.setFont()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(8.6k)|赞(0)|评价(0)|浏览(163)

本文整理了Java中java.awt.Button.setFont()方法的一些代码示例,展示了Button.setFont()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Button.setFont()方法的具体详情如下:
包路径:java.awt.Button
类名称:Button
方法名:setFont

Button.setFont介绍

暂无

代码示例

代码示例来源:origin: wildfly/wildfly

public MessageDialog(Frame parent, String sender, String msg) {
super(parent, "Msg from " + sender);
Button ok=new Button("OK");
setLayout(new BorderLayout());
setBackground(Color.white);
ok.setFont(default_font);
text.setFont(default_font);
text.setEditable(false);
text.setText(msg);
ok.addActionListener(this);

add("Center", text);
add("South", ok);

setSize(300, 150);
Point my_loc=parent.getLocation();
my_loc.x+=50;
my_loc.y+=150;
setLocation(my_loc);
Toolkit.getDefaultToolkit().beep();
show();
}

代码示例来源:origin: wildfly/wildfly

public SendDialog(Frame parent, Node dest, String src, RpcDispatcher disp) {
  super(parent, "Send message to " + dest.lbl + " at " + dest.addr, true);
  Panel p1=new Panel(), p2=new Panel();
  Button send=new Button("Send"), send_all=new Button("Send to all");
  Button cancel=new Button("Cancel");
  this.disp=disp;
  this.dest=dest;
  sender=src;
  send.setFont(default_font);
  send_all.setFont(default_font);
  cancel.setFont(default_font);
  msg.setFont(default_font);
  p1.setLayout(new BorderLayout());
  p1.add(msg);
  p2.setLayout(new FlowLayout());
  send.addActionListener(this);
  send_all.addActionListener(this);
  cancel.addActionListener(this);
  p2.add(send);
  p2.add(send_all);
  p2.add(cancel);
  add("Center", p1);
  add("South", p2);
  setSize(300, 150);
  Point my_loc=parent.getLocation();
  my_loc.x+=50;
  my_loc.y+=150;
  setLocation(my_loc);
  setVisible(true);
}

代码示例来源:origin: com.h2database/h2

startBrowser.setActionCommand("console");
startBrowser.addActionListener(this);
startBrowser.setFont(font);
mainPanel.add(startBrowser, constraintsButton);
frame.add(mainPanel, constraintsPanel);

代码示例来源:origin: wildfly/wildfly

add("Center", panel);
clear_button=new Button("Clear");
clear_button.setFont(default_font);
clear_button.addActionListener(this);
leave_button=new Button("Exit");
leave_button.setFont(default_font);
leave_button.addActionListener(this);
mbr_label=new Label("0 mbr(s)");

代码示例来源:origin: wildfly/wildfly

Panel p = new Panel();
leave_button = new Button("Exit");
leave_button.setFont(default_font);
leave_button.addActionListener(this);
mbr_label = new Label("1 mbr(s)");

代码示例来源:origin: wildfly/wildfly

public UserInfoDialog(Frame parent) {
  super(parent, "Input", true);
  setLayout(null);
  l.setFont(default_font);
  l.setSize(50, 30);
  l.setLocation(30, 50);
  name.setFont(default_font);
  name.setSize(150, 30);
  name.setLocation(90, 50);
  //name.selectAll();
  ok.setFont(default_font);
  ok.setSize(50, 30);
  ok.setLocation(30, 90);

  add(l);    add(name); add(ok);
  ok.addActionListener(this);
  setSize(300, 150);
  Point my_loc=parent.getLocation();
  my_loc.x+=50;
  my_loc.y+=150;
  setLocation(my_loc);
  show();
}

代码示例来源:origin: stackoverflow.com

Button[][] buttons = new Button[][]{{}}; // fill your buttons array
 for (Button[] bb : buttons) {
   for (Button b : bb) {
     if (BUTTON SHOULD BE BOLD) {
       Font font = b.getFont();
       Font bold = new Font(font.getName(), Font.BOLD, font.getSize());
       b.setFont(bold);
     }
   }
 }

代码示例来源:origin: net.imagej/ij

private void createListeners() {
  if (srcImp==null)
    return;
  ImagePlus.addImageListener(this);
  Roi.addRoiListener(this);
  if (live!=null) {
    Font font = live.getFont();
    live.setFont(new Font(font.getName(), Font.BOLD, font.getSize()));
    live.setForeground(Color.red);
  }
}

代码示例来源:origin: net.imagej/ij

private void removeListeners() {
  if (srcImp==null)
    return;
  ImagePlus.removeImageListener(this);
  Roi.removeRoiListener(this);
  if (live!=null) {
    Font font = live.getFont();
    live.setFont(new Font(font.getName(), Font.PLAIN, font.getSize()));
    live.setForeground(Color.black);
  }
}

代码示例来源:origin: imagej/ImageJA

private void createListeners() {
  if (srcImp==null)
    return;
  ImagePlus.addImageListener(this);
  Roi.addRoiListener(this);
  if (live!=null) {
    Font font = live.getFont();
    live.setFont(new Font(font.getName(), Font.BOLD, font.getSize()));
    live.setForeground(Color.red);
  }
}

代码示例来源:origin: imagej/ImageJA

private void removeListeners() {
  if (srcImp==null)
    return;
  ImagePlus.removeImageListener(this);
  Roi.removeRoiListener(this);
  if (live!=null) {
    Font font = live.getFont();
    live.setFont(new Font(font.getName(), Font.PLAIN, font.getSize()));
    live.setForeground(Color.black);
  }
}

代码示例来源:origin: net.imagej/ij

private void disableLivePlot() {
  if (IJ.debugMode) IJ.log("PlotWindow.disableLivePlot: "+srcImp);
  if (srcImp==null)
    return;
  if (bgThread!=null)
    bgThread.interrupt();
  bgThread = null;
  ImagePlus.removeImageListener(this);
  Roi.removeRoiListener(this);
  if (live != null) {
    Font font = live.getFont();
    live.setFont(new Font(font.getName(), Font.PLAIN, font.getSize()));
    live.setForeground(Color.black);
  }
}

代码示例来源:origin: imagej/ImageJA

private void disableLivePlot() {
  if (IJ.debugMode) IJ.log("PlotWindow.disableLivePlot: "+srcImp);
  if (srcImp==null)
    return;
  if (bgThread!=null)
    bgThread.interrupt();
  bgThread = null;
  ImagePlus.removeImageListener(this);
  Roi.removeRoiListener(this);
  if (live != null) {
    Font font = live.getFont();
    live.setFont(new Font(font.getName(), Font.PLAIN, font.getSize()));
    live.setForeground(Color.black);
  }
}

代码示例来源:origin: net.imagej/ij

private void enableLivePlot() {
  if (plotMaker==null)
    plotMaker = plot!=null?plot.getPlotMaker():null;
  if (plotMaker==null) return;
  srcImp = plotMaker.getSourceImage();
  if (srcImp==null)
    return;
  if (bgThread==null) {
    bgThread = new Thread(this, "Live Plot");
    bgThread.setPriority(Math.max(bgThread.getPriority()-3, Thread.MIN_PRIORITY));
    doUpdate = true;
    bgThread.start();
  }
  if (IJ.debugMode) IJ.log("PlotWindow.createListeners");
  ImagePlus.addImageListener(this);
  Roi.addRoiListener(this);
  Font font = live.getFont();
  live.setFont(new Font(font.getName(), Font.BOLD, font.getSize()));
  live.setForeground(Color.red);
}

代码示例来源:origin: sc.fiji/MTrackJ_

private Button addButton(final String label) {
  
  final Button b = new Button(label);
  b.setPreferredSize(new Dimension(86,22));
  b.setForeground(Color.black);
  b.setFont(dialogfont);
  b.addActionListener(this);
  b.addMouseListener(this);
  gbc.gridx = leftbutton ? 0 : 1;
  gbc.insets = new Insets(newblock?space:0,0,0,0);
  gbl.setConstraints(b,gbc);
  add(b);
  leftbutton = !leftbutton;
  if (leftbutton) {
    ++gbc.gridy;
    newblock = false;
  }
  return b;
}

代码示例来源:origin: zitmen/thunderstorm

private void removeListeners() {
  //IJ.log("removeListeners");
  if(srcImp == null) {
    return;
  }
  ImageCanvas canvas = srcImp.getCanvas();
  canvas.removeMouseListener(this);
  canvas.removeMouseMotionListener(this);
  canvas.removeKeyListener(this);
  ImagePlus.removeImageListener(this);
  Font font = live.getFont();
  live.setFont(new Font(font.getName(), Font.PLAIN, font.getSize()));
  live.setForeground(Color.black);
}

代码示例来源:origin: zitmen/thunderstorm

private void createListeners() {
  //IJ.log("createListeners");
  if(srcImp == null) {
    return;
  }
  ImageCanvas canvas = srcImp.getCanvas();
  if(canvas == null) {
    return;
  }
  canvas.addMouseListener(this);
  canvas.addMouseMotionListener(this);
  canvas.addKeyListener(this);
  ImagePlus.addImageListener(this);
  Font font = live.getFont();
  live.setFont(new Font(font.getName(), Font.BOLD, font.getSize()));
  live.setForeground(Color.red);
}

代码示例来源:origin: apache/activemq-artemis

public MessageDialog(Frame parent, String sender, String msg) {
super(parent, "Msg from " + sender);
Button ok=new Button("OK");
setLayout(new BorderLayout());
setBackground(Color.white);
ok.setFont(default_font);
text.setFont(default_font);
text.setEditable(false);
text.setText(msg);
ok.addActionListener(this);

add("Center", text);
add("South", ok);

setSize(300, 150);
Point my_loc=parent.getLocation();
my_loc.x+=50;
my_loc.y+=150;
setLocation(my_loc);
Toolkit.getDefaultToolkit().beep();
show();
}

代码示例来源:origin: apache/activemq-artemis

public MessageDialog(Frame parent, String sender, String msg) {
super(parent, "Msg from " + sender);
Button ok=new Button("OK");
setLayout(new BorderLayout());
setBackground(Color.white);
ok.setFont(default_font);
text.setFont(default_font);
text.setEditable(false);
text.setText(msg);
ok.addActionListener(this);

add("Center", text);
add("South", ok);

setSize(300, 150);
Point my_loc=parent.getLocation();
my_loc.x+=50;
my_loc.y+=150;
setLocation(my_loc);
Toolkit.getDefaultToolkit().beep();
show();
}

代码示例来源:origin: org.jboss.eap/wildfly-client-all

public MessageDialog(Frame parent, String sender, String msg) {
super(parent, "Msg from " + sender);
Button ok=new Button("OK");
setLayout(new BorderLayout());
setBackground(Color.white);
ok.setFont(default_font);
text.setFont(default_font);
text.setEditable(false);
text.setText(msg);
ok.addActionListener(this);

add("Center", text);
add("South", ok);

setSize(300, 150);
Point my_loc=parent.getLocation();
my_loc.x+=50;
my_loc.y+=150;
setLocation(my_loc);
Toolkit.getDefaultToolkit().beep();
show();
}

相关文章