2009-06-06 17:39:04 +00:00
|
|
|
/*
|
2021-11-12 09:12:50 +00:00
|
|
|
* This file Copyright (C) 2007-2021 Mnemosyne LLC
|
2007-02-19 22:09:05 +00:00
|
|
|
*
|
2014-01-21 03:10:30 +00:00
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
2014-01-19 01:09:44 +00:00
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
2007-02-19 22:09:05 +00:00
|
|
|
*
|
2009-06-06 17:39:04 +00:00
|
|
|
*/
|
2007-02-19 22:09:05 +00:00
|
|
|
|
2016-03-29 16:37:21 +00:00
|
|
|
#pragma once
|
2007-02-19 22:09:05 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
#include <memory>
|
2007-02-19 22:09:05 +00:00
|
|
|
|
2021-11-12 09:12:50 +00:00
|
|
|
#include <gtkmm.h>
|
|
|
|
|
2021-11-01 00:11:23 +00:00
|
|
|
class Session;
|
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
class SystemTrayIcon
|
|
|
|
{
|
|
|
|
public:
|
2021-11-12 09:12:50 +00:00
|
|
|
SystemTrayIcon(Gtk::Window& main_window, Glib::RefPtr<Session> const& core);
|
2021-10-18 20:22:31 +00:00
|
|
|
~SystemTrayIcon();
|
|
|
|
|
|
|
|
void refresh();
|
|
|
|
|
|
|
|
private:
|
|
|
|
class Impl;
|
|
|
|
std::unique_ptr<Impl> const impl_;
|
|
|
|
};
|