|
From: Emilien K. <cur...@us...> - 2005-02-25 15:43:41
|
Update of /cvsroot/wxdevcenter/StdPlugin/include/wxDevCenter/StdPlugin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13791/include/wxDevCenter/StdPlugin Modified Files: BitmapDocView.h language.h Log Message: Redimensionnement de la bitmap. Index: BitmapDocView.h =================================================================== RCS file: /cvsroot/wxdevcenter/StdPlugin/include/wxDevCenter/StdPlugin/BitmapDocView.h,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** BitmapDocView.h 23 Feb 2005 09:16:46 -0000 1.13 --- BitmapDocView.h 25 Feb 2005 15:43:21 -0000 1.14 *************** *** 99,102 **** --- 99,107 ---- * @param pot Position où appliquer le bitmap.*/ void DrawBitmap(const wxBitmap& bmp, wxPoint pos); + + /** Redimmensionne la bitmap. + * @param size Nouvelle taille. + * @param br Pinceau de remplissage.*/ + void ResizeBitmap(wxSize size, wxBrush br); /** @} */ *************** *** 210,214 **** BVD_SELCUT = 11, BVD_SELCOPY = 12, ! BVD_SELPASTE = 13 }; /** Fonction de tracé courante.*/ --- 215,220 ---- BVD_SELCUT = 11, BVD_SELCOPY = 12, ! BVD_SELPASTE = 13, ! BVD_SIZEALL = 14 }; /** Fonction de tracé courante.*/ Index: language.h =================================================================== RCS file: /cvsroot/wxdevcenter/StdPlugin/include/wxDevCenter/StdPlugin/language.h,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** language.h 16 Feb 2005 15:10:02 -0000 1.12 --- language.h 25 Feb 2005 15:43:28 -0000 1.13 *************** *** 292,295 **** --- 292,296 ---- #define WXDC_BITMAP_MENU_TOOLS_SELALL wxT("Select all bitmap\tCtrl+A") #define WXDC_BITMAP_MENU_TOOLS_SELMOVE wxT("Move selection") + #define WXDC_BITMAP_MENU_TOOLS_SIZEALL wxT("Size all bitmap") #define WXDC_BITMAP_MENU_EDIT wxT("Edit") *************** *** 336,339 **** --- 337,342 ---- #define WXDC_BITMAP_TOOL_SELPASTE wxT("Paste") #define WXDC_BITMAP_TOOLHELP_SELPASTE wxT("Paste") + #define WXDC_BITMAP_TOOL_SIZEALL wxT("Size all") + #define WXDC_BITMAP_TOOLHELP_SIZEALL wxT("Size all bitmap") |