FileManagerControlBase.cs :  » Network-Clients » IZWebFileManager » IZ » WebFileManager » 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 » Network Clients » IZWebFileManager 
IZWebFileManager » IZ » WebFileManager » FileManagerControlBase.cs
// Copyright (C) 2006 Igor Zelmanovich <izwebfilemanager@gmail.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

using System;
using System.Collections.Generic;
using System.Text;
using System.Web.UI.WebControls;
using System.Web;
using System.Web.UI;
using System.Globalization;
using System.IO;
using System.Diagnostics.CodeAnalysis;
using System.Resources;
using System.ComponentModel;
using System.Collections.Specialized;
using System.Drawing;
using System.Drawing.Design;

namespace IZ.WebFileManager{
  [PersistChildren (false)]
  [ParseChildren (true)]
  public abstract partial class FileManagerControlBase : WebControl, INamingContainer
  {
    #region Constructors

    public FileManagerControlBase () { }
    public FileManagerControlBase (FileManagerController controller) {
      if (controller == null)
        throw new ArgumentNullException ("controller");

      _controller = controller;
    }

    #endregion

    #region Fields

    FileManagerController _controller;
    static readonly Unit _defaultWidth = Unit.Pixel (600);
    static readonly Unit _defaultHeight = Unit.Pixel (400);
    static readonly Unit _defaultBorderWidth = Unit.Pixel (1);
    static readonly BorderStyle _defaultBorderStyle = BorderStyle.Solid;
    static readonly Color _defaultBorderColor = Color.FromArgb (0xACA899);
    static readonly Color _defaultBackColor = Color.White;
    static readonly Color _defaultForeColor = Color.Black;

    #endregion

    #region Properties

    [Themeable (false)]
    [Localizable (false)]
    [DefaultValue (false)]
    [Category ("Behavior")]
    public bool AllowOverwrite {
      get { return Controller.AllowOverwrite; }
      set { Controller.AllowOverwrite = value; }
    }

    [Themeable (false)]
    [Localizable (false)]
    [DefaultValue (true)]
    [Category ("Behavior")]
    public bool AllowUpload {
      get { return Controller.AllowUpload; }
      set { Controller.AllowUpload = value; }
    }

    /// <summary>
    /// When is set true, Delete, Move and Rename are not allowed, Default value it true.
    /// </summary>
    [Themeable (false)]
    [Localizable (false)]
    [DefaultValue (true)]
    [Category ("Behavior")]
    public bool AllowDelete {
      get { return Controller.AllowDelete; }
      set { Controller.AllowDelete = value; }
    }

    [Themeable (false)]
    [Localizable (false)]
    [DefaultValue (false)]
    [Category ("Behavior")]
    public bool ReadOnly {
      get { return Controller.ReadOnly; }
      set { Controller.ReadOnly = value; }
    }

    [Themeable (false)]
    [Localizable (false)]
    [DefaultValue (false)]
    [Category ("Behavior")]
    public bool DownloadOnDoubleClick {
      get { return Controller.DownloadOnDoubleClick; }
      set { Controller.DownloadOnDoubleClick = value; }
    }

    [Browsable (false)]
    public FileManagerController Controller {
      get {
        EnsureChildControls ();
        return _controller;
      }
    }

    [DefaultValue ("600px")]
    public override Unit Width {
      get {
        if (ControlStyleCreated)
          return ControlStyle.Width;
        return _defaultWidth;
      }
      set { base.Width = value; }
    }

    [DefaultValue ("400px")]
    public override Unit Height {
      get {
        if (ControlStyleCreated)
          return ControlStyle.Height;
        return _defaultHeight;
      }
      set { base.Height = value; }
    }

    [DefaultValue ("1px")]
    public override Unit BorderWidth {
      get {
        if (ControlStyleCreated)
          return ControlStyle.BorderWidth;
        return _defaultBorderWidth;
      }
      set { base.BorderWidth = value; }
    }

    [DefaultValue ("0xACA899")]
    public override Color BorderColor {
      get {
        if (ControlStyleCreated)
          return ControlStyle.BorderColor;
        return _defaultBorderColor;
      }
      set { base.BorderColor = value; }
    }

    [DefaultValue (BorderStyle.Solid)]
    public override BorderStyle BorderStyle {
      get {
        if (ControlStyleCreated)
          return ControlStyle.BorderStyle;
        return _defaultBorderStyle;
      }
      set { base.BorderStyle = value; }
    }

    [DefaultValue ("White")]
    public override Color BackColor {
      get {
        if (ControlStyleCreated)
          return ControlStyle.BackColor;
        return _defaultBackColor;
      }
      set { base.BackColor = value; }
    }

    [DefaultValue ("Black")]
    public override Color ForeColor {
      get {
        if (ControlStyleCreated)
          return ControlStyle.ForeColor;
        return _defaultForeColor;
      }
      set { base.ForeColor = value; }
    }

    #endregion

    #region InitControllerEvents

    private void InitControllerEvents (FileManagerController controller) {
      controller.ExecuteCommand += new EventHandler<ExecuteCommandEventArgs> (controller_ExecuteCommand);
      controller.FileUploaded += new EventHandler<UploadFileEventArgs> (controller_FileUploaded);
      controller.FileUploading += new EventHandler<UploadFileCancelEventArgs> (controller_FileUploading);
      controller.ItemRenamed += new EventHandler<RenameEventArgs> (controller_ItemRenamed);
      controller.ItemRenaming += new EventHandler<RenameCancelEventArgs> (controller_ItemRenaming);
      controller.NewDocumentCreated += new EventHandler<NewDocumentEventArgs> (controller_NewDocumentCreated);
      controller.NewDocumentCreating += new EventHandler<NewDocumentCancelEventArgs> (controller_NewDocumentCreating);
      controller.NewFolderCreated += new EventHandler<NewFolderEventArgs> (controller_NewFolderCreated);
      controller.NewFolderCreating += new EventHandler<NewFolderCancelEventArgs> (controller_NewFolderCreating);
      controller.SelectedItemsActionComplete += new EventHandler<SelectedItemsActionEventArgs> (controller_SelectedItemsActionComplete);
      controller.SelectedItemsAction += new EventHandler<SelectedItemsActionCancelEventArgs> (controller_SelectedItemsAction);
      controller.FileDownload += controller_FileDownload;
    }

    private void controller_FileDownload(object sender, DownloadFileCancelEventArgs e)
    {
      if (FileDownload != null)
        FileDownload(this, e);
    }

    void controller_SelectedItemsAction (object sender, SelectedItemsActionCancelEventArgs e) {
      if (SelectedItemsAction != null)
        SelectedItemsAction (this, e);
    }

    void controller_SelectedItemsActionComplete (object sender, SelectedItemsActionEventArgs e) {
      if (SelectedItemsActionComplete != null)
        SelectedItemsActionComplete (this, e);
    }

    void controller_NewFolderCreating (object sender, NewFolderCancelEventArgs e) {
      if (NewFolderCreating != null)
        NewFolderCreating (this, e);
    }

    void controller_NewFolderCreated (object sender, NewFolderEventArgs e) {
      if (NewFolderCreated != null)
        NewFolderCreated (this, e);
    }

    void controller_NewDocumentCreating (object sender, NewDocumentCancelEventArgs e) {
      if (NewDocumentCreating != null)
        NewDocumentCreating (this, e);
    }

    void controller_NewDocumentCreated (object sender, NewDocumentEventArgs e) {
      if (NewDocumentCreated != null)
        NewDocumentCreated (this, e);
    }

    void controller_ItemRenaming (object sender, RenameCancelEventArgs e) {
      if (ItemRenaming != null)
        ItemRenaming (this, e);
    }

    void controller_ItemRenamed (object sender, RenameEventArgs e) {
      if (ItemRenamed != null)
        ItemRenamed (this, e);
    }

    void controller_FileUploading (object sender, UploadFileCancelEventArgs e) {
      if (FileUploading != null)
        FileUploading (this, e);
    }

    void controller_FileUploaded (object sender, UploadFileEventArgs e) {
      if (FileUploaded != null)
        FileUploaded (this, e);
    }

    void controller_ExecuteCommand (object sender, ExecuteCommandEventArgs e) {
      if (ExecuteCommand != null)
        ExecuteCommand (this, e);
    }
    #endregion


    public virtual FileManagerItemInfo [] SelectedItems { get { return null; } }
    public virtual FileManagerItemInfo CurrentDirectory { get { return null; } }

    protected override void OnInit (EventArgs e) {
      base.OnInit (e);

      RegisterComponent ();

    }

    protected override HtmlTextWriterTag TagKey {
      get { return HtmlTextWriterTag.Div; }
    }

    protected virtual void RegisterComponent () {
      Controller.RegisterComponent (this);
    }

    protected override void CreateChildControls () {
      base.CreateChildControls ();
      if (_controller == null) {
        _controller = new FileManagerController ();
        _controller.ID = "Controller";
        InitControllerEvents (_controller);
        Controls.Add (_controller);
      }
    }

    #region Methods

    internal void RegisterHiddenField (string key, string value) {
      string id = ClientID + "_" + key;
      Page.ClientScript.RegisterHiddenField (id, value);
    }

    internal string GetValueFromHiddenField (string key) {
      return Page.Request.Form [ClientID + "_" + key];
    }

    protected internal virtual string RenderContents () {
      return null;
    }

    internal virtual FileManagerItemInfo ResolveFileManagerItemInfo (string path) { return null; }

    internal virtual FileManagerItemInfo GetCurrentDirectory () { return null; }

    protected override void AddAttributesToRender (HtmlTextWriter writer) {
      base.AddAttributesToRender (writer);
      if (!ControlStyleCreated)
        CreateControlStyle ().AddAttributesToRender (writer);
    }

    protected override Style CreateControlStyle () {
      Style style = new Style ();
      style.Font.Names = new string [] { "Tahoma", "Verdana", "Geneva", "Arial", "Helvetica", "sans-serif" };
      style.Font.Size = FontUnit.Parse ("11px", null);
      style.BorderStyle = _defaultBorderStyle;
      style.BorderWidth = _defaultBorderWidth;
      style.BorderColor = _defaultBorderColor;
      style.BackColor = _defaultBackColor;
      style.ForeColor = _defaultForeColor;
      style.Width = _defaultWidth;
      style.Height = _defaultHeight;
      return style;
    }

    protected override void LoadViewState (object savedState) {
      if (savedState == null)
        return;

      object [] state = (object []) savedState;

      base.LoadViewState (state [0]);
      if (state [1] != null)
        ((IStateManager) ControlStyle).LoadViewState (state [1]);
    }

    protected override object SaveViewState () {
      object [] state = new object [2];
      state [0] = base.SaveViewState ();
      if (ControlStyleCreated)
        state [1] = ((IStateManager) ControlStyle).SaveViewState ();

      if (state [0] != null || state [1] != null)
        return state;

      return null;
    }

    protected string GetResourceString (string name, string defaultValue) {
      return Controller.GetResourceString (name, defaultValue);
    }

    #endregion
    #region FileManagerController Members

    [DefaultValue ("")]
    [Category ("Action")]
    [Themeable (false)]
    [Localizable (false)]
    public string ClientOpenItemFunction {
      get { return Controller.ClientOpenItemFunction; }
      set { Controller.ClientOpenItemFunction = value; }
    }

    [DefaultValue (null)]
    [Category ("Appearance")]
    [Themeable (true)]
    public System.Globalization.CultureInfo Culture {
      get { return Controller.Culture; }
      set { Controller.Culture = value; }
    }

    [Category ("Action")]
    public event EventHandler<ExecuteCommandEventArgs> ExecuteCommand;

    [MergableProperty (false)]
    [PersistenceMode (PersistenceMode.InnerProperty)]
    [Category ("Behavior")]
    [Localizable (false)]
    [Themeable (false)]
    public FileTypeCollection FileTypes {
      get { return Controller.FileTypes; }
    }

    [Category ("Action")]
    public event EventHandler<UploadFileEventArgs> FileUploaded;

    [Category ("Action")]
    public event EventHandler<UploadFileCancelEventArgs> FileUploading;

    [DefaultValue ("")]
    [Category ("Behavior")]
    [Themeable (false)]
    [Localizable (false)]
    public string HiddenFiles {
      get { return Controller.HiddenFiles; }
      set { Controller.HiddenFiles = value; }
    }

    [DefaultValue ("")]
    [Category ("Behavior")]
    [Themeable (false)]
    [Localizable (false)]
    public string HiddenFilesAndFoldersPrefix {
      get { return Controller.HiddenFilesAndFoldersPrefix; }
      set { Controller.HiddenFilesAndFoldersPrefix = value; }
    }

    [DefaultValue (false)]
    [Category ("Behavior")]
    [Themeable (false)]
    [Localizable (false)]
    public bool ShowHiddenFilesAndFolders {
      get { return Controller.ShowHiddenFilesAndFolders; }
      set { Controller.ShowHiddenFilesAndFolders = value; }
    }

    [Category ("Action")]
    public event EventHandler<RenameEventArgs> ItemRenamed;

    [Category ("Action")]
    public event EventHandler<RenameCancelEventArgs> ItemRenaming;

    [Category ("Action")]
    public event EventHandler<NewDocumentEventArgs> NewDocumentCreated;

    [Category ("Action")]
    public event EventHandler<NewDocumentCancelEventArgs> NewDocumentCreating;

    [Category ("Action")]
    public event EventHandler<NewFolderEventArgs> NewFolderCreated;

    [Category ("Action")]
    public event EventHandler<NewFolderCancelEventArgs> NewFolderCreating;

    [DefaultValue ("")]
    [Category ("Behavior")]
    [Themeable (false)]
    [Localizable (false)]
    public string ProhibitedFiles {
      get { return Controller.ProhibitedFiles; }
      set { Controller.ProhibitedFiles = value; }
    }

    [MergableProperty (false)]
    [Category ("Data")]
    [PersistenceMode (PersistenceMode.InnerProperty)]
    [Localizable (false)]
    [Themeable (false)]
    public RootDirectoryCollection RootDirectories {
      get { return Controller.RootDirectories; }
    }

    [MergableProperty (false)]
    [Category ("Behavior")]
    [PersistenceMode (PersistenceMode.InnerProperty)]
    [Localizable (false)]
    [Themeable (false)]
    public SpecialFolderCollection SpecialFolders {
      get { return Controller.SpecialFolders; }
    }

    [Category ("Action")]
    public event EventHandler<SelectedItemsActionEventArgs> SelectedItemsActionComplete;

    [Category ("Action")]
    public event EventHandler<SelectedItemsActionCancelEventArgs> SelectedItemsAction;

    [Category ("Action")]
    public event EventHandler<DownloadFileCancelEventArgs> FileDownload;

    [MergableProperty (false)]
    [PersistenceMode (PersistenceMode.InnerProperty)]
    [Category ("Behavior")]
    [Localizable (false)]
    [Themeable (false)]
    public NewDocumentTemplateCollection Templates {
      get { return Controller.Templates; }
    }

    [Editor ("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof (UITypeEditor))]
    [DefaultValue ("")]
    [UrlProperty]
    [Bindable (true)]
    [Category ("Appearance")]
    public string FileSmallImageUrl {
      get { return Controller.FileSmallImageUrl; }
      set { Controller.FileSmallImageUrl = value; }
    }

    [Editor ("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof (UITypeEditor))]
    [DefaultValue ("")]
    [UrlProperty]
    [Bindable (true)]
    [Category ("Appearance")]
    public string FileLargeImageUrl {
      get { return Controller.FileLargeImageUrl; }
      set { Controller.FileLargeImageUrl = value; }
    }

    [Editor ("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof (UITypeEditor))]
    [DefaultValue ("")]
    [UrlProperty]
    [Bindable (true)]
    [Category ("Appearance")]
    public string FolderSmallImageUrl {
      get { return Controller.FolderSmallImageUrl; }
      set { Controller.FolderSmallImageUrl = value; }
    }

    [Editor ("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof (UITypeEditor))]
    [DefaultValue ("")]
    [UrlProperty]
    [Bindable (true)]
    [Category ("Appearance")]
    public string FolderLargeImageUrl {
      get { return Controller.FolderLargeImageUrl; }
      set { Controller.FolderLargeImageUrl = value; }
    }

    [Editor ("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof (UITypeEditor))]
    [DefaultValue ("")]
    [UrlProperty]
    [Bindable (true)]
    [Category ("Appearance")]
    public string RootFolderSmallImageUrl {
      get { return Controller.RootFolderSmallImageUrl; }
      set { Controller.RootFolderSmallImageUrl = value; }
    }

    [Editor ("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof (UITypeEditor))]
    [DefaultValue ("")]
    [UrlProperty]
    [Bindable (true)]
    [Category ("Appearance")]
    public string RootFolderLargeImageUrl {
      get { return Controller.RootFolderLargeImageUrl; }
      set { Controller.RootFolderLargeImageUrl = value; }
    }

    [DefaultValue ("")]
    [Bindable (true)]
    [Category ("Appearance")]
    public string ImagesFolder {
      get { return Controller.ImagesFolder; }
      set { Controller.ImagesFolder = value; }
    }

    [Editor ("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof (UITypeEditor))]
    [DefaultValue ("")]
    [UrlProperty]
    [Bindable (true)]
    [Category ("Appearance")]
    public string DeleteImageUrl {
      get { return Controller.DeleteImageUrl; }
      set { Controller.DeleteImageUrl = value; }
    }

    [Editor ("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof (UITypeEditor))]
    [DefaultValue ("")]
    [UrlProperty]
    [Bindable (true)]
    [Category ("Appearance")]
    public string RenameImageUrl {
      get { return Controller.RenameImageUrl; }
      set { Controller.RenameImageUrl = value; }
    }

    [Editor ("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof (UITypeEditor))]
    [DefaultValue ("")]
    [UrlProperty]
    [Bindable (true)]
    [Category ("Appearance")]
    public string CopyImageUrl {
      get { return Controller.CopyImageUrl; }
      set { Controller.CopyImageUrl = value; }
    }

    [Editor ("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof (UITypeEditor))]
    [DefaultValue ("")]
    [UrlProperty]
    [Bindable (true)]
    [Category ("Appearance")]
    public string MoveImageUrl {
      get { return Controller.MoveImageUrl; }
      set { Controller.MoveImageUrl = value; }
    }

    [Editor ("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof (UITypeEditor))]
    [DefaultValue ("")]
    [UrlProperty]
    [Bindable (true)]
    [Category ("Appearance")]
    public string FolderUpImageUrl {
      get { return Controller.FolderUpImageUrl; }
      set { Controller.FolderUpImageUrl = value; }
    }

    [Editor ("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof (UITypeEditor))]
    [DefaultValue ("")]
    [UrlProperty]
    [Bindable (true)]
    [Category ("Appearance")]
    public string NewFolderImageUrl {
      get { return Controller.NewFolderImageUrl; }
      set { Controller.NewFolderImageUrl = value; }
    }

    [Editor ("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof (UITypeEditor))]
    [DefaultValue ("")]
    [UrlProperty]
    [Bindable (true)]
    [Category ("Appearance")]
    public string ViewImageUrl {
      get { return Controller.ViewImageUrl; }
      set { Controller.ViewImageUrl = value; }
    }

    [Editor ("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof (UITypeEditor))]
    [DefaultValue ("")]
    [UrlProperty]
    [Bindable (true)]
    [Category ("Appearance")]
    public string ProcessImageUrl {
      get { return Controller.ProcessImageUrl; }
      set { Controller.ProcessImageUrl = value; }
    }

    [Editor ("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof (UITypeEditor))]
    [DefaultValue ("")]
    [UrlProperty]
    [Bindable (true)]
    [Category ("Appearance")]
    public string RefreshImageUrl {
      get { return Controller.RefreshImageUrl; }
      set { Controller.RefreshImageUrl = value; }
    }

    #endregion
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.