GridCtrl.cs :  » GUI » wx-NET » wx » 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 » GUI » wx NET 
wx NET » wx » GridCtrl.cs
//-----------------------------------------------------------------------------
// wx.NET - GridCtrl.cs
//
// The wxGrid controls wrapper class.
//
// Written by Alexander Olk (xenomorph2@onlinehome.de)
// (C) 2004 by Alexander Olk
// Licensed under the wxWidgets license, see LICENSE.txt for details.
//
// $Id: GridCtrl.cs,v 1.6 2007/11/18 19:33:48 harald_meyer Exp $
//-----------------------------------------------------------------------------

using System;
using System.Runtime.InteropServices;
using System.Drawing;

namespace wx{
  public class GridCellDateTimeRenderer : GridCellStringRenderer
  {
    [DllImport("wx-c")] static extern IntPtr wxGridCellDateTimeRenderer_ctor(IntPtr outformat, IntPtr informat);
    [DllImport("wx-c")] static extern void wxGridCellDateTimeRenderer_dtor(IntPtr self);
    [DllImport("wx-c")] static extern void wxGridCellDateTimeRenderer_Draw(IntPtr self, IntPtr grid, IntPtr attr, IntPtr dc, ref Rectangle rect, int row, int col, bool isSelected);
    [DllImport("wx-c")] static extern void wxGridCellDateTimeRenderer_GetBestSize(IntPtr self, IntPtr grid, IntPtr attr, IntPtr dc, int row, int col, out Size size);
    [DllImport("wx-c")] static extern IntPtr wxGridCellDateTimeRenderer_Clone(IntPtr self);
    [DllImport("wx-c")] static extern void wxGridCellDateTimeRenderer_SetParameters(IntPtr self, IntPtr parameter);
    
    public GridCellDateTimeRenderer()
      : this("%c", "%c") {}
      
    public GridCellDateTimeRenderer(string outformat)
      : this(outformat, "%c") {}
      
    public GridCellDateTimeRenderer(string outformat, string informat)
      : this(wxString.SafeNew(outformat), wxString.SafeNew(informat)) {}

        public GridCellDateTimeRenderer(wxString outformat, wxString informat)
            : this(wxGridCellDateTimeRenderer_ctor(Object.SafePtr(outformat), Object.SafePtr(informat)), true) { }

        public GridCellDateTimeRenderer(IntPtr wxObject)
      : base(wxObject) 
    {
      this.wxObject = wxObject;
    }
    
    internal GridCellDateTimeRenderer(IntPtr wxObject, bool memOwn)
      : base(wxObject)
    { 
      this.memOwn = memOwn;
      this.wxObject = wxObject;
    }
    
    //---------------------------------------------------------------------
        
    public override void Dispose()
    {
      if (!disposed)
      {
        if (wxObject != IntPtr.Zero)
        {
          if (memOwn)
          {
            wxGridCellDateTimeRenderer_dtor(wxObject);
            memOwn = false;
          }
        }
        RemoveObject(wxObject);
        wxObject = IntPtr.Zero;
                --validInstancesCount;
                disposed = true;
      }
      
      base.Dispose();
      GC.SuppressFinalize(this);
    }
    
    //---------------------------------------------------------------------
    
    ~GridCellDateTimeRenderer() 
    {
      Dispose();
    }
    
    public override void SetParameters(string parameter)
    {
            wxString wxParam = wxString.SafeNew(parameter);
      wxGridCellDateTimeRenderer_SetParameters(wxObject, Object.SafePtr(wxParam));
    }
    
    public override void Draw(Grid grid, GridCellAttr attr, DC dc, Rectangle rect, int row, int col, bool isSelected)
    {
      wxGridCellDateTimeRenderer_Draw(wxObject, Object.SafePtr(grid), Object.SafePtr(attr), Object.SafePtr(dc), ref rect, row, col, isSelected);
    }
    
    public override Size GetBestSize(Grid grid, GridCellAttr attr, DC dc, int row, int col)
    {
      Size size = new Size();
      wxGridCellDateTimeRenderer_GetBestSize(wxObject, Object.SafePtr(grid), Object.SafePtr(attr), Object.SafePtr(dc), row, col, out size);      
      return size;
    }
    
    public override GridCellRenderer Clone()
    {
      return (GridCellRenderer)FindObject(wxGridCellDateTimeRenderer_Clone(wxObject), typeof(GridCellRenderer));
    }      
  }
  
  //-----------------------------------------------------------------------------
  
    /** Renders an enumeration.
     * Enumerations are specified either as comma separated list or as an array of strings.
     * However, also this array will be passed to the renderer as comma separated list so avoid
     * comma in items.
     */
  public class GridCellEnumRenderer : GridCellStringRenderer
  {
    [DllImport("wx-c")] static extern IntPtr wxGridCellEnumRenderer_ctor(IntPtr choices);
    [DllImport("wx-c")] static extern void wxGridCellEnumRenderer_dtor(IntPtr self);
    [DllImport("wx-c")] static extern void wxGridCellEnumRenderer_Draw(IntPtr self, IntPtr grid, IntPtr attr, IntPtr dc, ref Rectangle rect, int row, int col, bool isSelected);
    [DllImport("wx-c")] static extern void wxGridCellEnumRenderer_GetBestSize(IntPtr self, IntPtr grid, IntPtr attr, IntPtr dc, int row, int col, out Size size);
    [DllImport("wx-c")] static extern IntPtr wxGridCellEnumRenderer_Clone(IntPtr self);
    [DllImport("wx-c")] static extern void wxGridCellEnumRenderer_SetParameters(IntPtr self, IntPtr parameter);
    
    public GridCellEnumRenderer()
      : this("") {}

        static internal string ProduceCommaSeparatedList(string[] choices)
        {
            System.Text.StringBuilder sb = new System.Text.StringBuilder();
            int index=0;
            foreach (string choice in choices)
            {
                if (index > 0)
                    sb.Append(",");
                sb.Append(choice);
                ++index;
            }
            return sb.ToString();
        }

        public GridCellEnumRenderer(string[] choices)
            : this(ProduceCommaSeparatedList(choices))
        {
        }

        /** Argument is a comma separated list.
         */
        public GridCellEnumRenderer(string choices)
            : this(wxString.SafeNew(choices))
        {
        }
        /** Argument is a comma separated list.
         */
        public GridCellEnumRenderer(wxString choices)
      : this(wxGridCellEnumRenderer_ctor(Object.SafePtr(choices)), true) {}
        
    public GridCellEnumRenderer(IntPtr wxObject)
      : base(wxObject) 
    {
      this.wxObject = wxObject;
    }
    
    internal GridCellEnumRenderer(IntPtr wxObject, bool memOwn)
      : base(wxObject)
    { 
      this.memOwn = memOwn;
      this.wxObject = wxObject;
    }
    
    //---------------------------------------------------------------------
        
    public override void Dispose()
    {
      if (!disposed)
      {
        if (wxObject != IntPtr.Zero)
        {
          if (memOwn)
          {
            wxGridCellEnumRenderer_dtor(wxObject);
            memOwn = false;
          }
        }
        RemoveObject(wxObject);
        wxObject = IntPtr.Zero;
                --validInstancesCount;
                disposed = true;
      }
      
      base.Dispose();
      GC.SuppressFinalize(this);
    }
    
    //---------------------------------------------------------------------
    
    ~GridCellEnumRenderer() 
    {
      Dispose();
    }
    
        /** The \c parameter is a comma separated list of the items to be rendered.
         */
    public override void SetParameters(string parameter)
    {
            wxString wxParam = wxString.SafeNew(parameter);
      wxGridCellEnumRenderer_SetParameters(wxObject, Object.SafePtr(wxParam));
    }
    
    public override void Draw(Grid grid, GridCellAttr attr, DC dc, Rectangle rect, int row, int col, bool isSelected)
    {
      wxGridCellEnumRenderer_Draw(wxObject, Object.SafePtr(grid), Object.SafePtr(attr), Object.SafePtr(dc), ref rect, row, col, isSelected);
    }
    
    public override Size GetBestSize(Grid grid, GridCellAttr attr, DC dc, int row, int col)
    {
      Size size = new Size();
      wxGridCellEnumRenderer_GetBestSize(wxObject, Object.SafePtr(grid), Object.SafePtr(attr), Object.SafePtr(dc), row, col, out size);      
      return size;
    }
    
    public override GridCellRenderer Clone()
    {
      return (GridCellRenderer)FindObject(wxGridCellEnumRenderer_Clone(wxObject), typeof(GridCellRenderer));
    }      
  }
  
  //-----------------------------------------------------------------------------

    /** Editor for an enumeration.
     * Enumerations are specified either as comma separated list or as an array of strings.
     * However, also this array will be passed to the renderer as comma separated list so avoid
     * comma in items.
     */
    public class GridCellEnumEditor : GridCellChoiceEditor
  {
    [DllImport("wx-c")] static extern IntPtr wxGridCellEnumEditor_ctor(IntPtr choices);
    [DllImport("wx-c")] static extern void wxGridCellEnumEditor_dtor(IntPtr self);
    [DllImport("wx-c")] static extern void wxGridCellEnumEditor_BeginEdit(IntPtr self, int row, int col, IntPtr grid);
    [DllImport("wx-c")] static extern bool wxGridCellEnumEditor_EndEdit(IntPtr self, int row, int col, IntPtr grid);
    [DllImport("wx-c")] static extern IntPtr wxGridCellEnumEditor_Clone(IntPtr self);
    
    public GridCellEnumEditor()
      : this("") {}

        public GridCellEnumEditor(string[] choices)
            : this(GridCellEnumRenderer.ProduceCommaSeparatedList(choices))
        {
        }

        /** Argument is a comma separated list of items.
         */
        public GridCellEnumEditor(string choices)
            : this(wxString.SafeNew(choices))
        {
        }

        /** Argument is a comma separated list of items.
         */
        public GridCellEnumEditor(wxString choices)
      : this(wxGridCellEnumEditor_ctor(Object.SafePtr(choices)), true) {}
    
    public GridCellEnumEditor(IntPtr wxObject)
      : base(wxObject) 
    {  
      this.wxObject = wxObject;
    }    
    
    internal GridCellEnumEditor(IntPtr wxObject, bool memOwn)
      : base(wxObject)
    { 
      this.memOwn = memOwn;
      this.wxObject = wxObject;
    }
    
    //---------------------------------------------------------------------
        
    public override void Dispose()
    {
      if (!disposed)
      {
        if (wxObject != IntPtr.Zero)
        {
          if (memOwn)
          {
            wxGridCellEnumEditor_dtor(wxObject);
            memOwn = false;
          }
        }
        RemoveObject(wxObject);
        wxObject = IntPtr.Zero;
                --validInstancesCount;
                disposed = true;
      }
      
      base.Dispose();
      GC.SuppressFinalize(this);
    }
    
    //---------------------------------------------------------------------
    
    ~GridCellEnumEditor() 
    {
      Dispose();
    }
      
    public override void BeginEdit(int row, int col, Grid grid)
    {
      wxGridCellEnumEditor_BeginEdit(wxObject, row, col, Object.SafePtr(grid));
    }
    
    public override bool EndEdit(int row, int col, Grid grid)
    {
      return wxGridCellEnumEditor_EndEdit(wxObject, row, col, Object.SafePtr(grid));
    }  

    public override GridCellEditor Clone()
    {
      return (GridCellEditor)FindObject(wxGridCellEnumEditor_Clone(wxObject), typeof(GridCellEditor));
    }        
  }
  
  //-----------------------------------------------------------------------------
  
    /** String editor for potentially longer strings containing blanks.
     * You may input explicit line breaks using the CTRL key in conjunctions
     * with the return or enter key.
     */
  public class GridCellAutoWrapStringEditor : GridCellTextEditor
  {
    [DllImport("wx-c")] static extern IntPtr wxGridCellAutoWrapStringEditor_ctor();
    [DllImport("wx-c")] static extern void wxGridCellAutoWrapStringEditor_dtor(IntPtr self);
    [DllImport("wx-c")] static extern void wxGridCellAutoWrapStringEditor_RegisterDisposable(IntPtr self, Virtual_Dispose onDispose);
    [DllImport("wx-c")] static extern void wxGridCellAutoWrapStringEditor_Create(IntPtr self, IntPtr parent, int id, IntPtr evtHandler);
    [DllImport("wx-c")] static extern IntPtr wxGridCellAutoWrapStringEditor_Clone(IntPtr self);
    
    public GridCellAutoWrapStringEditor()
      : this(wxGridCellAutoWrapStringEditor_ctor(), true) 
    {
      virtual_Dispose = new Virtual_Dispose(VirtualDispose);
      wxGridCellAutoWrapStringEditor_RegisterDisposable(wxObject, virtual_Dispose);
    }

    public GridCellAutoWrapStringEditor(IntPtr wxObject)
      : base(wxObject) 
    {
      this.wxObject = wxObject;
    }
    
    internal GridCellAutoWrapStringEditor(IntPtr wxObject, bool memOwn)
      : base(wxObject)
    { 
      this.memOwn = memOwn;
      this.wxObject = wxObject;
    }
    
    //---------------------------------------------------------------------
        
    public override void Dispose()
    {
      if (!disposed)
      {
        if (wxObject != IntPtr.Zero)
        {
          if (memOwn)
          {
            wxGridCellAutoWrapStringEditor_dtor(wxObject);
            memOwn = false;
          }
        }
        RemoveObject(wxObject);
        wxObject = IntPtr.Zero;
                --validInstancesCount;
                disposed = true;
      }
      
      base.Dispose();
      GC.SuppressFinalize(this);
    }
    
    //---------------------------------------------------------------------
    
    ~GridCellAutoWrapStringEditor() 
    {
      Dispose();
    }
      
    public override void Create(Window parent, int id, EvtHandler evtHandler)
    {
      wxGridCellAutoWrapStringEditor_Create(wxObject, Object.SafePtr(parent), id, Object.SafePtr(evtHandler));
    }
    
    public override GridCellEditor Clone()
    {
      return (GridCellEditor)FindObject(wxGridCellAutoWrapStringEditor_Clone(wxObject), typeof(GridCellEditor));
    }    
  }
  
  //-----------------------------------------------------------------------------

    /** String renderer for potentially longer strings containing blanks.
     * Texts rendered by instances of this class will not overlap into empty cells
     * in the neighbourhood. Longer strings will be displayed wrapped instead.
     */
    public class GridCellAutoWrapStringRenderer : GridCellStringRenderer
  {
    [DllImport("wx-c")] static extern IntPtr wxGridCellAutoWrapStringRenderer_ctor();
    [DllImport("wx-c")] static extern void wxGridCellAutoWrapStringRenderer_dtor(IntPtr self);
    [DllImport("wx-c")] static extern void   wxGridCellAutoWrapStringRenderer_RegisterDisposable(IntPtr self, Virtual_Dispose onDispose);
    [DllImport("wx-c")] static extern void wxGridCellAutoWrapStringRenderer_Draw(IntPtr self, IntPtr grid, IntPtr attr, IntPtr dc, ref Rectangle rect, int row, int col, bool isSelected);
    [DllImport("wx-c")] static extern void wxGridCellAutoWrapStringRenderer_GetBestSize(IntPtr self, IntPtr grid, IntPtr attr, IntPtr dc, int row, int col, out Size size);
    [DllImport("wx-c")] static extern IntPtr wxGridCellAutoWrapStringRenderer_Clone(IntPtr self);
    
    public GridCellAutoWrapStringRenderer()
      : this(wxGridCellAutoWrapStringRenderer_ctor(), true) 
    {
      virtual_Dispose = new Virtual_Dispose(VirtualDispose);
      wxGridCellAutoWrapStringRenderer_RegisterDisposable(wxObject, virtual_Dispose);
    }
        
    public GridCellAutoWrapStringRenderer(IntPtr wxObject)
      : base(wxObject) 
    {
      this.wxObject = wxObject;
    }
    
    internal GridCellAutoWrapStringRenderer(IntPtr wxObject, bool memOwn)
      : base(wxObject)
    { 
      this.memOwn = memOwn;
      this.wxObject = wxObject;
    }
    
    //---------------------------------------------------------------------
        
    public override void Dispose()
    {
      if (!disposed)
      {
        if (wxObject != IntPtr.Zero)
        {
          if (memOwn)
          {
            wxGridCellAutoWrapStringRenderer_dtor(wxObject);
            memOwn = false;
          }
        }
        RemoveObject(wxObject);
        wxObject = IntPtr.Zero;
                --validInstancesCount;
                disposed = true;
      }
      
      base.Dispose();
      GC.SuppressFinalize(this);
    }
    
    //---------------------------------------------------------------------
    
    ~GridCellAutoWrapStringRenderer() 
    {
      Dispose();
    }
    
    public override void Draw(Grid grid, GridCellAttr attr, DC dc, Rectangle rect, int row, int col, bool isSelected)
    {
      wxGridCellAutoWrapStringRenderer_Draw(wxObject, Object.SafePtr(grid), Object.SafePtr(attr), Object.SafePtr(dc), ref rect, row, col, isSelected);
    }
    
    public override Size GetBestSize(Grid grid, GridCellAttr attr, DC dc, int row, int col)
    {
      Size size = new Size();
      wxGridCellAutoWrapStringRenderer_GetBestSize(wxObject, Object.SafePtr(grid), Object.SafePtr(attr), Object.SafePtr(dc), row, col, out size);      
      return size;
    }
    
    public override GridCellRenderer Clone()
    {
      return (GridCellRenderer)FindObject(wxGridCellAutoWrapStringRenderer_Clone(wxObject), typeof(GridCellRenderer));
    }      
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.