|
java-gnome version 4.0.19 | ||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public static interface EntryCompletion.ActionActivated
Emitted when an action item is selected from the popup action list.
In this way, you can do something different from the
EntryCompletion.MatchSelected
signal.
final EntryCompletion completion; ... completion.insertActionText(0, "complete"); completion.insertActionText(1, "another"); completion.connect(new EntryCompletion.ActionActivated() { public void onActionActivated(EntryCompletion source, int index) { System.out.println("Action " + index + " activated."); } });
Method Summary | |
---|---|
void |
onActionActivated(EntryCompletion source,
int index)
The only two parameters give references to the EntryCompletion source which has emitted the signal and the activated
action index . |
Method Detail |
---|
void onActionActivated(EntryCompletion source, int index)
source
which has emitted the signal and the activated
action index
.
|
![]() java-gnome |
||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |