[Rezilla-commits] RezillaSource/Rezilla_Src/Application CPickersController.cp, 1.11, 1.12
Brought to you by:
bdesgraupes
From: Bernard D. <bde...@us...> - 2006-11-28 15:19:49
|
Update of /cvsroot/rezilla/RezillaSource/Rezilla_Src/Application In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv19224 Modified Files: CPickersController.cp Log Message: Picker for 'STR ' and 'PSTR' Index: CPickersController.cp =================================================================== RCS file: /cvsroot/rezilla/RezillaSource/Rezilla_Src/Application/CPickersController.cp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- CPickersController.cp 9 Oct 2006 16:44:57 -0000 1.11 +++ CPickersController.cp 28 Nov 2006 15:19:37 -0000 1.12 @@ -2,7 +2,7 @@ // CPickersController.cp // // Created: 2006-02-23 15:12:16 -// Last modification: 2006-10-09 17:03:54 +// Last modification: 2006-11-28 15:26:18 // Author: Bernard Desgraupes // e-mail: <bde...@us...> // www: <http://rezilla.sourceforge.net/> @@ -29,6 +29,7 @@ #include "CMENU_PickerStamp.h" #include "CSTRx_PickerStamp.h" #include "CTEXT_PickerStamp.h" +#include "CPSTR_PickerStamp.h" #include "CPattern_PickerStamp.h" #include "CCursor_PickerStamp.h" #include "CIconFamily_PickerStamp.h" @@ -79,6 +80,8 @@ case 'RID#': case 'Mcmd': case 'RidL': + case 'STR ': + case 'PStr': case 'cicn': case 'ICON': case 'SICN': @@ -140,6 +143,11 @@ new TPickerDoc<CSTRx_PickerStamp>( (LCommander *) inRezMapDoc, inSuperMap, inRezTypeItem, inReadOnly); break; + case 'STR ': + case 'PStr': + new TPickerDoc<CPSTR_PickerStamp>( (LCommander *) inRezMapDoc, inSuperMap, inRezTypeItem, inReadOnly); + break; + case 'cicn': new TPickerDoc<Ccicn_PickerStamp>( (LCommander *) inRezMapDoc, inSuperMap, inRezTypeItem, inReadOnly); break; |