#include <scim_filter_module.h>
Collaboration diagram for scim::FilterModule:
Public Member Functions | |
FilterModule () | |
Default constructor. | |
FilterModule (const String &name, const ConfigPointer &config) | |
Constructor. | |
bool | load (const String &name, const ConfigPointer &config) |
Load a Filter Module by its name. | |
bool | unload () |
Unload the Filter Module. | |
bool | valid () const |
Check if a module is loaded and initialized successfully. | |
unsigned int | number_of_filters () const |
Get how many Filter factories supported by this module. | |
FilterFactoryPointer | create_filter (unsigned int index) const |
Create an object for a Filter factory. | |
bool | get_filter_info (unsigned int index, FilterInfo &info) const |
Get basic information of the FilterFactory class provided by this module. |
This is a wrapper of scim::Module class, which is specially for manipulating the Filter modules.
|
Default constructor.
|
|
Constructor.
|
|
Load a Filter Module by its name. Load a module into memory. If another module has been loaded into this object, then the old module will be unloaded first. If the old module is resident, false will be returned, and the old module will be untouched.
|
|
Unload the Filter Module.
|
|
Check if a module is loaded and initialized successfully.
|
|
Get how many Filter factories supported by this module.
|
|
Create an object for a Filter factory.
|
|
Get basic information of the FilterFactory class provided by this module.
|