Example #1
0
 public void Draw(Gdk.Rectangle exposedArea, DockGroup currentHandleGrp, int currentHandleIndex)
 {
     if (type != DockGroupType.Tabbed)
     {
         DrawSeparators(exposedArea, currentHandleGrp, currentHandleIndex, false, false, null);
         foreach (DockObject it in VisibleObjects)
         {
             DockGroup grp = it as DockGroup;
             if (grp != null)
             {
                 grp.Draw(exposedArea, currentHandleGrp, currentHandleIndex);
             }
         }
     }
 }