Package com.biglybt.ui.mdi
Interface MdiEntryVitalityImage
-
- All Known Implementing Classes:
MdiEntryVitalityImageSWT
public interface MdiEntryVitalityImage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addListener(MdiEntryVitalityImageListener l)
int
getAlignment()
java.lang.String
getImageID()
MdiEntry
getMdiEntry()
boolean
getShowOutsideOfEntry()
Whether the Image is shown outside of the entry.boolean
isVisible()
void
setAlignment(int a)
void
setImageID(java.lang.String id)
void
setShowOutsideOfEntry(boolean showOutsideOfEntry)
Whether the Image is shown outside of the entry.void
setToolTip(java.lang.String tooltip)
void
setVisible(boolean visible)
void
triggerClickedListeners(int x, int y)
-
-
-
Method Detail
-
getImageID
java.lang.String getImageID()
-
setImageID
void setImageID(java.lang.String id)
-
getMdiEntry
MdiEntry getMdiEntry()
-
addListener
void addListener(MdiEntryVitalityImageListener l)
-
setToolTip
void setToolTip(java.lang.String tooltip)
-
setVisible
void setVisible(boolean visible)
-
isVisible
boolean isVisible()
-
triggerClickedListeners
void triggerClickedListeners(int x, int y)
-
getAlignment
int getAlignment()
-
setAlignment
void setAlignment(int a)
-
getShowOutsideOfEntry
boolean getShowOutsideOfEntry()
Whether the Image is shown outside of the entry. ie. TabbedMDI has a section to the right of all tabs that can display actions.
-
setShowOutsideOfEntry
void setShowOutsideOfEntry(boolean showOutsideOfEntry)
Whether the Image is shown outside of the entry. ie. TabbedMDI has a section to the right of all tabs that can display actions.
-
-