1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_SYSTEM_UNIFIED_QUIET_MODE_FEATURE_POD_CONTROLLER_H_
#define ASH_SYSTEM_UNIFIED_QUIET_MODE_FEATURE_POD_CONTROLLER_H_
#include <optional>
#include <string>
#include "ash/ash_export.h"
#include "ash/constants/quick_settings_catalogs.h"
#include "ash/public/cpp/notifier_settings_observer.h"
#include "ash/system/unified/feature_pod_controller_base.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "ui/message_center/message_center_observer.h"
namespace ash {
// Controller of a feature tile that toggles do-not-disturb mode. If the
// do-not-disturb mode is enabled, this tile indicates it by bright background
// color and different icon.
class ASH_EXPORT QuietModeFeaturePodController
: public FeaturePodControllerBase,
public message_center::MessageCenterObserver,
public NotifierSettingsObserver {
public:
QuietModeFeaturePodController();
QuietModeFeaturePodController(const QuietModeFeaturePodController&) = delete;
QuietModeFeaturePodController& operator=(
const QuietModeFeaturePodController&) = delete;
~QuietModeFeaturePodController() override;
// Referenced by `UnifiedSystemTrayController` to know whether to construct a
// Primary or Compact tile.
static bool CalculateButtonVisibility();
// FeaturePodControllerBase:
std::unique_ptr<FeatureTile> CreateTile(bool compact = false) override;
QsFeatureCatalogName GetCatalogName() override;
void OnIconPressed() override;
void OnLabelPressed() override;
// message_center::MessageCenterObserver:
void OnQuietModeChanged(bool in_quiet_mode) override;
// NotifierSettingsObserver:
void OnNotifiersUpdated(
const std::vector<NotifierMetadata>& notifiers) override;
private:
std::u16string GetQuietModeStateTooltip();
void RecordDisabledNotifierCount(int disabled_count);
// Owned by the views hierarchy.
raw_ptr<FeatureTile, DanglingUntriaged> tile_ = nullptr;
std::optional<int> last_disabled_count_;
base::WeakPtrFactory<QuietModeFeaturePodController> weak_ptr_factory_{this};
};
} // namespace ash
#endif // ASH_SYSTEM_UNIFIED_QUIET_MODE_FEATURE_POD_CONTROLLER_H_
|