[go: nahoru, domu]

blob: 89cfff08c457048071abe33827b20fdd8c1c50b9 [file] [log] [blame]
// Copyright 2020 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 ASH_ASSISTANT_UI_MAIN_STAGE_ASSISTANT_ONBOARDING_SUGGESTION_VIEW_H_
#define ASH_ASSISTANT_UI_MAIN_STAGE_ASSISTANT_ONBOARDING_SUGGESTION_VIEW_H_
#include "base/component_export.h"
#include "base/unguessable_token.h"
#include "ui/views/controls/button/button.h"
#include "ui/views/metadata/metadata_header_macros.h"
namespace chromeos {
namespace assistant {
struct AssistantSuggestion;
} // namespace assistant
} // namespace chromeos
namespace views {
class ImageView;
class InkDropContainerView;
class Label;
} // namespace views
namespace ash {
class AssistantViewDelegate;
class COMPONENT_EXPORT(ASSISTANT_UI) AssistantOnboardingSuggestionView
: public views::Button {
public:
METADATA_HEADER(AssistantOnboardingSuggestionView);
AssistantOnboardingSuggestionView(
AssistantViewDelegate* delegate,
const chromeos::assistant::AssistantSuggestion& suggestion,
int index);
AssistantOnboardingSuggestionView(const AssistantOnboardingSuggestionView&) =
delete;
AssistantOnboardingSuggestionView& operator=(
const AssistantOnboardingSuggestionView&) = delete;
~AssistantOnboardingSuggestionView() override;
// views::View:
int GetHeightForWidth(int width) const override;
void ChildPreferredSizeChanged(views::View* child) override;
void AddLayerBeneathView(ui::Layer* layer) override;
void RemoveLayerBeneathView(ui::Layer* layer) override;
// Returns the icon for the suggestion.
const gfx::ImageSkia& GetIcon() const;
// Returns the text for the suggestion.
const std::u16string& GetText() const;
private:
void InitLayout(const chromeos::assistant::AssistantSuggestion& suggestion);
void UpdateIcon(const gfx::ImageSkia& icon);
void OnButtonPressed();
AssistantViewDelegate* const delegate_; // Owned by AssistantController.
const base::UnguessableToken suggestion_id_;
const int index_;
// Owned by view hierarchy.
views::ImageView* icon_ = nullptr;
views::Label* label_ = nullptr;
views::InkDropContainerView* ink_drop_container_ = nullptr;
base::WeakPtrFactory<AssistantOnboardingSuggestionView> weak_factory_{this};
};
} // namespace ash
#endif // ASH_ASSISTANT_UI_MAIN_STAGE_ASSISTANT_ONBOARDING_SUGGESTION_VIEW_H_