electron/atom/browser/ui/win/taskbar_host.h

54 lines
1.2 KiB
C
Raw Normal View History

// Copyright (c) 2015 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
2015-08-06 02:30:22 +00:00
#ifndef ATOM_BROWSER_UI_WIN_TASKBAR_HOST_H_
#define ATOM_BROWSER_UI_WIN_TASKBAR_HOST_H_
#include <windows.h>
#include <map>
2015-08-06 04:44:07 +00:00
#include <string>
#include <vector>
2015-08-06 03:10:34 +00:00
#include "base/callback.h"
#include "ui/gfx/image/image.h"
namespace atom {
2015-08-06 02:30:22 +00:00
class TaskbarHost {
public:
2015-08-06 03:10:34 +00:00
struct ThumbarButton {
std::string tooltip;
gfx::Image icon;
std::vector<std::string> flags;
base::Closure clicked_callback;
};
TaskbarHost();
virtual ~TaskbarHost();
2015-08-06 04:54:00 +00:00
// Add or update the buttons in thumbar.
bool SetThumbarButtons(
2015-08-06 03:10:34 +00:00
HWND window, const std::vector<ThumbarButton>& buttons);
2015-08-06 04:44:07 +00:00
2015-08-06 04:54:00 +00:00
// Sets the progress state in taskbar.
bool SetProgressBar(HWND window, double value);
2015-08-06 04:44:07 +00:00
// Called by the window that there is a button in thumbar clicked.
bool HandleThumbarButtonEvent(int button_id);
private:
2015-08-06 04:44:07 +00:00
using CallbackMap = std::map<int, base::Closure>;
CallbackMap callback_map_;
2015-08-06 04:44:07 +00:00
// Whether we have already added the buttons to thumbar.
bool thumbar_buttons_added_;
2015-08-06 02:30:22 +00:00
DISALLOW_COPY_AND_ASSIGN(TaskbarHost);
};
} // namespace atom
2015-08-06 02:30:22 +00:00
#endif // ATOM_BROWSER_UI_WIN_TASKBAR_HOST_H_