Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Side by Side Diff: ui/app_list/views/contents_view.h

Issue 303543004: MacViews: views_examples_with_content_exe working! Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add files Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/app_list/views/apps_grid_view.cc ('k') | ui/app_list/views/contents_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_APP_LIST_VIEWS_CONTENTS_VIEW_H_ 5 #ifndef UI_APP_LIST_VIEWS_CONTENTS_VIEW_H_
6 #define UI_APP_LIST_VIEWS_CONTENTS_VIEW_H_ 6 #define UI_APP_LIST_VIEWS_CONTENTS_VIEW_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 // Sets show state and animates the subviews to match the show state. 63 // Sets show state and animates the subviews to match the show state.
64 void SetShowState(ShowState show_state); 64 void SetShowState(ShowState show_state);
65 65
66 void Prerender(); 66 void Prerender();
67 67
68 AppsContainerView* apps_container_view() { return apps_container_view_; } 68 AppsContainerView* apps_container_view() { return apps_container_view_; }
69 69
70 ShowState show_state() const { return show_state_; } 70 ShowState show_state() const { return show_state_; }
71 71
72 // Overridden from views::View: 72 // Overridden from views::View:
73 virtual const char* GetClassName() const OVERRIDE;
73 virtual gfx::Size GetPreferredSize() const OVERRIDE; 74 virtual gfx::Size GetPreferredSize() const OVERRIDE;
74 virtual void Layout() OVERRIDE; 75 virtual void Layout() OVERRIDE;
75 virtual bool OnKeyPressed(const ui::KeyEvent& event) OVERRIDE; 76 virtual bool OnKeyPressed(const ui::KeyEvent& event) OVERRIDE;
76 virtual bool OnMouseWheel(const ui::MouseWheelEvent& event) OVERRIDE; 77 virtual bool OnMouseWheel(const ui::MouseWheelEvent& event) OVERRIDE;
77 78
78 private: 79 private:
79 // Invoked when show state is changed. 80 // Invoked when show state is changed.
80 void ShowStateChanged(); 81 void ShowStateChanged();
81 82
82 void CalculateIdealBounds(); 83 void CalculateIdealBounds();
(...skipping 11 matching lines...) Expand all
94 95
95 scoped_ptr<views::ViewModel> view_model_; 96 scoped_ptr<views::ViewModel> view_model_;
96 scoped_ptr<views::BoundsAnimator> bounds_animator_; 97 scoped_ptr<views::BoundsAnimator> bounds_animator_;
97 98
98 DISALLOW_COPY_AND_ASSIGN(ContentsView); 99 DISALLOW_COPY_AND_ASSIGN(ContentsView);
99 }; 100 };
100 101
101 } // namespace app_list 102 } // namespace app_list
102 103
103 #endif // UI_APP_LIST_VIEWS_CONTENTS_VIEW_H_ 104 #endif // UI_APP_LIST_VIEWS_CONTENTS_VIEW_H_
OLDNEW
« no previous file with comments | « ui/app_list/views/apps_grid_view.cc ('k') | ui/app_list/views/contents_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698