|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface TableManager
Allows plugins to manage Azureus UI tables.
Field Summary | |
---|---|
static String |
TABLE_ACTIVITY
|
static String |
TABLE_ACTIVITY_BIG
|
static String |
TABLE_ALL_PEERS
Visible for All Peers table |
static String |
TABLE_MYSHARES
Visible for My Shares table |
static String |
TABLE_MYTORRENTS_ALL_BIG
|
static String |
TABLE_MYTORRENTS_COMPLETE
Visible for Completed Torrents table |
static String |
TABLE_MYTORRENTS_COMPLETE_BIG
Visible for Completed Torrents table (big version) |
static String |
TABLE_MYTORRENTS_INCOMPLETE
Visible for Incompleted Torrents table |
static String |
TABLE_MYTORRENTS_INCOMPLETE_BIG
Visible for Incompleted Torrents table (big version) |
static String |
TABLE_MYTORRENTS_UNOPENED
|
static String |
TABLE_MYTORRENTS_UNOPENED_BIG
|
static String |
TABLE_MYTRACKER
Visible for My Tracker table |
static String |
TABLE_TORRENT_FILES
Visible for Torrent Files table |
static String |
TABLE_TORRENT_PEERS
Visible for Torrent Peers table |
static String |
TABLE_TORRENT_PIECES
Visible for Torrent Pieces table |
static String |
TABLE_TORRENT_TRACKERS
|
Method Summary | |
---|---|
void |
addColumn(TableColumn tableColumn)
Adds a column to an Azureus UI table. |
TableContextMenuItem |
addContextMenuItem(String tableID,
String resourceKey)
Adds a Context Menu item to the specified table or to all table context menus. |
TableContextMenuItem |
addContextMenuItem(TableContextMenuItem parent,
String resourceKey)
Adds a Context Menu item as a sub-item of the given menu item. |
TableColumn |
createColumn(String tableID,
String cellID)
Creates a column for a UI table. |
void |
registerColumn(Class forDataSourceType,
String cellID,
TableColumnCreationListener listener)
Register a column for a specific data source type. |
void |
unregisterColumn(Class forDataSourceType,
String cellID,
TableColumnCreationListener listener)
unregister a listener added by @link registerColumn(Class, String, TableColumnCreationListener) |
Field Detail |
---|
static final String TABLE_MYTORRENTS_COMPLETE
static final String TABLE_MYTORRENTS_INCOMPLETE
static final String TABLE_MYTORRENTS_UNOPENED
static final String TABLE_MYTORRENTS_COMPLETE_BIG
static final String TABLE_MYTORRENTS_INCOMPLETE_BIG
static final String TABLE_MYTORRENTS_UNOPENED_BIG
static final String TABLE_MYTORRENTS_ALL_BIG
static final String TABLE_ACTIVITY
static final String TABLE_ACTIVITY_BIG
static final String TABLE_TORRENT_PEERS
static final String TABLE_TORRENT_PIECES
static final String TABLE_TORRENT_FILES
static final String TABLE_TORRENT_TRACKERS
static final String TABLE_MYTRACKER
static final String TABLE_MYSHARES
static final String TABLE_ALL_PEERS
Method Detail |
---|
TableColumn createColumn(String tableID, String cellID)
In order for this object to be displayed in an Azureus UI table, the
returned object must be added via the addColumn(TableColumn)
The distinction between creating and adding a column is required because some TableColumn functions are not available or act differently after the column had been added.
In order to the plugin to display correctly the column name, you are
required to create a key in your language file consisting of the
TableManager
Table ID of the table you are adding the column to,
plus ".column." plus the logical name of your column.
For example, if you are creating a column named "quality" in the table
TABLE_TORRENT_FILES, you would have to add the following to your language
file:
Files.column.quality=Column Title
and if you wish to have a short description of the column (visible when
the user is setting up columns), create another entry with the same key
plus ".info". For the example above:
Files.column.quality.info=One line description
If you wish to add a menu item to tables that show torrents, use
MenuManager.addMenuItem(String, String)
tableID
- Which table the column will be visible in. See TableManager
.cellID
- The logical name of the column.
void registerColumn(Class forDataSourceType, String cellID, TableColumnCreationListener listener)
This method is independent of createColumn(String, String)
and
addColumn(TableColumn)
. This method improves upon them by
saving you from creating and adding the column to every potential table
it could be displayed in. It allows for your column to be added to future
tables without and code changes on your end.
forDataSourceType
- Class of datasource you want to add a column to,
such as Download
, DownloadTypeComplete
,
DownloadTypeIncomplete
cellID
- The logical name of the column.listener
- void unregisterColumn(Class forDataSourceType, String cellID, TableColumnCreationListener listener)
registerColumn(Class, String, TableColumnCreationListener)
forDataSourceType
- cellID
- listener
- void addColumn(TableColumn tableColumn)
tableColumn
- a column previously created with createColumn(java.lang.String, java.lang.String)
TableContextMenuItem addContextMenuItem(String tableID, String resourceKey)
tableID
- Which table the menu item will be visible in. See TableManager
.
If null, the menu item will be added to all table context menus.resourceKey
- ID of the context menu, which is also used to retrieve
the textual name from the plugin language file.
TableContextMenuItem addContextMenuItem(TableContextMenuItem parent, String resourceKey)
parent
- The MenuItem to add this new item to. The parent MenuItem must have its
style attribute to be set to "menu".resourceKey
- ID of the context menu, which is also used to retrieve
the textual name from the plugin language file.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |