[Rezilla-commits] RezillaSource/Rezilla_Src RezillaConstants.h, 1.262, 1.263
Brought to you by:
bdesgraupes
From: Bernard D. <bde...@us...> - 2006-11-25 11:59:29
|
Update of /cvsroot/rezilla/RezillaSource/Rezilla_Src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv29349 Modified Files: RezillaConstants.h Log Message: Plugin role field Index: RezillaConstants.h =================================================================== RCS file: /cvsroot/rezilla/RezillaSource/Rezilla_Src/RezillaConstants.h,v retrieving revision 1.262 retrieving revision 1.263 diff -u -d -r1.262 -r1.263 --- RezillaConstants.h 24 Nov 2006 11:53:18 -0000 1.262 +++ RezillaConstants.h 25 Nov 2006 11:59:25 -0000 1.263 @@ -2,7 +2,7 @@ // RezillaConstants.h // // Created : 2003-04-16 22:52:54 -// Last modification : 2006-11-10 06:12:05 +// Last modification : 2006-11-25 07:38:23 // Author : Bernard Desgraupes // e-mail : <bde...@us...> // www : <http://rezilla.sourceforge.net/> @@ -140,6 +140,15 @@ editor_kindPlug }; +// Kind of editor +enum +{ + plugin_roleUnknown = -1, + plugin_roleNone = 0, + plugin_roleEditor, + plugin_roleViewer +}; + // Bitmap editor // ------------- // Supported bitmap types @@ -697,8 +706,9 @@ const PaneIDT item_PluginInfoCreatorText = 3; const PaneIDT item_PluginInfoVersionText = 4; const PaneIDT item_PluginInfoLoadedText = 5; -const PaneIDT item_PluginInfoIconPane = 6; +const PaneIDT item_PluginInfoRoleText = 6; const PaneIDT item_PluginSupportedTypes = 7; +const PaneIDT item_PluginInfoIconPane = 8; // Plugin Order Pane // ----------------- const PaneIDT item_PluginOrderPgbx = 1; @@ -1481,6 +1491,7 @@ err_PluginGetInfoFailed, err_PluginNotFound, err_PluginIndexNotFound, + err_PluginRefusedResource, err_RezillaErrorEnd }; |