
- Red when there's no connection to any pool - Yellow when mining is paused - No color during normal mining
126 lines
2.6 KiB
C++
126 lines
2.6 KiB
C++
/* XMRig
|
|
* Copyright (c) 2018-2021 SChernykh <https://github.com/SChernykh>
|
|
* Copyright (c) 2016-2021 XMRig <https://github.com/xmrig>, <support@xmrig.com>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "core/Taskbar.h"
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
|
#include <Shobjidl.h>
|
|
#include <Objbase.h>
|
|
|
|
|
|
namespace xmrig {
|
|
|
|
|
|
struct TaskbarPrivate
|
|
{
|
|
TaskbarPrivate()
|
|
{
|
|
HRESULT hr = CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED);
|
|
if (hr < 0) {
|
|
return;
|
|
}
|
|
|
|
hr = CoCreateInstance(CLSID_TaskbarList, NULL, CLSCTX_INPROC_SERVER, IID_PPV_ARGS(&m_taskbar));
|
|
if (hr < 0) {
|
|
return;
|
|
}
|
|
|
|
hr = m_taskbar->HrInit();
|
|
if (hr < 0) {
|
|
m_taskbar->Release();
|
|
m_taskbar = nullptr;
|
|
return;
|
|
}
|
|
|
|
m_consoleWnd = GetConsoleWindow();
|
|
}
|
|
|
|
~TaskbarPrivate()
|
|
{
|
|
if (m_taskbar) {
|
|
m_taskbar->Release();
|
|
}
|
|
CoUninitialize();
|
|
}
|
|
|
|
ITaskbarList3* m_taskbar = nullptr;
|
|
HWND m_consoleWnd = nullptr;
|
|
};
|
|
|
|
|
|
Taskbar::Taskbar() : d_ptr(new TaskbarPrivate())
|
|
{
|
|
}
|
|
|
|
|
|
Taskbar::~Taskbar()
|
|
{
|
|
delete d_ptr;
|
|
}
|
|
|
|
|
|
void Taskbar::setActive(bool active)
|
|
{
|
|
m_active = active;
|
|
updateTaskbarColor();
|
|
}
|
|
|
|
|
|
void Taskbar::setEnabled(bool enabled)
|
|
{
|
|
m_enabled = enabled;
|
|
updateTaskbarColor();
|
|
}
|
|
|
|
|
|
void Taskbar::updateTaskbarColor()
|
|
{
|
|
if (d_ptr->m_taskbar) {
|
|
if (m_active) {
|
|
d_ptr->m_taskbar->SetProgressState(d_ptr->m_consoleWnd, m_enabled ? TBPF_NOPROGRESS : TBPF_PAUSED);
|
|
d_ptr->m_taskbar->SetProgressValue(d_ptr->m_consoleWnd, m_enabled ? 0 : 1, 1);
|
|
}
|
|
else {
|
|
d_ptr->m_taskbar->SetProgressState(d_ptr->m_consoleWnd, TBPF_ERROR);
|
|
d_ptr->m_taskbar->SetProgressValue(d_ptr->m_consoleWnd, 1, 1);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
} // namespace xmrig
|
|
|
|
|
|
#else // _WIN32
|
|
|
|
|
|
namespace xmrig {
|
|
|
|
|
|
Taskbar::Taskbar() {}
|
|
Taskbar::~Taskbar() {}
|
|
void Taskbar::setActive(bool) {}
|
|
void Taskbar::setEnabled(bool) {}
|
|
|
|
|
|
} // namespace xmrig
|
|
|
|
|
|
#endif // _WIN32
|