protected void paint(SeaGlassContext context, Graphics g) {
    if (handleIcon != null && toolBar.isFloatable()) {
      int startX =
          toolBar.getComponentOrientation().isLeftToRight()
              ? 0
              : toolBar.getWidth() - SeaGlassIcon.getIconWidth(handleIcon, context);
      SeaGlassIcon.paintIcon(
          handleIcon,
          context,
          g,
          startX,
          0,
          SeaGlassIcon.getIconWidth(handleIcon, context),
          SeaGlassIcon.getIconHeight(handleIcon, context));
    }

    SeaGlassContext subcontext = getContext(toolBar, Region.TOOL_BAR_CONTENT, contentStyle);
    // paintContent(subcontext, g, contentRect);
    subcontext.dispose();
  }