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

Unified Diff: ui/aura_shell/app_list/app_list_item_view.h

Issue 8890049: [Aura] Implement views-based applist. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win_aura Created 9 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/aura_shell/app_list/app_list_item_model_observer.h ('k') | ui/aura_shell/app_list/app_list_item_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura_shell/app_list/app_list_item_view.h
diff --git a/ui/aura_shell/app_list/app_list_item_view.h b/ui/aura_shell/app_list/app_list_item_view.h
new file mode 100644
index 0000000000000000000000000000000000000000..3d8b6de41db74b20d4b0bbf3e510c088425e419b
--- /dev/null
+++ b/ui/aura_shell/app_list/app_list_item_view.h
@@ -0,0 +1,72 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef UI_AURA_SHELL_APP_LIST_APP_LIST_ITEM_VIEW_H_
+#define UI_AURA_SHELL_APP_LIST_APP_LIST_ITEM_VIEW_H_
+#pragma once
+
+#include "ui/aura_shell/app_list/app_list_item_model_observer.h"
+#include "ui/aura_shell/aura_shell_export.h"
+#include "ui/views/view.h"
+
+class SkBitmap;
+
+namespace views {
+class ImageView;
+class Label;
+}
+
+namespace aura_shell {
+
+class AppListItemModel;
+class AppListItemViewListener;
+
+class AURA_SHELL_EXPORT AppListItemView : public views::View,
+ public AppListItemModelObserver {
+ public:
+ AppListItemView(AppListItemModel* model,
+ AppListItemViewListener* listener);
+ virtual ~AppListItemView();
+
+ AppListItemModel* model() const {
+ return model_;
+ }
+
+ // Tile size
+ static const int kTileSize = 180;
+
+ // Preferred icon size.
+ static const int kIconSize = 128;
+
+ protected:
+ // Notifies listener when activated.
+ void NotifyActivated(int event_flags);
+
+ // AppListItemModelObserver overrides:
+ virtual void ItemIconChanged() OVERRIDE;
+ virtual void ItemTitleChanged() OVERRIDE;
+
+ // views::View overrides:
+ virtual gfx::Size GetPreferredSize() OVERRIDE;
+ virtual void Layout() OVERRIDE;
+ virtual void OnFocus() OVERRIDE;
+ virtual void OnBlur() OVERRIDE;
+ virtual bool OnKeyPressed(const views::KeyEvent& event) OVERRIDE;
+ virtual bool OnMousePressed(const views::MouseEvent& event) OVERRIDE;
+ virtual void OnMouseReleased(const views::MouseEvent& event) OVERRIDE;
+ virtual void OnPaintFocusBorder(gfx::Canvas* canvas) OVERRIDE;
+
+ private:
+ AppListItemModel* model_;
+ AppListItemViewListener* listener_;
+
+ views::ImageView* icon_;
+ views::Label* title_;
+
+ DISALLOW_COPY_AND_ASSIGN(AppListItemView);
+};
+
+} // namespace aura_shell
+
+#endif // UI_AURA_SHELL_APP_LIST_APP_LIST_ITEM_VIEW_H_
« no previous file with comments | « ui/aura_shell/app_list/app_list_item_model_observer.h ('k') | ui/aura_shell/app_list/app_list_item_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698