public interface IButtonsPanel
Modifier and Type | Field and Description |
---|---|
static int |
BUTTON_ACCEPT |
static int |
BUTTON_APPLY |
static int |
BUTTON_CANCEL |
static int |
BUTTON_CLOSE |
static int |
BUTTON_EXIT |
static int |
BUTTON_HIDEDETAILS |
static int |
BUTTON_LAST
Sirve para cuando se crean botones nuevos, saber el último número usado
internamente, así '
new_id = BUTTON_LAST + 1; ' podría ser
el índice del nuevo botón. |
static int |
BUTTON_NO |
static int |
BUTTON_PAUSE |
static int |
BUTTON_RESTART |
static int |
BUTTON_SAVE |
static int |
BUTTON_SEEDETAILS |
static int |
BUTTON_USR1 |
static int |
BUTTON_USR2 |
static int |
BUTTON_USR3 |
static int |
BUTTON_USR4 |
static int |
BUTTON_USR5 |
static int |
BUTTON_YES |
static int |
BUTTONS_ACCEPT |
static int |
BUTTONS_ACCEPTCANCEL |
static int |
BUTTONS_ACCEPTCANCELAPPLY |
static int |
BUTTONS_APPLYCLOSE |
static int |
BUTTONS_CANCEL |
static int |
BUTTONS_CLOSE |
static int |
BUTTONS_EXIT |
static int |
BUTTONS_NONE |
static int |
BUTTONS_YESNO |
Modifier and Type | Method and Description |
---|---|
void |
addAccept()
Añadir el boton Aceptar.
|
void |
addApply()
Añadir el boton Aplicar.
|
void |
addButton(String text,
int id)
Añadimos un botón definido por el usuario.
|
void |
addButtonPressedListener(ButtonsPanelListener listener)
Añadir el disparador de cuando se pulsa un botón.
|
void |
addCancel()
Añadir el boton Cancelar.
|
void |
addClose()
Añadir el boton Cerrar.
|
void |
addExit()
Añadir el boton Salir.
|
void |
addHideDetails()
Añadir el boton Ocultar detalles.
|
void |
addNo()
Añadir el boton No.
|
void |
addPause()
Añadir el boton Pausar.
|
void |
addRestart()
Añadir el boton Reanudar.
|
void |
addSave()
Añadir el boton Guardar.
|
void |
addSeeDetails()
Añadir el boton Ver detalles.
|
void |
addYes()
Añadir el boton Sí.
|
JButton |
getButton(int id)
Obtener un botón por su Entero
|
Object[] |
getButtonPressedListeners()
Devuelve el array de listeners del componente
|
String |
getButtonText(int id)
Returns the text of the button identified by
id . |
JComponent |
getComponent() |
boolean |
removeButton(int id)
Removes the button identified by
id . |
void |
removeButtonPressedListener(ButtonsPanelListener listener)
Borrar el disparador de eventos de los botones.
|
boolean |
setEnabled(int id,
boolean b)
Enables (or disables) the button identified by
id . |
static final int BUTTON_ACCEPT
static final int BUTTON_CANCEL
static final int BUTTON_APPLY
static final int BUTTON_YES
static final int BUTTON_NO
static final int BUTTON_CLOSE
static final int BUTTON_EXIT
static final int BUTTON_SEEDETAILS
static final int BUTTON_HIDEDETAILS
static final int BUTTON_PAUSE
static final int BUTTON_RESTART
static final int BUTTON_SAVE
static final int BUTTON_USR1
static final int BUTTON_USR2
static final int BUTTON_USR3
static final int BUTTON_USR4
static final int BUTTON_USR5
static final int BUTTON_LAST
new_id = BUTTON_LAST + 1;
' podría ser
el índice del nuevo botón.static final int BUTTONS_ACCEPT
static final int BUTTONS_ACCEPTCANCEL
static final int BUTTONS_ACCEPTCANCELAPPLY
static final int BUTTONS_CANCEL
static final int BUTTONS_YESNO
static final int BUTTONS_CLOSE
static final int BUTTONS_EXIT
static final int BUTTONS_NONE
static final int BUTTONS_APPLYCLOSE
void addButtonPressedListener(ButtonsPanelListener listener)
listener
- Object[] getButtonPressedListeners()
void removeButtonPressedListener(ButtonsPanelListener listener)
listener
- void addAccept()
void addSave()
void addCancel()
void addYes()
void addNo()
void addApply()
void addClose()
void addExit()
void addSeeDetails()
void addHideDetails()
void addPause()
void addRestart()
void addButton(String text, int id)
text
- Texto que contendrá el botónid
- Entero para identificar los eventos del botónJButton getButton(int id)
id
- Número del disparador del botónnull
si no se encontró el botón.boolean removeButton(int id)
Removes the button identified by id
.
id
- identifier of the buttontrue
if has removed the button; otherwise false
String getButtonText(int id)
Returns the text of the button identified by id
.
id
- identifier of the buttonboolean setEnabled(int id, boolean b)
Enables (or disables) the button identified by id
.
id
- identifier of the buttonb
- true
to enable the button, otherwise false
true
if there was a button of that kind in this group, otherwise false
JComponent getComponent()