You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
858 B
30 lines
858 B
////////////////////////////////////////////////////////////////////////////// |
|
// breezetransitiondata.cpp |
|
// data container for generic transitions |
|
// ------------------- |
|
// |
|
// SPDX-FileCopyrightText: 2009 Hugo Pereira Da Costa <hugo.pereira@free.fr> |
|
// |
|
// SPDX-License-Identifier: MIT |
|
////////////////////////////////////////////////////////////////////////////// |
|
|
|
#include "breezetransitiondata.h" |
|
|
|
namespace Breeze |
|
{ |
|
//_________________________________________________________________ |
|
TransitionData::TransitionData(QObject *parent, QWidget *target, int duration) |
|
: QObject(parent) |
|
, _transition(new TransitionWidget(target, duration)) |
|
{ |
|
_transition.data()->hide(); |
|
} |
|
|
|
//_________________________________________________________________ |
|
TransitionData::~TransitionData() |
|
{ |
|
if (_transition) |
|
_transition.data()->deleteLater(); |
|
} |
|
|
|
}
|
|
|