aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Installer/Code/ShellShortcut.cs
blob: 33b60732c3f6eb4f7e267764f42a4549dc4f87d3 (plain)
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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
/**************************************************************************
*
* Filename:     ShellShortcut.cs
* Author:       Mattias Sj�gren (mattias@mvps.org)
*               http://www.msjogren.net/dotnet/
*
* Description:  Defines a .NET friendly class, ShellShortcut, for reading
*               and writing shortcuts.
*               Define the conditional compilation symbol UNICODE to use
*               IShellLinkW internally.
*
* Public types: class ShellShortcut
*
*
* Dependencies: ShellLinkNative.cs
*
*
* Copyright �2001-2002, Mattias Sj�gren
* 
**************************************************************************/

using System;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Runtime.InteropServices;
using System.Text;
using System.Windows.Forms;


namespace MediaBrowser.Installer.Code
{
	/// <remarks>
	///   .NET friendly wrapper for the ShellLink class
	/// </remarks>
	public class ShellShortcut : IDisposable
	{
    private const int INFOTIPSIZE = 1024;
    private const int MAX_PATH = 260;

    private const int SW_SHOWNORMAL = 1;
    private const int SW_SHOWMINIMIZED = 2;
    private const int SW_SHOWMAXIMIZED = 3;
    private const int SW_SHOWMINNOACTIVE = 7;


  #if UNICODE
    private IShellLinkW m_Link;
  #else
    private IShellLinkA m_Link;
  #endif
    private string m_sPath;

    ///
    /// <param name='linkPath'>
    ///   Path to new or existing shortcut file (.lnk).
    /// </param>
    ///
    public ShellShortcut(string linkPath)
    {
      IPersistFile pf;

      m_sPath = linkPath;

    #if UNICODE
      m_Link = (IShellLinkW) new ShellLink();
    #else
      m_Link = (IShellLinkA) new ShellLink();
    #endif

      if ( File.Exists( linkPath ) ) {
        pf = (IPersistFile)m_Link;
        pf.Load( linkPath, 0 );
      }

    }

    //
    //  IDisplosable implementation
    //
    public void Dispose()
    {
      if ( m_Link != null ) {
        Marshal.ReleaseComObject( m_Link );
        m_Link = null;
      }
    }

    /// <value>
    ///   Gets or sets the argument list of the shortcut.
    /// </value>
    public string Arguments
    {
      get
      {
        StringBuilder sb = new StringBuilder( INFOTIPSIZE );
        m_Link.GetArguments( sb, sb.Capacity );
        return sb.ToString();
      }
      set { m_Link.SetArguments( value ); }
    }

    /// <value>
    ///   Gets or sets a description of the shortcut.
    /// </value>
    public string Description
    {
      get
      {
        StringBuilder sb = new StringBuilder( INFOTIPSIZE );
        m_Link.GetDescription( sb, sb.Capacity );
        return sb.ToString();
      }
      set { m_Link.SetDescription( value ); }
    }

    /// <value>
    ///   Gets or sets the working directory (aka start in directory) of the shortcut.
    /// </value>
    public string WorkingDirectory
    {
      get
      {
        StringBuilder sb = new StringBuilder( MAX_PATH );
        m_Link.GetWorkingDirectory( sb, sb.Capacity );
        return sb.ToString();
      }
      set { m_Link.SetWorkingDirectory( value ); }
    }

    //
    // If Path returns an empty string, the shortcut is associated with
    // a PIDL instead, which can be retrieved with IShellLink.GetIDList().
    // This is beyond the scope of this wrapper class.
    //
    /// <value>
    ///   Gets or sets the target path of the shortcut.
    /// </value>
    public string Path
    {
      get
      {
      #if UNICODE
        WIN32_FIND_DATAW wfd = new WIN32_FIND_DATAW();
      #else
        WIN32_FIND_DATAA wfd = new WIN32_FIND_DATAA();
      #endif
        StringBuilder sb = new StringBuilder( MAX_PATH );

        m_Link.GetPath( sb, sb.Capacity, out wfd, SLGP_FLAGS.SLGP_UNCPRIORITY );
        return sb.ToString();
      }
      set { m_Link.SetPath( value ); }
    }

    /// <value>
    ///   Gets or sets the path of the <see cref="Icon"/> assigned to the shortcut.
    /// </value>
    /// <summary>
    ///   <seealso cref="IconIndex"/>
    /// </summary>
    public string IconPath
    {
      get
      {
        StringBuilder sb = new StringBuilder( MAX_PATH );
        int nIconIdx;
        m_Link.GetIconLocation( sb, sb.Capacity, out nIconIdx );
        return sb.ToString();
      }
      set { m_Link.SetIconLocation( value, IconIndex ); }
    }

    /// <value>
    ///   Gets or sets the index of the <see cref="Icon"/> assigned to the shortcut.
    ///   Set to zero when the <see cref="IconPath"/> property specifies a .ICO file.
    /// </value>
    /// <summary>
    ///   <seealso cref="IconPath"/>
    /// </summary>
    public int IconIndex
    {
      get
      {
        StringBuilder sb = new StringBuilder( MAX_PATH );
        int nIconIdx;
        m_Link.GetIconLocation( sb, sb.Capacity, out nIconIdx );
        return nIconIdx;
      }
      set { m_Link.SetIconLocation( IconPath, value ); }
    }

    /// <value>
    ///   Retrieves the Icon of the shortcut as it will appear in Explorer.
    ///   Use the <see cref="IconPath"/> and <see cref="IconIndex"/>
    ///   properties to change it.
    /// </value>
    public Icon Icon
    {
      get
      {
        StringBuilder sb = new StringBuilder( MAX_PATH );
        int nIconIdx;
        IntPtr hIcon, hInst;
        Icon ico, clone;


        m_Link.GetIconLocation( sb, sb.Capacity, out nIconIdx );
        hInst = Marshal.GetHINSTANCE( this.GetType().Module );
        hIcon = Native.ExtractIcon( hInst, sb.ToString(), nIconIdx );
        if ( hIcon == IntPtr.Zero )
          return null;

        // Return a cloned Icon, because we have to free the original ourselves.
        ico = Icon.FromHandle( hIcon );
        clone = (Icon)ico.Clone();
        ico.Dispose();
        Native.DestroyIcon( hIcon );
        return clone;
      }
    }

    /// <value>
    ///   Gets or sets the System.Diagnostics.ProcessWindowStyle value
    ///   that decides the initial show state of the shortcut target. Note that
    ///   ProcessWindowStyle.Hidden is not a valid property value.
    /// </value>
    public ProcessWindowStyle WindowStyle
    {
      get
      {
        int nWS;
        m_Link.GetShowCmd( out nWS );

        switch ( nWS ) {
          case SW_SHOWMINIMIZED:
          case SW_SHOWMINNOACTIVE:
            return ProcessWindowStyle.Minimized;
          
          case SW_SHOWMAXIMIZED:
            return ProcessWindowStyle.Maximized;

          default:
            return ProcessWindowStyle.Normal;
        }
      }
      set
      {
        int nWS;

        switch ( value ) {
          case ProcessWindowStyle.Normal:
            nWS = SW_SHOWNORMAL;
            break;

          case ProcessWindowStyle.Minimized:
            nWS = SW_SHOWMINNOACTIVE;
            break;

          case ProcessWindowStyle.Maximized:
            nWS = SW_SHOWMAXIMIZED;
            break;

          default: // ProcessWindowStyle.Hidden
            throw new ArgumentException("Unsupported ProcessWindowStyle value.");
        }

        m_Link.SetShowCmd( nWS );
      
      }
    }

    /// <value>
    ///   Gets or sets the hotkey for the shortcut.
    /// </value>
    public Keys Hotkey
    {
      get
      {
        short wHotkey;
        int dwHotkey;

        m_Link.GetHotkey( out wHotkey );

        //
        // Convert from IShellLink 16-bit format to Keys enumeration 32-bit value
        // IShellLink: 0xMMVK
        // Keys:  0x00MM00VK        
        //   MM = Modifier (Alt, Control, Shift)
        //   VK = Virtual key code
        //       
        dwHotkey = ((wHotkey & 0xFF00) << 8) | (wHotkey & 0xFF);
        return (Keys) dwHotkey;
      }
      set
      {
        short wHotkey;

        if ( (value & Keys.Modifiers) == 0 )
          throw new ArgumentException("Hotkey must include a modifier key.");

        //    
        // Convert from Keys enumeration 32-bit value to IShellLink 16-bit format
        // IShellLink: 0xMMVK
        // Keys:  0x00MM00VK        
        //   MM = Modifier (Alt, Control, Shift)
        //   VK = Virtual key code
        //       
        wHotkey = unchecked((short) ( ((int) (value & Keys.Modifiers) >> 8) | (int) (value & Keys.KeyCode) ));
        m_Link.SetHotkey( wHotkey );

      }
    }

    /// <summary>
    ///   Saves the shortcut to disk.
    /// </summary>
    public void Save()
    {
      IPersistFile pf = (IPersistFile) m_Link;
      pf.Save( m_sPath, true );
    }

    /// <summary>
    ///   Returns a reference to the internal ShellLink object,
    ///   which can be used to perform more advanced operations
    ///   not supported by this wrapper class, by using the
    ///   IShellLink interface directly.
    /// </summary>
    public object ShellLink
    {
      get { return m_Link; }
    }


  #region Native Win32 API functions
    private class Native
    {
      [DllImport("shell32.dll", CharSet=CharSet.Auto)]
      public static extern IntPtr ExtractIcon(IntPtr hInst, string lpszExeFileName, int nIconIndex);

      [DllImport("user32.dll")]
      public static extern bool DestroyIcon(IntPtr hIcon);
    }
  #endregion

	}
}