CommandBarManager.cs :  » Game » RealmForge » 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 » Game » RealmForge 
RealmForge » System » Windows » Forms » CommandBarManager.cs
// ---------------------------------------------------------
// Windows Forms CommandBar Control
// Copyright (C) 2001-2003 Lutz Roeder. All rights reserved.
// http://www.aisto.com/roeder
// roeder@aisto.com
// ---------------------------------------------------------
namespace System.Windows.Forms{
  using System;
  using System.Drawing;
  using System.Collections;
  using System.ComponentModel;
  using System.Runtime.InteropServices;
  using System.Security.Permissions;
  using System.Windows.Forms;


  public class CommandBarManager : Control
  {
    private CommandBarCollection commandBars;
  
    public CommandBarManager()
    {
      this.SetStyle(ControlStyles.UserPaint, false);
      this.TabStop = false;
      this.Dock = DockStyle.Top;
      this.commandBars = new CommandBarCollection(this);
    }

    protected override void Dispose(bool disposing)
    {
      if (disposing)
      {
        this.commandBars = null;
      }

      base.Dispose(disposing);
    }
  
    [TypeConverter(typeof(ExpandableObjectConverter)), DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
    public CommandBarCollection CommandBars
    {
      get 
      { 
        return this.commandBars; 
      }
    }
  
    protected override Size DefaultSize
    {
      get 
      { 
        return new Size(100, 22 * 2); 
      }
    }

    protected override void CreateHandle()
    {
      if (!this.RecreatingHandle)
      {
        NativeMethods.INITCOMMONCONTROLSEX init = new NativeMethods.INITCOMMONCONTROLSEX();
        init.Size = Marshal.SizeOf(typeof(NativeMethods.INITCOMMONCONTROLSEX));
        init.Flags = NativeMethods.ICC_BAR_CLASSES | NativeMethods.ICC_COOL_CLASSES;
        NativeMethods.InitCommonControlsEx(init);
      }

      base.CreateHandle();
    }

    protected override CreateParams CreateParams
    {
      [SecurityPermission(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.UnmanagedCode)] 
      get
      {
        CreateParams createParams = base.CreateParams;
        createParams.ClassName = NativeMethods.REBARCLASSNAME;
        createParams.Style = NativeMethods.WS_CHILD | NativeMethods.WS_VISIBLE | NativeMethods.WS_CLIPCHILDREN | NativeMethods.WS_CLIPSIBLINGS;
        createParams.Style |= NativeMethods.CCS_NODIVIDER | NativeMethods.CCS_NOPARENTALIGN | NativeMethods.CCS_NORESIZE;
        createParams.Style |= NativeMethods.RBS_VARHEIGHT | NativeMethods.RBS_BANDBORDERS | NativeMethods.RBS_AUTOSIZE;
        return createParams;
      }
    }

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

      this.ReleaseBands();
      
      this.BeginUpdate();
  
      for (int i = 0; i < this.commandBars.Count; i++)
      {
        NativeMethods.REBARBANDINFO bandInfo = this.CreateBandInfo(i);
        NativeMethods.SendMessage(this.Handle, NativeMethods.RB_INSERTBAND, i, ref bandInfo);
      }

      this.UpdateSize();

      this.EndUpdate();
      
      this.CaptureBands();
    }

    [SecurityPermission(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.UnmanagedCode)] 
    protected override void WndProc(ref Message message)
    {
      base.WndProc(ref message);

      switch (message.Msg)
      {
        case NativeMethods.WM_NOTIFY:
        case NativeMethods.WM_NOTIFY + NativeMethods.WM_REFLECT:
        {
          NativeMethods.NMHDR note = (NativeMethods.NMHDR)message.GetLParam(typeof(NativeMethods.NMHDR));
          switch (note.code)
          {
            case NativeMethods.RBN_HEIGHTCHANGE:
              this.UpdateSize();
              break;

            case NativeMethods.RBN_CHEVRONPUSHED:
              this.NotifyChevronPushed(ref message);
              break;
          }
        }
          break;
      }
    }
  
    private void NotifyChevronPushed(ref Message message)
    {
        NativeMethods.NMREBARCHEVRON nrch = (NativeMethods.NMREBARCHEVRON)message.GetLParam(typeof(NativeMethods.NMREBARCHEVRON)); 
      int index = nrch.wID - 0xEB00;
      if ((index < this.commandBars.Count) && (this.commandBars[index] != null))
      {
            Point point = new Point(nrch.rc.left, nrch.rc.bottom);
            this.commandBars[index].Show(this, point);
        }
    }

    private void BeginUpdate()
    {
      NativeMethods.SendMessage(Handle, NativeMethods.WM_SETREDRAW, 0, 0);
    }

    private void EndUpdate()
    {
      NativeMethods.SendMessage(Handle, NativeMethods.WM_SETREDRAW, 1, 0);
    }

    [SecurityPermission(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.UnmanagedCode)] 
    public override bool PreProcessMessage(ref Message msg)
    {
      foreach (CommandBar commandBar in this.commandBars)
      {
        if (commandBar.PreProcessMessage(ref msg))
        {
          return true;
        }
      }

      return false;
    }

    private void UpdateBand(CommandBar commandBar)
    {
      if (this.IsHandleCreated)
      {
        this.BeginUpdate();

        for (int i = 0; i < this.commandBars.Count; i++)
        {
          NativeMethods.REBARBANDINFO rbbi = new NativeMethods.REBARBANDINFO();
          rbbi.cbSize = Marshal.SizeOf(typeof(NativeMethods.REBARBANDINFO));
          rbbi.fMask = NativeMethods.RBBIM_STYLE | NativeMethods.RBBIM_ID | NativeMethods.RBBIM_TEXT | NativeMethods.RBBIM_STYLE | NativeMethods.RBBIM_CHILD | NativeMethods.RBBIM_SIZE | NativeMethods.RBBIM_CHILDSIZE | NativeMethods.RBBIM_IDEALSIZE;
          NativeMethods.SendMessage(this.Handle, NativeMethods.RB_GETBANDINFO, i, ref rbbi);

          if (commandBar.Handle == rbbi.hwndChild)
          {
            if ((rbbi.cyMinChild != commandBar.Height) || (rbbi.cx != commandBar.Width) || (rbbi.cxIdeal != commandBar.Width))
            {
              rbbi.cyMinChild = commandBar.Height;
              rbbi.cx = commandBar.Width;
               rbbi.cxIdeal = commandBar.Width;
              NativeMethods.SendMessage(this.Handle, NativeMethods.RB_SETBANDINFO, i, ref rbbi);
            }
          }
        }

        this.UpdateSize();

        this.EndUpdate();
      }
    }

    private void UpdateSize()
    {
      int height = NativeMethods.SendMessage(this.Handle, NativeMethods.RB_GETBARHEIGHT, 0, 0);
      this.Height = height + 1;
    }

    private NativeMethods.REBARBANDINFO CreateBandInfo(int index)
    {
      CommandBar commandBar = this.commandBars[index];

      NativeMethods.REBARBANDINFO rbbi = new NativeMethods.REBARBANDINFO();
      rbbi.cbSize = Marshal.SizeOf(typeof(NativeMethods.REBARBANDINFO));
      rbbi.fMask = 0;
      rbbi.clrFore = 0;
      rbbi.clrBack = 0;
      rbbi.iImage = 0;
      rbbi.hbmBack = IntPtr.Zero;
      rbbi.lParam = 0;
      rbbi.cxHeader = 0;

      rbbi.fMask |= NativeMethods.RBBIM_ID;
      rbbi.wID = 0xEB00 + index;

      if ((commandBar.Text != null) && (commandBar.Text.Length != 0))
      {
        rbbi.fMask |= NativeMethods.RBBIM_TEXT;
        rbbi.lpText = Marshal.StringToHGlobalUni(commandBar.Text);
        rbbi.cch = (commandBar.Text == null) ? 0 : commandBar.Text.Length;
      }

      rbbi.fMask |= NativeMethods.RBBIM_STYLE;
      rbbi.fStyle = NativeMethods.RBBS_CHILDEDGE | NativeMethods.RBBS_FIXEDBMP | NativeMethods.RBBS_GRIPPERALWAYS;
      rbbi.fStyle |= NativeMethods.RBBS_BREAK;
      rbbi.fStyle |= NativeMethods.RBBS_USECHEVRON;

      rbbi.fMask |= NativeMethods.RBBIM_CHILD;
      rbbi.hwndChild = commandBar.Handle; 

      rbbi.fMask |= NativeMethods.RBBIM_CHILDSIZE;
      rbbi.cyMinChild = commandBar.Height;
      rbbi.cxMinChild = 0;
      rbbi.cyChild = 0;
      rbbi.cyMaxChild = commandBar.Height; 
      rbbi.cyIntegral = commandBar.Height;
    
      rbbi.fMask |= NativeMethods.RBBIM_SIZE;
      rbbi.cx = commandBar.Width;

      rbbi.fMask |= NativeMethods.RBBIM_IDEALSIZE;
      rbbi.cxIdeal = commandBar.Width;

      return rbbi;        
    }

    internal void UpdateBands()
    {
      if (this.IsHandleCreated)
      {
        this.RecreateHandle();
      }
    }

    private void CommandBar_HandleCreated(object sender, EventArgs e)
    {
      this.ReleaseBands();
      CommandBar commandBar = (CommandBar) sender;
      this.UpdateBand(commandBar);
      this.CaptureBands();
    }
  
    private void CommandBar_TextChanged(object sender, EventArgs e)
    {
      CommandBar commandBar = (CommandBar) sender;
      this.UpdateBand(commandBar);
    }

    /* 
    private void CommandBar_Resize(object sender, EventArgs e)
    {
      this.ReleaseBands();
      CommandBar commandBar = (CommandBar) sender;
      this.UpdateBand(commandBar);
      this.CaptureBands();
    }
    */

    private void CaptureBands()
    {
      foreach (CommandBar commandBar in this.commandBars)
      {
        commandBar.HandleCreated += new EventHandler(this.CommandBar_HandleCreated);
        commandBar.TextChanged += new EventHandler(this.CommandBar_TextChanged);
        // TODO commandBar.Resize += new EventHandler(this.CommandBar_Resize);
      }
    }

    private void ReleaseBands()
    {
      foreach (CommandBar commandBar in this.commandBars)
      {
        commandBar.HandleCreated -= new EventHandler(this.CommandBar_HandleCreated);
        commandBar.TextChanged -= new EventHandler(this.CommandBar_TextChanged);
        // TODO commandBar.Resize -= new EventHandler(this.CommandBar_Resize);
      }
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.