FileDialog.cs :  » 2.6.4-mono-.net-core » System.Windows.Forms » System » Windows » Forms » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » 2.6.4 mono .net core » System.Windows.Forms 
System.Windows.Forms » System » Windows » Forms » FileDialog.cs
//
// System.Windows.Forms.FileDialog.cs
//
// Author:
//   stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)
//   Dennis Hayes (dennish@raytek.com)
//   Aleksey Ryabchuk (ryabchuk@yahoo.com)
// (C) 2002 Ximian, Inc
//

//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
// 
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
// 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System.ComponentModel;
using System.Runtime.InteropServices;

namespace System.Windows.Forms{

  // <summary>
  // Displays a dialog window from which the user can select a file.
  // </summary>

    public abstract class FileDialog : CommonDialog {
    internal const  int MAX_PATH = 1024*8;

    string fileName;
    bool checkFileExists;
    bool addExtencsion;
    string defaultExt;
    int filterIndex;
    string filter;
    bool checkPathExists;
    bool dereferenceLinks;
    bool showHelp;
    string title;
    string initialDirectory;
    bool restoreDirectory;
    bool validateNames;
    internal bool isSave = false;
    
    protected static readonly object EventFileOk;
    internal FileDialog ( )
    {
      setDefaults ( );
    }
 
    public bool AddExtension {
      get { return addExtencsion;  }
      set { addExtencsion = value; }
    }

    public virtual bool CheckFileExists {
      get { return checkFileExists;  }
      set { checkFileExists = value; }
    }

    public bool CheckPathExists {
      get { return checkPathExists;  }
      set { checkPathExists = value;  }
    }

    public string DefaultExt {
      get { return defaultExt;  }
      set { 
        if ( value.StartsWith ( "." ) )
          defaultExt = value.Remove( 0, 1 );
        else 
          defaultExt = value; 
      }
    }

    public bool DereferenceLinks {
      get { return dereferenceLinks;  }
      set { dereferenceLinks = value; }
    }

    public string FileName {
      get { return fileName;  }
      set { fileName = value; }
    }

    [MonoTODO]
    public string[] FileNames {
      get {
        throw new NotImplementedException ();
      }
    }

    public string Filter {
      get { return filter; }
      set { 
        if ( value.Length > 0 ) {
          int sepNum = getSeparatorsCount ( value );
          if ( ( sepNum / 2 ) * 2 == sepNum ) {
            // number of separators should be odd
            throw new ArgumentException ("Parameter format is invalid");
          }
        }
        filter = value;
      }
    }

    public int FilterIndex {
      get { return filterIndex;  }
      set { filterIndex = value; }
    }

    public string InitialDirectory {
      get { return initialDirectory;  }
      set { initialDirectory = value; }
    }

    public bool RestoreDirectory {
      get { return restoreDirectory;  }
      set { restoreDirectory = value; }
    }

    public bool ShowHelp {
      get { return showHelp;  }
      set { showHelp = value; }
    }

    public string Title {
      get { return title; }
      set { title = value;}
    }

    public bool ValidateNames {
      get { return validateNames;  }
      set { validateNames = value; }
    }

    public override void Reset()
    {
      setDefaults ( );
    }

    [MonoTODO]
    public override string ToString()
    {
      //FIXME:
      return base.ToString();
    }

    public event CancelEventHandler FileOk;

    [MonoTODO]
    protected  override IntPtr HookProc( IntPtr hWnd, int msg, IntPtr wparam, IntPtr lparam )
    {
      switch ( msg ) {
      case ( int ) Msg.WM_NOTIFY:
        OFNOTIFY ofnhdr = ( OFNOTIFY )Marshal.PtrToStructure ( lparam, typeof ( OFNOTIFY ) );
        
        switch ( ofnhdr.code ) {
        case ( int ) CommDlgNotifications.CDN_FILEOK:
          OPENFILENAME ofn = ( OPENFILENAME ) Marshal.PtrToStructure ( ofnhdr.lpOFN, typeof ( OPENFILENAME ) );
          string oldFileName = FileName;
          FileName = Win32.WineToUnixPath(ofn.lpstrFile);
          CancelEventArgs e = new CancelEventArgs ( false );
          OnFileOk ( e );
          if ( e.Cancel ){
            Win32.SetWindowLong( hWnd, GetWindowLongFlag.DWL_MSGRESULT, 1 );
            return ( IntPtr ) 1 ;
          }
        break;
        case ( int ) CommDlgNotifications.CDN_HELP:
          OnHelpRequest ( EventArgs.Empty );
        break;
        }
      break;
      }
      return base.HookProc(hWnd, msg, wparam, lparam);
    }

    protected  void OnFileOk( CancelEventArgs e )
    {
      if ( FileOk != null )
        FileOk ( this, e );
    }

    [MonoTODO]
    protected  override bool RunDialog( IntPtr hWndOwner )
    {
      OPENFILENAME opf = new OPENFILENAME();
      opf.hwndOwner = hWndOwner;

      initOpenFileName ( ref opf );
      
      bool res;
      uint error = 0;
      
      if (isSave)
         res = Win32.GetSaveFileName ( ref opf );
      else
         res = Win32.GetOpenFileName ( ref opf );
         
      if (!res)
      {
        error = Win32.CommDlgExtendedError();
        
        if (error==(uint)CommonDlgErrorCode.CDERR_STRUCTSIZE)  // This system does not support the place bar
        {                
          initOpenFileName ( ref opf );
          opf.lStructSize  = (uint)Marshal.SizeOf(new OPENFILENAME_PREWIN50());    
          //  Try with the struct for older Systems
          if (isSave)
             res = Win32.GetSaveFileName ( ref opf );
          else
             res = Win32.GetOpenFileName ( ref opf );          
        }                
      }                   
      
      if ( res )
        FileName = Win32.WineToUnixPath(opf.lpstrFile);
      else {        
        if ( error != 0 ) {
          string errorMes = string.Empty;
          switch ( error ) {
          case (uint)CommDlgErrors.FNERR_BUFFERTOOSMALL:
            errorMes = "Too many files selected. Please select fewer files and try again.";
          break;
          case (uint)CommDlgErrors.FNERR_INVALIDFILENAME:
            errorMes = "A file name is invalid.";
          break;
          }
          throw new InvalidOperationException( errorMes );
        }
      }
      return res;
    }

    //protected virtual IntPtr Instance{}
    //protected virtual int Options{}

    internal virtual void initOpenFileName ( ref OPENFILENAME opf ) 
    {
      opf.lStructSize  = (uint)Marshal.SizeOf( opf );
      char[] FileNameBuffer = new char[MAX_PATH];
      opf.lpstrFile = new string( FileNameBuffer );
      opf.nMaxFile = (uint) opf.lpstrFile.Length;
      opf.lpfnHook = new Win32.FnHookProc ( this.HookProc );
      opf.Flags = (int) ( OpenFileDlgFlags.OFN_ENABLEHOOK | OpenFileDlgFlags.OFN_EXPLORER | OpenFileDlgFlags.OFN_ENABLESIZING);

      // convert filter to the proper format accepted by GetOpenFileName
      int FilterLength =  Filter.Length;
      if ( FilterLength > 0 ) {
        char[] FilterString = new char[ FilterLength + 1 ];
        Filter.CopyTo ( 0, FilterString, 0, FilterLength );
        int index = Array.IndexOf ( FilterString, '|' );
        while ( index != -1 ) {
          FilterString [ index ] = '\0';
          index = Array.IndexOf ( FilterString, '|', index );
        }
        FilterString [ FilterLength ] = '\0';
        opf.lpstrFilter = new string ( FilterString );
      }

      if ( FilterIndex >= 0 )
        opf.nFilterIndex = (uint)FilterIndex;

      opf.lpstrDefExt = DefaultExt;
      opf.lpstrTitle = Title;
      opf.lpstrInitialDir = InitialDirectory;

      if ( CheckFileExists )
        opf.Flags |= (int) ( OpenFileDlgFlags.OFN_FILEMUSTEXIST );
      if ( CheckPathExists )
        opf.Flags |= (int) ( OpenFileDlgFlags.OFN_PATHMUSTEXIST );
      if ( !DereferenceLinks )
        opf.Flags |= (int) ( OpenFileDlgFlags.OFN_NODEREFERENCELINKS );
      if ( ShowHelp )
        opf.Flags |= (int) ( OpenFileDlgFlags.OFN_SHOWHELP );
      if ( RestoreDirectory )
        opf.Flags |= (int) ( OpenFileDlgFlags.OFN_NOCHANGEDIR );
      if ( !ValidateNames )
        opf.Flags |= (int) ( OpenFileDlgFlags.OFN_NOVALIDATE );      
    }

    private int getSeparatorsCount ( string filter )
    {
      int sepNum = 0;
      foreach ( char c in filter )
        if ( c == '|' ) sepNum++;
      return sepNum;
    }
    
    private void setDefaults ( ) 
    {
      fileName = string.Empty;
      checkFileExists = false;
      addExtencsion = true;
      defaultExt = string.Empty;
      filter = string.Empty;
      filterIndex = 1;
      checkPathExists = true;
      dereferenceLinks = true;
      showHelp = false;
      title = string.Empty;
      initialDirectory = string.Empty;
      restoreDirectory = false;
      validateNames = true;
    }
   }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.