IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Windows Discussion :

nouveau contextmenu dans l'explorer


Sujet :

Windows

  1. #1
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Avril 2005
    Messages
    46
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2005
    Messages : 46
    Points : 36
    Points
    36
    Par défaut nouveau contextmenu dans l'explorer
    Bonjour
    je souhaite rajouter une petite fonction a mon application: permettre l'ouverture d'un fichier juste en cliquant droit dessus
    donc je voudrai rajouter un menu à la maniere de winrar ou winzip lorsque l'on clique droit sur un fichier (et seulement un fichier et pas un dossier par exemple)

    je sais que ça se modifie dans la base de registre mais j'ai un peu de mal a comprendre
    j'ai trouvé ça sur msdn mais je patauge un peu

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/programmersguide/shell_int/shell_int_extending/extensionhandlers/contextmenuhandlers.asp

    quelqu'un pourrait me donner un exemple concret ou m'expliquer?
    merci

  2. #2
    Rédacteur


    Profil pro
    Inscrit en
    Janvier 2003
    Messages
    7 171
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2003
    Messages : 7 171
    Points : 15 060
    Points
    15 060
    Billets dans le blog
    1
    Par défaut
    Si cela peut t'aider, un exemple en Delphi :
    http://castelain.developpez.com/sources/shellextension/

  3. #3
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Avril 2005
    Messages
    46
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2005
    Messages : 46
    Points : 36
    Points
    36
    Par défaut
    oui mais cet exemple si j'ai a peu pres comprit ajoute un menu uniquement quand l'application tourne non? :o

  4. #4
    Expert éminent sénior

    Homme Profil pro
    pdg
    Inscrit en
    Juin 2003
    Messages
    5 754
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 42
    Localisation : France, Hérault (Languedoc Roussillon)

    Informations professionnelles :
    Activité : pdg

    Informations forums :
    Inscription : Juin 2003
    Messages : 5 754
    Points : 10 719
    Points
    10 719
    Billets dans le blog
    3
    Par défaut
    C'est pas une application, mais un composant logiciel (COM) que Windows va utiliser pour enrichir le menu.

  5. #5
    Rédacteur


    Profil pro
    Inscrit en
    Janvier 2003
    Messages
    7 171
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2003
    Messages : 7 171
    Points : 15 060
    Points
    15 060
    Billets dans le blog
    1
    Par défaut
    Dans ce cas regarde cet exemple d'objet COM au sein d'une librairie.
    Pour le type fichier et ne gére qu'une seule entrée:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    unit ToolsMenu;
    interface
    
    uses
      Windows, ActiveX, ComObj, ShlObj;
    
    type
      TContextTools = class(TComObject, IShellExtInit, IContextMenu)
      private
        FFileName : array[0..MAX_PATH] of Char;
        MenuIndex1, MenuIndex2, MenuIndex3 : UINT;
        function Operation(Owner: HWND; ID:Integer;Filename:String):Byte;
      protected
        { IShellExtInit }
        function IShellExtInit.Initialize = SEIInitialize; 
        function SEIInitialize(pidlFolder: PItemIDList; lpdobj: IDataObject;
          hKeyProgID: HKEY): HResult; stdcall;
        { IContextMenu }
        function QueryContextMenu(Menu: HMENU; indexMenu, idCmdFirst, idCmdLast,
          uFlags: UINT): HResult; stdcall;
        function InvokeCommand(var lpici: TCMInvokeCommandInfo): HResult; stdcall;
        function GetCommandString(idCmd, uType: UINT; pwReserved: PUINT;
          pszName: LPSTR; cchMax: UINT): HResult; stdcall;
      end;
    
    const
      Class_ContextMenu: TGUID = '{F304F362-97F4-11D5-B5D5-006097954E0E}' ;
    
    
    implementation
    
    uses ComServ, SysUtils, ShellApi, Registry,NameBak,ToolsFichier;
    
    function TContextTools.Operation(Owner: HWND; ID:Integer;Filename:String):Byte;
    var PathName,
        BackupName,
        Extension      : String;
        sr             : TSearchRec;
        ShFileOpStruct : TShFileOpStruct;
    
    begin
     PathName := ExtractFilePath(FileName);
     if PathName='' then
     begin
      PathName:=ExpandFileName(Filename);
      Filename:=PathName; // complete le nom de fichier avec le nom du directory
     end;
     if FindFirst(Filename, faAnyFile-fadirectory, sr)=0
       // retrouve le nom complet si c'est un nom court
      then Filename := ExtractFilePath(PathName)+sr.Name; 
     FindClose(sr);
     FileName:= AddNullToStr(FileName);
    
     BackupName := ExtractFileName(FileName);
     if GetLastBackupName(Extension,FileName)
      then
       begin
        BackupName := ChangeFileExt(BackupName,Extension );
        BackupName:=ExtractFilePath(FileName)+Backupname;
        BackupName:= AddNullToStr(BackupName);
        if FileExists(Filename) then
         begin
           {I+}
          FillChar(ShFileOpStruct, SizeOf(ShFileOpStruct), 0);
          with ShFileOpStruct do
          begin
            Wnd:=Owner;
            pFrom:=PChar(Filename);
            pTo:=PChar(BackupName);
          end;
          case ID OF
           ID_BAKNAME : begin
                        with ShFileOpStruct do
                          begin
                            wFunc:=FO_RENAME;
                            lpszProgressTitle:=PChar('Renommer');
                            fFlags:= FOF_ALLOWUNDO+FOF_FILESONLY;
                            // FOF_NOCONFIRMATION gére les acces interdit
    
                          end;
                          {erreur sur cd rom ou disquette retirer aprés sélection du menu}
                          if FileOperation(ShFileOpStruct)=0
                           then Result:=lSUCCESS
                           else Result:=lNORENAME;
                        end;
           ID_COPYBAK  :begin
                          with ShFileOpStruct do
                          begin
                            wFunc:=FO_COPY;
                            lpszProgressTitle:=PChar('Copier');
                            fFlags:= FOF_ALLOWUNDO+FOF_FILESONLY+FOF_SIMPLEPROGRESS;
                          end;
                          if FileOperation(ShFileOpStruct)=0
                           then Result:=lSUCCESS
                           else Result:=lNOCOPY;
                        end;
         end {case}
        end
           {I-}
        else Result:=lNOFILE; // not exist
       end
      // error in bakname Reade Directory
     else Result:=lREAD_DIRECTORY_ERROR; 
    end;
    
    function TContextTools.SEIInitialize(pidlFolder: PItemIDList; lpdobj: IDataObject;
      hKeyProgID: HKEY): HResult;
    var
      StgMedium: TStgMedium;
      FormatEtc: TFormatEtc;
    begin
      // Fail the call if lpdobj is Nil.
      if (lpdobj = nil) then begin
        Result := E_INVALIDARG;
        Exit;
      end;
    
      with FormatEtc do begin
        cfFormat := CF_HDROP;
        ptd      := nil;
        dwAspect := DVASPECT_CONTENT;
        lindex   := -1;
        tymed    := TYMED_HGLOBAL;
      end;
    
      // Render the data referenced by the IDataObject pointer to an HGLOBAL
      // storage medium in CF_HDROP format.
      Result := lpdobj.GetData(FormatEtc, StgMedium);
      if Failed(Result)
       then  Exit;
    
      // If only one file is selected, retrieve the file name and store it in
      // FDirectoryName. Otherwise fail the call.
      if (DragQueryFile(StgMedium.hGlobal, $FFFFFFFF, nil, 0) = 1) then begin
        DragQueryFile(StgMedium.hGlobal, 0, FFileName, SizeOf(FFileName));
        Result := NOERROR;
      end
      else begin
        FFileName[0] := #0;
        Result := E_FAIL;
      end;
      ReleaseStgMedium(StgMedium);
    end;
    
    function TContextTools.QueryContextMenu(Menu: HMENU; indexMenu, idCmdFirst,
           idCmdLast, uFlags: UINT): HResult;
    Const
     Caption:String='Modifier l''extension';
    
    var
       Command_ID,
       hSub_Menu : HMenu;
       MenuInfo : TMenuItemInfo;
    begin
      Result:= 0;
      if ((uFlags and $0000000F) = CMF_NORMAL) or
         &#40;&#40;uFlags and CMF_EXPLORE&#41; <> 0&#41; then
        begin
          MenuIndex1 &#58;= indexMenu;     // index du sous menu
          Command_ID &#58;= idCmdFirst;
    
          MenuInfo.cbSize &#58;= SizeOf&#40;MenuInfo&#41;;
          hSub_Menu &#58;= CreateMenu;
    
          Inc&#40;Command_ID&#41;;
          MenuIndex2 &#58;= MenuIndex1+1;  // index de l'entrée du sous menu
          InsertMenu&#40;hSub_Menu,MenuIndex2,MF_BYPOSITION or MF_STRING,Command_ID,
           'Copier et renommer en 001'&#41;;
    
          Inc&#40;Command_ID&#41;;
          MenuIndex3 &#58;= MenuIndex2+1;
          InsertMenu&#40;hSub_Menu,MenuIndex3,MF_BYPOSITION or MF_STRING,Command_ID,'Renommer en 001'&#41;;
    
          &#123;
          si d'autre entrées &#58;
           Inc&#40;Command_ID&#41;;
           MenuIndex4 &#58;= MenuIndex3+1;
           InsertMenu&#40;hSub_Menu,MenuIndex4,MF_BYPOSITION or MF_STRING,Command_ID,'Third Memu Itrm'&#41;;
    
          &#125;
    
          With MenuInfo do
           begin
            fMask &#58;= MIIM_ID or MIIM_SUBMENU or MIIM_TYPE;
            fType &#58;= MFT_STRING;
            fState &#58;= 0;
            dwTypeData &#58;=Pchar&#40;Caption&#41;;
            cch &#58;= Length&#40;Caption&#41;;  //  20 &#58;longueur de chaine;
            hSubMenu &#58;= hSub_Menu;
            wID &#58;= idCmdFirst;
            hbmpChecked &#58;= 0;
            hbmpUnchecked &#58;= 0;
           end;
          InsertMenuItem&#40;Menu,MenuIndex1,True,MenuInfo&#41;;
          Result &#58;= 3&#123; 1 sous-Menu +2 entrées&#125;;
    
        end;
    end;
    
    
    function TContextTools.InvokeCommand&#40;var lpici&#58; TCMInvokeCommandInfo&#41;&#58; HResult;
    var
      lResult       &#58; Byte;
      FileName,
      MessageString &#58; String;
      lMenuIndex    &#58; Integer;
    
    begin
      Result &#58;= E_FAIL;
      lResult&#58;=lSuccess;
      MessageString&#58;='';
      lMenuIndex &#58;= Integer&#40;lpici.lpVerb&#41;;
    
        // Make sure we are not being called by an application
      if HiWord&#40;lMenuIndex&#41; <> 0 then
      begin
        Exit;
      end;
    
      Result &#58;= NOERROR;
    
      Filename&#58;= string&#40;FFileName&#41;;
      if LoWord&#40;lMenuIndex&#41; = MenuIndex2
       then
        begin
         lResult&#58;=Operation&#40;lpici.hWnd,ID_COPYBAK,Filename&#41;;
         if lResult<>lSUCCESS
          then Result &#58;= E_FAIL;
        end
       else
          if LoWord&#40;lMenuIndex&#41; = MenuIndex3
           then
            begin
             Result&#58;=Operation&#40;lpici.hWnd,ID_BAKNAME,Filename&#41;;
             if lResult<>lSUCCESS
              then Result &#58;= E_FAIL;
            end
           else
            begin
             Result &#58;= E_INVALIDARG;
             Exit;
            end;
    
      If lResult= lNOFILE
       then MessageString&#58;='Fichier introuvable.';
    
      If lResult= lREAD_DIRECTORY_ERROR
       then MessageString&#58;='Erreur de lecture du répertoire.';
    
      if MessageString<>''
       then MessageBox&#40;lpici.hWnd, Pchar&#40;MessageString&#41;,'Erreur',MB_ICONERROR or MB_OK&#41;
    end;
    
    function TContextTools.GetCommandString&#40;idCmd, uType&#58; UINT; pwReserved&#58; PUINT;
      pszName&#58; LPSTR; cchMax&#58; UINT&#41;&#58; HRESULT;
    const
      HelpStringTemplate = '%s un fichier en modifiant son extension &#40;.001&#41;';
    var
      HelpString &#58; String;
    
    begin
      Result &#58;= NOERROR;
      HelpString &#58;= '';
    
      // le Sous menu n'a pas de contexte d'aide
      // Determine the help string
      if idCmd=MenuIndex2
       then
        if &#40;uType = GCS_HELPTEXT&#41;
         then HelpString &#58;= Format&#40;HelpStringTemplate, &#91;'Copie et renomme'&#93;&#41;
         else
       else
        if idCmd=MenuIndex3
         then
          if &#40;uType = GCS_HELPTEXT&#41;
           then HelpString &#58;= Format&#40;HelpStringTemplate, &#91;'Renomme'&#93;&#41;
          else
       else
        Result &#58;= E_INVALIDARG;
    
      strCopy&#40;pszName, PChar&#40;HelpString&#41; &#41;;
    end;
    
    type
      TContextToolsFactory = class&#40;TComObjectFactory&#41;
      public
        procedure UpdateRegistry&#40;Register&#58; Boolean&#41;; override;
      end;
    
    procedure TContextToolsFactory.UpdateRegistry&#40;Register&#58; Boolean&#41;;
    var
      ClassID&#58; string;
    
    begin
      if Register then begin
        inherited UpdateRegistry&#40;Register&#41;;
    
        ClassID &#58;= GUIDToString&#40;Class_ContextMenu&#41;;
        &#123;HKEY_CLASSES_ROOT;&#125;
        CreateRegKey&#40;'*\shellex', '', ''&#41;;
        CreateRegKey&#40;'*\shellex\ContextMenuHandlers', '', ''&#41;;
        CreateRegKey&#40;'*\shellex\ContextMenuHandlers\ToolsMenu', '', ClassID&#41;;
    
        &#40;*&#123;if &#40;Win32Platform = VER_PLATFORM_WIN32s &#123;delphi4_NT&#125;&#41; then*&#41;
          with TRegistry.Create do
            try
              RootKey &#58;= HKEY_LOCAL_MACHINE;
              OpenKey&#40;'SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions', True&#41;;
              OpenKey&#40;'Approved', True&#41;;
              WriteString&#40;ClassID, 'Copie ou renomme un fichier avec l''extension .001'&#41;;
            finally
              Free;
            end;
      end
      else begin
        DeleteRegKey&#40;'*\shellex\ContextMenuHandlers\ToolsMenu'&#41;;
        with TRegistry.Create do
        try
          RootKey &#58;= HKEY_LOCAL_MACHINE;
          OpenKey&#40;'Software\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved',False&#41;;
          Deletevalue&#40;ClassID&#41;;
        finally
          Free;
        end;
        inherited UpdateRegistry&#40;Register&#41;;
      end;
    end;
    
    initialization
      TContextToolsFactory.Create&#40;ComServer, TContextTools, Class_ContextMenu,
        '', 'Tools', ciMultiInstance,tmApartment&#41;;
    end.
    Le projet DLL
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    library tools;
    
    uses
      ComServ,
      ToolsMenu in 'ToolsMenu.pas';
    
    exports
      DllGetClassObject,
      DllCanUnloadNow,
      DllRegisterServer,
      DllUnregisterServer;
    
    &#123;$R *.RES&#125;
    
    begin
    end.

Discussions similaires

  1. Enregistrer un nouveau serveur dans un groupe de serveur ?
    Par pop bob dans le forum MS SQL Server
    Réponses: 2
    Dernier message: 19/07/2005, 17h18
  2. ContextMenu de l'explorer: Problème de sous menu
    Par Ingham dans le forum Composants VCL
    Réponses: 8
    Dernier message: 26/02/2004, 09h06
  3. [BCB 5.0] Ajouter un bouton dans internet explorer
    Par GthrDns dans le forum C++Builder
    Réponses: 2
    Dernier message: 01/02/2004, 23h54
  4. Comment récupérer les adresses WWW dans Internet Explorer ?
    Par chaours dans le forum Web & réseau
    Réponses: 7
    Dernier message: 03/09/2003, 15h27

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo