CTToolbarView.h 500 B

123456789101112131415
  1. // Copyright (c) 2009 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #pragma once
  5. #import <Cocoa/Cocoa.h>
  6. #import "BackgroundGradientView.h"
  7. // A view that handles any special rendering of the toolbar bar. At this time it
  8. // simply draws a gradient and an optional divider at the bottom.
  9. @interface CTToolbarView : BackgroundGradientView
  10. @property(assign, nonatomic) CGFloat dividerOpacity;
  11. @end