public class CapturePlugin extends Plugin
BIG_ICON, DISABLED_ON_TASK_MENU, parent, SINGLE_CLICK_WAITING_TIME
Constructor and Description |
---|
CapturePlugin()
Creates the Plugin
|
Modifier and Type | Method and Description |
---|---|
boolean |
canReceiveProgramsWithTarget()
Gets whether the ProgramReceiveIf supports receiving programs from other plugins with a special target.
|
boolean |
canUseProgramTree()
Signal whether this plugin participates in the plugin tree view or not.
|
ActionMenu |
getButtonAction()
Gets the action to use for the main menu and the toolbar.
|
CapturePluginData |
getCapturePluginData()
Returns the CapturePluginData
|
ActionMenu |
getContextMenuActions(Program program)
Gets the actions for the context menu of a program.
|
PluginInfo |
getInfo()
Implement this function to provide information about your plugin.
|
static CapturePlugin |
getInstance()
Returns this Instance
|
ThemeIcon |
getMarkIconFromTheme()
This gets the ThemeIcon containg your mark icon.
|
int |
getMarkPriorityForProgram(Program p)
Gets the mark priority for the given program that this Plugin uses.
|
ProgramReceiveTarget[] |
getProgramReceiveTargets()
Returns an array of receive target or
null if there is no target |
PluginTreeNode |
getRootNode()
Get the Root-Node.
|
SettingsTab |
getSettingsTab()
Returns a new SettingsTab object, which is added to the settings-window.
|
Frame |
getSuperFrame() |
static Version |
getVersion() |
void |
handleTvBrowserStartFinished()
This method is called when the TV-Browser start is finished.
|
void |
handleTvDataUpdateFinished()
Check the programs after data update.
|
void |
loadSettings(Properties settings)
Called by the host-application during start-up.
|
void |
readData(ObjectInputStream in)
Called by the host-application during start-up.
|
boolean |
receivePrograms(Program[] programArr,
ProgramReceiveTarget receiveTarget)
Receives a list of programs from another plugin with a target.
|
void |
setCapturePluginData(CapturePluginData data)
Sets the CaputePluginData
|
void |
showDialog()
This method is invoked by the host-application if the user has choosen
your plugin from the menu.
|
Properties |
storeSettings()
Called by the host-application during shut-down.
|
void |
updateMarkedPrograms()
Updates the marked Programs.
|
void |
writeData(ObjectOutputStream out)
Counterpart to loadData.
|
canReceivePrograms, createImageIcon, createImageIcon, createImageIcon, createImageIconForFileName, execute, execute, execute, getAvailableFilter, getAvailableFilterComponentClasses, getButtonIconName, getButtonText, getContextMenuItemText, getId, getJarFile, getMarkIcon, getMarkIconName, getMarkIcons, getMarkIconsForProgram, getParentFrame, getPluginManager, getProgramFromContextMenuActionEvent, getProgramTableIcons, getProgramTableIconText, getRatingInterfaces, handleTvDataAdded, handleTvDataAdded, handleTvDataChanged, handleTvDataChanged, handleTvDataDeleted, handleTvDataTouched, isAllowedToDeleteProgramFilter, layoutWindow, layoutWindow, onActivation, onDeactivation, receivePrograms, receiveValues, saveMe, setJarFile, setParent, setPluginManager, storeRootNode, supportMultipleProgramExecution, toString
public static CapturePlugin getInstance()
public void readData(ObjectInputStream in) throws IOException, ClassNotFoundException
readData
in class Plugin
in
- The stream to read the objects from.IOException
- If reading failed.ClassNotFoundException
- If an object could not be casted correctly.writeData(ObjectOutputStream)
public void writeData(ObjectOutputStream out) throws IOException
writeData
in class Plugin
out
- The stream to write the objects toIOException
- If writing failed.readData(ObjectInputStream)
public void loadSettings(Properties settings)
loadSettings
in class Plugin
settings
- The settings for this plugin (May be empty).public Properties storeSettings()
storeSettings
in class Plugin
null
if this plugin
does not need to save any settings.public static Version getVersion()
public PluginInfo getInfo()
public SettingsTab getSettingsTab()
getSettingsTab
in class Plugin
null
if the plugin does not
provide this feature.public ActionMenu getContextMenuActions(Program program)
Plugin
Override this method to provide context menu items for programs (e.g. in
the program table). If your plugin shows a context menu only for some
programs, but not for all, then you should explicitly return a non-null
menu for the example program. Otherwise your context menu will not be shown
in the settings dialog for the context menu order.
The following action values will be used:
Action.NAME
: The text for the context menu item.Action.SMALL_ICON
: The icon for the context menu item.
Should be 16x16.getContextMenuActions
in interface ContextMenuIf
getContextMenuActions
in class Plugin
program
- The program the context menu will be shown for.null
if the plugin does not provide this feature.Plugin.getProgramFromContextMenuActionEvent(ActionEvent)
public void updateMarkedPrograms()
public ActionMenu getButtonAction()
Plugin
Override this method to provide a menu item in the main menu and a toolbar button.
The following action values will be used:
Action.NAME
: The text for the main menu item and the
toolbar button.Action.SHORT_DESCRIPTION
: The description for the button
action. Used as tooltip and for the status bar.Action.SMALL_ICON
: The icon for the main menu item. Should
be 16x16.BIG_ICON
: The icon for the toolbar button. Should be
24x24.getButtonAction
in class Plugin
null
if the plugin does not provide this feature.public void showDialog()
public ThemeIcon getMarkIconFromTheme()
Plugin
PluginManager.getIconFromTheme(Plugin, String, String, int)
getMarkIconFromTheme
in class Plugin
public void setCapturePluginData(CapturePluginData data)
data
- CapturePluginDatapublic CapturePluginData getCapturePluginData()
public PluginTreeNode getRootNode()
getRootNode
in class Plugin
Plugin.canUseProgramTree()
public boolean canUseProgramTree()
Plugin
canUseProgramTree
in class Plugin
Plugin.getRootNode()
public boolean canReceiveProgramsWithTarget()
Plugin
canReceiveProgramsWithTarget
in interface ProgramReceiveIf
canReceiveProgramsWithTarget
in class Plugin
Plugin.receivePrograms(Program[],ProgramReceiveTarget)
public boolean receivePrograms(Program[] programArr, ProgramReceiveTarget receiveTarget)
Plugin
receivePrograms
in interface ProgramReceiveIf
receivePrograms
in class Plugin
programArr
- The programs passed from the other plugin.receiveTarget
- The receive target of the programs.Plugin.canReceiveProgramsWithTarget()
public ProgramReceiveTarget[] getProgramReceiveTargets()
Plugin
null
if there is no targetgetProgramReceiveTargets
in interface ProgramReceiveIf
getProgramReceiveTargets
in class Plugin
Plugin.canReceiveProgramsWithTarget()
,
Plugin.receivePrograms(Program[],ProgramReceiveTarget)
public void handleTvBrowserStartFinished()
Plugin
handleTvBrowserStartFinished
in class Plugin
public void handleTvDataUpdateFinished()
public Frame getSuperFrame()
public int getMarkPriorityForProgram(Program p)
Plugin
The mark priority can be Program.NO_MARK_PRIORITY
, Program.MIN_MARK_PRIORITY
, Program.LOWER_MEDIUM_MARK_PRIORITY
,
Program.MEDIUM_MARK_PRIORITY
, Program.HIGHER_MEDIUM_MARK_PRIORITY
or
Program.MAX_MARK_PRIORITY
.
getMarkPriorityForProgram
in interface Marker
getMarkPriorityForProgram
in class Plugin
p
- The program to get the mark prioriy for.TV-Browser 2.7.6, Copyright (C) 04-2003 Martin Oberhauser (martin@tvbrowser.org)