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

Unified Diff: ui/app_list/views/app_list_view.h

Issue 645853013: Remove some platform specific stuff from views. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/app_list/views/app_list_menu_views.cc ('k') | ui/app_list/views/app_list_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/views/app_list_view.h
diff --git a/ui/app_list/views/app_list_view.h b/ui/app_list/views/app_list_view.h
deleted file mode 100644
index c9cd5cf3e47dd7c0d120ccda1c1f6a4e0c7e021d..0000000000000000000000000000000000000000
--- a/ui/app_list/views/app_list_view.h
+++ /dev/null
@@ -1,183 +0,0 @@
-// Copyright (c) 2012 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_APP_LIST_VIEWS_APP_LIST_VIEW_H_
-#define UI_APP_LIST_VIEWS_APP_LIST_VIEW_H_
-
-#include "base/callback.h"
-#include "base/memory/scoped_ptr.h"
-#include "base/observer_list.h"
-#include "ui/app_list/app_list_export.h"
-#include "ui/app_list/app_list_view_delegate_observer.h"
-#include "ui/app_list/speech_ui_model_observer.h"
-#include "ui/views/bubble/bubble_delegate.h"
-#include "ui/views/widget/widget.h"
-
-namespace base {
-class FilePath;
-}
-
-namespace test {
-class AppListViewTestApi;
-}
-
-namespace views {
-class ImageView;
-}
-
-namespace app_list {
-class ApplicationDragAndDropHost;
-class AppListMainView;
-class AppListModel;
-class AppListViewDelegate;
-class AppListViewObserver;
-class HideViewAnimationObserver;
-class PaginationModel;
-class SpeechView;
-
-// AppListView is the top-level view and controller of app list UI. It creates
-// and hosts a AppsGridView and passes AppListModel to it for display.
-class APP_LIST_EXPORT AppListView : public views::BubbleDelegateView,
- public AppListViewDelegateObserver,
- public SpeechUIModelObserver {
- public:
- // Does not take ownership of |delegate|.
- explicit AppListView(AppListViewDelegate* delegate);
- virtual ~AppListView();
-
- // Initializes the widget and use a given |anchor| plus an |anchor_offset| for
- // positioning.
- void InitAsBubbleAttachedToAnchor(gfx::NativeView parent,
- int initial_apps_page,
- views::View* anchor,
- const gfx::Vector2d& anchor_offset,
- views::BubbleBorder::Arrow arrow,
- bool border_accepts_events);
-
- // Initializes the widget and use a fixed |anchor_point_in_screen| for
- // positioning.
- void InitAsBubbleAtFixedLocation(gfx::NativeView parent,
- int initial_apps_page,
- const gfx::Point& anchor_point_in_screen,
- views::BubbleBorder::Arrow arrow,
- bool border_accepts_events);
-
- void SetBubbleArrow(views::BubbleBorder::Arrow arrow);
-
- void SetAnchorPoint(const gfx::Point& anchor_point);
-
- // If |drag_and_drop_host| is not NULL it will be called upon drag and drop
- // operations outside the application list. This has to be called after
- // InitAsBubble was called since the app list object needs to exist so that
- // it can set the host.
- void SetDragAndDropHostOfCurrentAppList(
- ApplicationDragAndDropHost* drag_and_drop_host);
-
- // Shows the UI when there are no pending icon loads. Otherwise, starts a
- // timer to show the UI when a maximum allowed wait time has expired.
- void ShowWhenReady();
-
- void Close();
-
- void UpdateBounds();
-
- // Enables/disables a semi-transparent overlay over the app list (good for
- // hiding the app list when a modal dialog is being shown).
- void SetAppListOverlayVisible(bool visible);
-
- // Returns true if the app list should be centered and in landscape mode.
- bool ShouldCenterWindow() const;
-
- // Overridden from views::View:
- virtual gfx::Size GetPreferredSize() const override;
- virtual void Paint(gfx::Canvas* canvas,
- const views::CullSet& cull_set) override;
- virtual void OnThemeChanged() override;
-
- // WidgetDelegate overrides:
- virtual bool ShouldHandleSystemCommands() const override;
-
- // Overridden from AppListViewDelegateObserver:
- virtual void OnProfilesChanged() override;
- virtual void OnShutdown() override;
-
- void Prerender();
-
- void SetProfileByPath(const base::FilePath& profile_path);
-
- void AddObserver(AppListViewObserver* observer);
- void RemoveObserver(AppListViewObserver* observer);
-
- // Set a callback to be called the next time any app list paints.
- void SetNextPaintCallback(const base::Closure& callback);
-
-#if defined(OS_WIN)
- HWND GetHWND() const;
-#endif
-
- AppListMainView* app_list_main_view() { return app_list_main_view_; }
-
- // Gets the PaginationModel owned by this view's apps grid.
- PaginationModel* GetAppsPaginationModel();
-
- private:
- friend class ::test::AppListViewTestApi;
-
- void InitAsBubbleInternal(gfx::NativeView parent,
- int initial_apps_page,
- views::BubbleBorder::Arrow arrow,
- bool border_accepts_events,
- const gfx::Vector2d& anchor_offset);
-
- // Overridden from views::BubbleDelegateView:
- virtual void OnBeforeBubbleWidgetInit(
- views::Widget::InitParams* params,
- views::Widget* widget) const override;
-
- // Overridden from views::WidgetDelegateView:
- virtual views::View* GetInitiallyFocusedView() override;
- virtual gfx::ImageSkia GetWindowIcon() override;
- virtual bool WidgetHasHitTestMask() const override;
- virtual void GetWidgetHitTestMask(gfx::Path* mask) const override;
-
- // Overridden from views::View:
- virtual bool AcceleratorPressed(const ui::Accelerator& accelerator) override;
- virtual void Layout() override;
- virtual void SchedulePaintInRect(const gfx::Rect& rect) override;
-
- // Overridden from views::WidgetObserver:
- virtual void OnWidgetDestroying(views::Widget* widget) override;
- virtual void OnWidgetVisibilityChanged(
- views::Widget* widget, bool visible) override;
- virtual void OnWidgetActivationChanged(
- views::Widget* widget, bool active) override;
-
- // Overridden from SpeechUIModelObserver:
- virtual void OnSpeechRecognitionStateChanged(
- SpeechRecognitionState new_state) override;
-
- AppListViewDelegate* delegate_; // Weak. Owned by AppListService.
-
- AppListMainView* app_list_main_view_;
- SpeechView* speech_view_;
-
- // The red "experimental" banner for the experimental app list.
- views::ImageView* experimental_banner_view_;
-
- // A semi-transparent white overlay that covers the app list while dialogs are
- // open.
- views::View* overlay_view_;
-
- ObserverList<AppListViewObserver> observers_;
- scoped_ptr<HideViewAnimationObserver> animation_observer_;
-
- // For UMA and testing. If non-null, triggered when the app list is painted.
- base::Closure next_paint_callback_;
-
- DISALLOW_COPY_AND_ASSIGN(AppListView);
-};
-
-} // namespace app_list
-
-#endif // UI_APP_LIST_VIEWS_APP_LIST_VIEW_H_
« no previous file with comments | « ui/app_list/views/app_list_menu_views.cc ('k') | ui/app_list/views/app_list_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698