diff options
-rw-r--r-- | PLUGIN.ja.txt | 19 | ||||
-rw-r--r-- | PLUGIN.txt | 25 |
2 files changed, 37 insertions, 7 deletions
diff --git a/PLUGIN.ja.txt b/PLUGIN.ja.txt index 46a86c27..c42ef384 100644 --- a/PLUGIN.ja.txt +++ b/PLUGIN.ja.txt @@ -158,6 +158,11 @@ void (* folderview_menu_popup) (GObject *obj, gpointer ifactory); FolderView でコンテキストメニューをポップアップしたときに発行される シグナルです。 ------------------------------------------------------------------------- +void (* summaryview_menu_popup) (GObject *obj, gpointer ifactory); + +SummaryView でコンテキストメニューをポップアップしたときに発行される +シグナルです。 +------------------------------------------------------------------------- void (* compose_created) (GObject *obj, gpointer compose); Compose メッセージ作成ウィンドウが作成されたときに発行されるシグナルです。 @@ -230,9 +235,12 @@ void (* account_updated) (GObject *obj) サンプルプラグイン ================== -plugin/test にサンプルプラグインがあります。このプラグインは +plugin ディレクトリ以下にサンプルプラグインがあります。これらのプラグインは make install ではインストールされません。インストールするには -plugin/test ディレクトリに入って make install-plugin を実行してください。 +plugin/ 以下の各ディレクトリに入って make install-plugin を実行してください。 + +Test Plug-in +------------ test プラグインは Sylpheed プラグインの基本的な構造に加え、以下の処理を 行います。 @@ -249,6 +257,13 @@ test プラグインは Sylpheed プラグインの基本的な構造に加え ポップアップ、メッセージ作成ウィンドウ作成、メッセージ作成ウィンドウ破棄 のイベントを捕捉してメッセージを表示 +Attachment Tool Plug-in +----------------------- + +添付ファイルつきのメッセージを操作するためのプラグインです。 + +詳細は plugin/attachment_tool/README を参照してください。 + ライセンスについて ================== @@ -157,6 +157,10 @@ void (* folderview_menu_popup) (GObject *obj, gpointer ifactory); Emitted on popup of the context menu of FolderView. ------------------------------------------------------------------------- +void (* summaryview_menu_popup) (GObject *obj, gpointer ifactory); + +Emitted on popup of the context menu of SummaryView. +------------------------------------------------------------------------- void (* compose_created) (GObject *obj, gpointer compose); Emitted on creating 'Compose' message composition window. @@ -225,12 +229,16 @@ It will not be emitted if it is locked by account_update_lock(), though. ------------------------------------------------------------------------- -Sample plug-in -============== +Sample plug-ins +=============== -There is a sample plug-in at plugin/test. This plug-in will not be installed -with 'make install'. It is required to enter the directory plugin/test and -run 'make install-plugin'. +There is sample plug-ins under the 'plugin' directory. +These plug-ins will not be installed with 'make install'. +It is required to enter the directory plugin/* and run +'make install-plugin'. + +Test Plug-in +------------ The 'test' plug-in has the basic structure of Sylpheed plug-in and the following process: @@ -247,6 +255,13 @@ following process: and exiting, folder view context menu popup, creating and destroying compose window +Attachment Tool Plug-in +----------------------- + +This is a plug-in for handling messages with attached files. + +See plugin/attachment_tool/README for the details. + About license ============= |