495496497498499500501502503504505
JPanel p = new JPanel(new FlowLayout(FlowLayout.LEFT, 5, 5)); p.add(l); p.add(ccl); contextMenu.add(p); } else { contextMenu.addSeparator(); } // PPane の場合はStampMenuを追加する if (getMyRole().equals(IInfoModel.ROLE_P)) { //contextMenu.addSeparator();
105106107108109110111112113114115
action.putValue(Action.SMALL_ICON, WindowSupport.getIcon(ws.getFrame())); popup.add(action); count++; } } if (count != 0) { popup.addSeparator(); count = 0; } // インスペクタを popup に追加 for (WindowSupport ws : windows) { action = ws.getWindowAction(); name = action.getValue(Action.NAME).toString();
120121122123124125126127128129130
} } // インスペクタウインドウ整列 if (count != 0) { popup.addSeparator(); count = 0; Action a = new AbstractAction() { private static final long serialVersionUID = 1L; @Override