Here you can find the source of addButton(Container container, String label, int mnemonic, String tooltip, String placement, boolean debug)
Parameter | Description |
---|---|
container | - parent container |
label | - button label |
mnemonic | - button mnemonic |
tooltip | - button tool tip |
placement | - TableLayout placement in parent container |
debug | - turn on/off red debug borders |
public static JButton addButton(Container container, String label, int mnemonic, String tooltip, String placement, boolean debug)
//package com.java2s; /*// w w w . ja v a 2s . c o m * ome.formats.importer.gui.GuiCommonElements * *------------------------------------------------------------------------------ * Copyright (C) 2006-2008 University of Dundee. All rights reserved. * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * *------------------------------------------------------------------------------ */ import java.awt.Color; import java.awt.Container; import javax.swing.BorderFactory; import javax.swing.JButton; public class Main { /** * Add a button * * @param container - parent container * @param label - button label * @param mnemonic - button mnemonic * @param tooltip - button tool tip * @param placement - TableLayout placement in parent container * @param debug - turn on/off red debug borders * @return JButton */ public static JButton addButton(Container container, String label, int mnemonic, String tooltip, String placement, boolean debug) { JButton button = new JButton(label); button.setMnemonic(mnemonic); button.setToolTipText(tooltip); button.setOpaque(!getIsMac()); container.add(button, placement); if (debug == true) button.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createLineBorder(Color.red), button.getBorder())); return button; } /** * @return true if using a mac */ public static boolean getIsMac() { String osName = System.getProperty("os.name"); return osName.startsWith("Mac OS"); } }