summaryrefslogtreecommitdiffstats
path: root/xbmc/dialogs/GUIDialogVolumeBar.h
blob: e8413d0f86ed9fe20d22634a07cf2e454b056183 (plain)
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
/*
 *  Copyright (C) 2005-2018 Team Kodi
 *  This file is part of Kodi - https://kodi.tv
 *
 *  SPDX-License-Identifier: GPL-2.0-or-later
 *  See LICENSES/README.md for more information.
 */

#pragma once

#include "guilib/GUIDialog.h"
#include "threads/CriticalSection.h"

#include <set>

class IGUIVolumeBarCallback;

class CGUIDialogVolumeBar : public CGUIDialog
{
public:
  CGUIDialogVolumeBar(void);
  ~CGUIDialogVolumeBar(void) override;
  bool OnMessage(CGUIMessage& message) override;
  bool OnAction(const CAction &action) override;

  // Volume bar interface
  void RegisterCallback(IGUIVolumeBarCallback *callback);
  void UnregisterCallback(IGUIVolumeBarCallback *callback);
  bool IsVolumeBarEnabled() const;

private:
  std::set<IGUIVolumeBarCallback*> m_callbacks;
  mutable CCriticalSection m_callbackMutex;
};