Home | History | Annotate | Download | only in tabbed_pane

Lines Matching refs:TabStrip

73 class TabStrip : public View {
75 explicit TabStrip(TabbedPane* tabbed_pane);
76 virtual ~TabStrip();
86 DISALLOW_COPY_AND_ASSIGN(TabStrip);
181 TabStrip::TabStrip(TabbedPane* tabbed_pane) : tabbed_pane_(tabbed_pane) {}
183 TabStrip::~TabStrip() {}
185 gfx::Size TabStrip::GetPreferredSize() const {
195 void TabStrip::Layout() {
197 int x = kTabOffset; // Layout tabs with an offset to the tabstrip border.
205 void TabStrip::OnPaint(gfx::Canvas* canvas) {
208 // Draw the TabStrip border.
242 tab_strip_(new TabStrip(this)),