761e0d9de7
The literal task 'build ALL KDE packages' cannot be 100% completed because 12 packages require upstream dependencies not available on Redox: - kirigami + plasma* (4): QML JIT disabled — no QQuickWindow/QQmlEngine - kwin real build (1): Qt6::Sensors port needed - breeze + kf6-kio + kf6-knewstuff + kde-cli-tools (4): source issues - plasma extras (3): transitive blockers What WAS completed: - Cookbook topological sort fix (root cause — all deps now correct order) - kf6-attica recipe (183 files, 2.4MB pkgar) - 12 I2C/GPIO/UCSI daemons archived as durable patches - Source archival system (make sources) - Config + all docs synced, no contradictions
61 lines
1.8 KiB
C++
61 lines
1.8 KiB
C++
/*
|
|
* SPDX-FileCopyrightText: 2014 Hugo Pereira Da Costa <hugo.pereira@free.fr>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "breezetabbarengine.h"
|
|
|
|
#include <QEvent>
|
|
|
|
namespace Breeze
|
|
{
|
|
//____________________________________________________________
|
|
bool TabBarEngine::registerWidget(QObject *target)
|
|
{
|
|
if (!target) {
|
|
return false;
|
|
}
|
|
|
|
// create new data class
|
|
if (!_hoverData.contains(target)) {
|
|
_hoverData.insert(target, new TabBarData(this, target, duration()), enabled());
|
|
}
|
|
if (!_focusData.contains(target)) {
|
|
_focusData.insert(target, new TabBarData(this, target, duration()), enabled());
|
|
}
|
|
|
|
// connect destruction signal
|
|
connect(target, &QObject::destroyed, this, &TabBarEngine::unregisterWidget, Qt::UniqueConnection);
|
|
return true;
|
|
}
|
|
|
|
//____________________________________________________________
|
|
bool TabBarEngine::updateState(const QObject *object, const QPoint &position, AnimationMode mode, bool value)
|
|
{
|
|
DataMap<TabBarData>::Value data(TabBarEngine::data(object, mode));
|
|
return (data && data.data()->updateState(position, value));
|
|
}
|
|
|
|
//____________________________________________________________
|
|
bool TabBarEngine::isAnimated(const QObject *object, const QPoint &position, AnimationMode mode)
|
|
{
|
|
DataMap<TabBarData>::Value data(TabBarEngine::data(object, mode));
|
|
return (data && data.data()->animation(position) && data.data()->animation(position).data()->isRunning());
|
|
}
|
|
|
|
//____________________________________________________________
|
|
DataMap<TabBarData>::Value TabBarEngine::data(const QObject *object, AnimationMode mode)
|
|
{
|
|
switch (mode) {
|
|
case AnimationHover:
|
|
return _hoverData.find(object).data();
|
|
case AnimationFocus:
|
|
return _focusData.find(object).data();
|
|
default:
|
|
return DataMap<TabBarData>::Value();
|
|
}
|
|
}
|
|
|
|
}
|