summaryrefslogtreecommitdiffstats
path: root/src/kmplayer_smil.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kmplayer_smil.cpp')
-rw-r--r--src/kmplayer_smil.cpp356
1 files changed, 178 insertions, 178 deletions
diff --git a/src/kmplayer_smil.cpp b/src/kmplayer_smil.cpp
index d8a0b79..54f6bf0 100644
--- a/src/kmplayer_smil.cpp
+++ b/src/kmplayer_smil.cpp
@@ -73,7 +73,7 @@ static const unsigned int trans_out_timer_id = (unsigned int) 7;
*/
//-----------------------------------------------------------------------------
-KDE_NO_EXPORT bool KMPlayer::parseTime (const TQString & vl, int & dur) {
+TDE_NO_EXPORT bool KMPlayer::parseTime (const TQString & vl, int & dur) {
const char * cval = vl.ascii ();
if (!cval) {
dur = 0;
@@ -197,7 +197,7 @@ KDE_NO_CDTOR_EXPORT Runtime::~Runtime () {
reset ();
}
-KDE_NO_EXPORT void Runtime::reset () {
+TDE_NO_EXPORT void Runtime::reset () {
if (element) {
if (start_timer) {
element->document ()->cancelTimer (start_timer);
@@ -222,7 +222,7 @@ KDE_NO_EXPORT void Runtime::reset () {
endTime ().durval = dur_media;
}
-KDE_NO_EXPORT
+TDE_NO_EXPORT
void Runtime::setDurationItem (DurationTime item, const TQString & val) {
int dur = -2; // also 0 for 'media' duration, so it will not update then
TQString vs = val.stripWhiteSpace ();
@@ -313,7 +313,7 @@ void Runtime::setDurationItem (DurationTime item, const TQString & val) {
/**
* start, or restart in case of re-use, the durations
*/
-KDE_NO_EXPORT void Runtime::begin () {
+TDE_NO_EXPORT void Runtime::begin () {
if (!element) {
reset ();
return;
@@ -360,7 +360,7 @@ KDE_NO_EXPORT void Runtime::begin () {
propagateStart ();
}
-KDE_NO_EXPORT void Runtime::beginAndStart () {
+TDE_NO_EXPORT void Runtime::beginAndStart () {
if (element) {
if (start_timer || duration_timer)
convertNode <SMIL::TimedMrl> (element)->init ();
@@ -369,7 +369,7 @@ KDE_NO_EXPORT void Runtime::beginAndStart () {
}
}
-KDE_NO_EXPORT
+TDE_NO_EXPORT
bool Runtime::parseParam (const TrieString & name, const TQString & val) {
//kdDebug () << "Runtime::parseParam " << name << "=" << val << endl;
if (name == StringPool::attr_begin) {
@@ -419,7 +419,7 @@ bool Runtime::parseParam (const TrieString & name, const TQString & val) {
return true;
}
-KDE_NO_EXPORT void Runtime::processEvent (unsigned int event) {
+TDE_NO_EXPORT void Runtime::processEvent (unsigned int event) {
SMIL::TimedMrl * tm = convertNode <SMIL::TimedMrl> (element);
if (tm) {
if (timingstate != timings_started && beginTime ().durval == event) {
@@ -439,7 +439,7 @@ KDE_NO_EXPORT void Runtime::processEvent (unsigned int event) {
reset ();
}
-KDE_NO_EXPORT void Runtime::propagateStop (bool forced) {
+TDE_NO_EXPORT void Runtime::propagateStop (bool forced) {
if (state() == timings_reset || state() == timings_stopped)
return; // nothing to stop
if (!forced && element) {
@@ -478,7 +478,7 @@ KDE_NO_EXPORT void Runtime::propagateStop (bool forced) {
}
}
-KDE_NO_EXPORT void Runtime::propagateStart () {
+TDE_NO_EXPORT void Runtime::propagateStart () {
SMIL::TimedMrl * tm = convertNode <SMIL::TimedMrl> (element);
if (tm) {
tm->propagateEvent (new ToBeStartedEvent (element));
@@ -494,7 +494,7 @@ KDE_NO_EXPORT void Runtime::propagateStart () {
/**
* start_timer timer expired
*/
-KDE_NO_EXPORT void Runtime::started () {
+TDE_NO_EXPORT void Runtime::started () {
//kdDebug () << "Runtime::started " << (element ? element->nodeName() : "-") << endl;
NodePtr e = element; // element is weak
SMIL::TimedMrl * tm = convertNode <SMIL::TimedMrl> (e);
@@ -517,7 +517,7 @@ KDE_NO_EXPORT void Runtime::started () {
/**
* duration_timer timer expired or no duration set after started
*/
-KDE_NO_EXPORT void Runtime::stopped () {
+TDE_NO_EXPORT void Runtime::stopped () {
if (!element) {
reset ();
} else if (element->active ()) {
@@ -627,7 +627,7 @@ IRect IRect::intersect (const IRect & r) const {
//-----------------------------------------------------------------------------
-KDE_NO_EXPORT void CalculatedSizer::resetSizes () {
+TDE_NO_EXPORT void CalculatedSizer::resetSizes () {
left.reset ();
top.reset ();
width.reset ();
@@ -670,7 +670,7 @@ static bool regPoints (const TQString & str, Single & x, Single & y) {
return true;
}
-KDE_NO_EXPORT
+TDE_NO_EXPORT
bool CalculatedSizer::applyRegPoints (Node * node, Single w, Single h,
Single & xoff, Single & yoff, Single & w1, Single & h1) {
if (reg_point.isEmpty ())
@@ -714,7 +714,7 @@ bool CalculatedSizer::applyRegPoints (Node * node, Single w, Single h,
return true; // success getting sizes based on regPoint
}
-KDE_NO_EXPORT void CalculatedSizer::calcSizes (Node * node, Single w, Single h,
+TDE_NO_EXPORT void CalculatedSizer::calcSizes (Node * node, Single w, Single h,
Single & xoff, Single & yoff, Single & w1, Single & h1) {
if (applyRegPoints (node, w, h, xoff, yoff, w1, h1))
return;
@@ -754,7 +754,7 @@ KDE_NO_EXPORT void CalculatedSizer::calcSizes (Node * node, Single w, Single h,
h1 = 0;
}
-KDE_NO_EXPORT
+TDE_NO_EXPORT
bool CalculatedSizer::setSizeParam(const TrieString &name, const TQString &val, bool &dim_changed) {
dim_changed = true;
if (name == StringPool::attr_left) {
@@ -784,7 +784,7 @@ bool CalculatedSizer::setSizeParam(const TrieString &name, const TQString &val,
return true;
}
-KDE_NO_EXPORT void
+TDE_NO_EXPORT void
CalculatedSizer::move (const SizeType &x, const SizeType &y) {
if (left.isSet ()) {
if (right.isSet ()) {
@@ -832,19 +832,19 @@ bool AnimateGroupData::parseParam (const TrieString &name, const TQString &val)
/**
* animation finished
*/
-KDE_NO_EXPORT void AnimateGroupData::stopped () {
+TDE_NO_EXPORT void AnimateGroupData::stopped () {
//kdDebug () << "AnimateGroupData::stopped " << durTime ().durval << endl;
if (!SMIL::TimedMrl::keepContent (element))
restoreModification ();
Runtime::stopped ();
}
-KDE_NO_EXPORT void AnimateGroupData::reset () {
+TDE_NO_EXPORT void AnimateGroupData::reset () {
restoreModification ();
Runtime::reset ();
}
-KDE_NO_EXPORT void AnimateGroupData::restoreModification () {
+TDE_NO_EXPORT void AnimateGroupData::restoreModification () {
if (modification_id > -1 && target_element &&
target_element->state > Node::state_init) {
//kdDebug () << "AnimateGroupData(" << this << ")::restoreModificatio " <<modification_id << endl;
@@ -859,7 +859,7 @@ KDE_NO_EXPORT void AnimateGroupData::restoreModification () {
/**
* start_timer timer expired, execute it
*/
-KDE_NO_EXPORT void SetData::started () {
+TDE_NO_EXPORT void SetData::started () {
restoreModification ();
if (element) {
if (target_element) {
@@ -911,7 +911,7 @@ static Point2D PointOnCubicBezier (Point2D *cp, float t) {
KDE_NO_CDTOR_EXPORT AnimateData::AnimateData (NodePtr e)
: AnimateGroupData (e), change_by (0), steps (0) {}
-KDE_NO_EXPORT void AnimateData::reset () {
+TDE_NO_EXPORT void AnimateData::reset () {
AnimateGroupData::reset ();
if (element) {
if (anim_timer)
@@ -953,7 +953,7 @@ bool AnimateData::parseParam (const TrieString & name, const TQString & val) {
/**
* start_timer timer expired, execute it
*/
-KDE_NO_EXPORT void AnimateData::started () {
+TDE_NO_EXPORT void AnimateData::started () {
//kdDebug () << "AnimateData::started " << durTime ().durval << endl;
restoreModification ();
if (anim_timer) {
@@ -1033,7 +1033,7 @@ KDE_NO_EXPORT void AnimateData::started () {
/**
* undo if necessary
*/
-KDE_NO_EXPORT void AnimateData::stopped () {
+TDE_NO_EXPORT void AnimateData::stopped () {
if (element) {
if (anim_timer) // make sure timers are stopped
element->document ()->cancelTimer (anim_timer);
@@ -1049,7 +1049,7 @@ KDE_NO_EXPORT void AnimateData::stopped () {
AnimateGroupData::stopped ();
}
-KDE_NO_EXPORT void AnimateData::applyStep () {
+TDE_NO_EXPORT void AnimateData::applyStep () {
Element * target = convertNode <Element> (target_element);
if (target && calcMode == calc_linear)
target->setParam (changed_attribute, TQString ("%1%2").arg (
@@ -1064,7 +1064,7 @@ KDE_NO_EXPORT void AnimateData::applyStep () {
/**
* for animations
*/
-KDE_NO_EXPORT bool AnimateData::timerTick () {
+TDE_NO_EXPORT bool AnimateData::timerTick () {
if (!anim_timer) {
kdError () << "spurious anim timer tick" << endl;
} else if (steps-- > 0) {
@@ -1105,7 +1105,7 @@ bool AnimateMotionData::checkTarget (Node *n) {
return true;
}
-KDE_NO_EXPORT void AnimateMotionData::reset () {
+TDE_NO_EXPORT void AnimateMotionData::reset () {
AnimateGroupData::reset ();
if (element) {
if (anim_timer)
@@ -1237,7 +1237,7 @@ bool AnimateMotionData::setInterval () {
return true;
}
-KDE_NO_EXPORT void AnimateMotionData::started () {
+TDE_NO_EXPORT void AnimateMotionData::started () {
//kdDebug () << "AnimateMotionData::started " << durTime ().durval << endl;
Element *target = convertNode <Element> (target_element);
if (!element || !checkTarget (target))
@@ -1293,7 +1293,7 @@ KDE_NO_EXPORT void AnimateMotionData::started () {
}
-KDE_NO_EXPORT void AnimateMotionData::stopped () {
+TDE_NO_EXPORT void AnimateMotionData::stopped () {
if (element) {
if (anim_timer) // make sure timers are stopped
element->document ()->cancelTimer (anim_timer);
@@ -1313,7 +1313,7 @@ KDE_NO_EXPORT void AnimateMotionData::stopped () {
AnimateGroupData::stopped ();
}
-KDE_NO_EXPORT void AnimateMotionData::applyStep () {
+TDE_NO_EXPORT void AnimateMotionData::applyStep () {
Node *target = target_element.ptr ();
if (!checkTarget (target))
return;
@@ -1332,7 +1332,7 @@ KDE_NO_EXPORT void AnimateMotionData::applyStep () {
}
}
-KDE_NO_EXPORT bool AnimateMotionData::timerTick () {
+TDE_NO_EXPORT bool AnimateMotionData::timerTick () {
if (!anim_timer) {
kdError () << "spurious animateMotion timer tick" << endl;
} else if (cur_step++ < steps) {
@@ -1396,7 +1396,7 @@ KDE_NO_CDTOR_EXPORT MediaTypeRuntime::~MediaTypeRuntime () {
/**
* re-implement for pending TDEIO::Job operations
*/
-KDE_NO_EXPORT void KMPlayer::MediaTypeRuntime::reset () {
+TDE_NO_EXPORT void KMPlayer::MediaTypeRuntime::reset () {
clear ();
postpone_lock = 0L;
Runtime::reset ();
@@ -1405,7 +1405,7 @@ KDE_NO_EXPORT void KMPlayer::MediaTypeRuntime::reset () {
/**
* will request a repaint of attached region
*/
-KDE_NO_EXPORT void MediaTypeRuntime::stopped () {
+TDE_NO_EXPORT void MediaTypeRuntime::stopped () {
clipStop ();
document_postponed = 0L;
Node * e = element.ptr ();
@@ -1417,7 +1417,7 @@ KDE_NO_EXPORT void MediaTypeRuntime::stopped () {
Runtime::stopped ();
}
-KDE_NO_EXPORT void MediaTypeRuntime::clipStart () {
+TDE_NO_EXPORT void MediaTypeRuntime::clipStart () {
SMIL::MediaType * mt = convertNode <SMIL::MediaType> (element);
SMIL::RegionBase *r =mt ? convertNode<SMIL::RegionBase>(mt->region_node):0L;
if (r && r->surface ())
@@ -1430,7 +1430,7 @@ KDE_NO_EXPORT void MediaTypeRuntime::clipStart () {
}
}
-KDE_NO_EXPORT void MediaTypeRuntime::clipStop () {
+TDE_NO_EXPORT void MediaTypeRuntime::clipStop () {
SMIL::MediaType * mt = convertNode <SMIL::MediaType> (element);
if (mt) {
mt->resetSurface ();
@@ -1439,20 +1439,20 @@ KDE_NO_EXPORT void MediaTypeRuntime::clipStop () {
}
}
-KDE_NO_EXPORT void MediaTypeRuntime::postpone (bool) {
+TDE_NO_EXPORT void MediaTypeRuntime::postpone (bool) {
}
KDE_NO_CDTOR_EXPORT AudioVideoData::AudioVideoData (NodePtr e)
: MediaTypeRuntime (e) {}
-KDE_NO_EXPORT bool AudioVideoData::isAudioVideo () {
+TDE_NO_EXPORT bool AudioVideoData::isAudioVideo () {
return timingstate == timings_started;
}
/**
* reimplement for request backend to play audio/video
*/
-KDE_NO_EXPORT void AudioVideoData::started () {
+TDE_NO_EXPORT void AudioVideoData::started () {
if (element && !element->mrl ()->resolved) {
element->defer ();
return;
@@ -1469,7 +1469,7 @@ static void setSmilLinkNode (NodePtr n, NodePtr link) {
s->current_av_media_type = link;
}
-KDE_NO_EXPORT void AudioVideoData::clipStart () {
+TDE_NO_EXPORT void AudioVideoData::clipStart () {
NodePtr element_protect = element; // note element is weak
SMIL::MediaType * mt = convertNode <SMIL::MediaType> (element);
PlayListNotify * n = mt ? mt->document ()->notify_listener : 0L;
@@ -1484,14 +1484,14 @@ KDE_NO_EXPORT void AudioVideoData::clipStart () {
MediaTypeRuntime::clipStart ();
}
-KDE_NO_EXPORT void AudioVideoData::clipStop () {
+TDE_NO_EXPORT void AudioVideoData::clipStop () {
if (durTime ().durval == dur_media)
durTime ().durval = dur_timer;//reset to make this finish
MediaTypeRuntime::clipStop ();
setSmilLinkNode (element, 0L);
}
-KDE_NO_EXPORT
+TDE_NO_EXPORT
bool AudioVideoData::parseParam(const TrieString &name, const TQString &val) {
//kdDebug () << "AudioVideoData::parseParam " << name << "=" << val << endl;
if (name == StringPool::attr_src) {
@@ -1512,7 +1512,7 @@ bool AudioVideoData::parseParam(const TrieString &name, const TQString &val) {
return true;
}
-KDE_NO_EXPORT void AudioVideoData::postpone (bool b) {
+TDE_NO_EXPORT void AudioVideoData::postpone (bool b) {
kdDebug () << "AudioVideoData::postpone " << b << endl;
if (element->unfinished () && b)
element->setState (Node::state_deferred);
@@ -1598,7 +1598,7 @@ static Element * fromContentControlGroup (NodePtr & d, const TQString & tag) {
//-----------------------------------------------------------------------------
-KDE_NO_EXPORT NodePtr SMIL::Smil::childFromTag (const TQString & tag) {
+TDE_NO_EXPORT NodePtr SMIL::Smil::childFromTag (const TQString & tag) {
const char * ctag = tag.ascii ();
if (!strcmp (ctag, "body"))
return new SMIL::Body (m_doc);
@@ -1607,7 +1607,7 @@ KDE_NO_EXPORT NodePtr SMIL::Smil::childFromTag (const TQString & tag) {
return NodePtr ();
}
-KDE_NO_EXPORT void SMIL::Smil::activate () {
+TDE_NO_EXPORT void SMIL::Smil::activate () {
//kdDebug () << "Smil::activate" << endl;
current_av_media_type = NodePtr ();
resolved = true;
@@ -1621,7 +1621,7 @@ KDE_NO_EXPORT void SMIL::Smil::activate () {
Element::deactivate(); // some unfortunate reset in parent doc
}
-KDE_NO_EXPORT void SMIL::Smil::deactivate () {
+TDE_NO_EXPORT void SMIL::Smil::deactivate () {
if (layout_node)
convertNode <SMIL::Layout> (layout_node)->repaint ();
if (layout_node)
@@ -1630,11 +1630,11 @@ KDE_NO_EXPORT void SMIL::Smil::deactivate () {
Mrl::deactivate ();
}
-KDE_NO_EXPORT bool SMIL::Smil::handleEvent (EventPtr event) {
+TDE_NO_EXPORT bool SMIL::Smil::handleEvent (EventPtr event) {
return layout_node ? layout_node->handleEvent (event) : false;
}
-KDE_NO_EXPORT void SMIL::Smil::closed () {
+TDE_NO_EXPORT void SMIL::Smil::closed () {
NodePtr head;
for (NodePtr e = firstChild (); e; e = e->nextSibling ())
if (e->id == id_node_head) {
@@ -1669,7 +1669,7 @@ KDE_NO_EXPORT void SMIL::Smil::closed () {
}
}
-KDE_NO_EXPORT void SMIL::Smil::childDone (NodePtr child) {
+TDE_NO_EXPORT void SMIL::Smil::childDone (NodePtr child) {
if (unfinished ()) {
if (child->nextSibling ())
child->nextSibling ()->activate ();
@@ -1682,16 +1682,16 @@ KDE_NO_EXPORT void SMIL::Smil::childDone (NodePtr child) {
}
}
-KDE_NO_EXPORT Mrl * SMIL::Smil::linkNode () {
+TDE_NO_EXPORT Mrl * SMIL::Smil::linkNode () {
return current_av_media_type ? current_av_media_type->mrl () : this;
}
-KDE_NO_EXPORT bool SMIL::Smil::expose () const {
+TDE_NO_EXPORT bool SMIL::Smil::expose () const {
return !pretty_name.isEmpty () || //return false if no title and only one
previousSibling () || nextSibling ();
}
-KDE_NO_EXPORT void SMIL::Smil::accept (Visitor * v) {
+TDE_NO_EXPORT void SMIL::Smil::accept (Visitor * v) {
if (active () && layout_node)
layout_node->accept( v );
}
@@ -1736,7 +1736,7 @@ static void headChildDone (NodePtr node, NodePtr child) {
}
}
-KDE_NO_EXPORT NodePtr SMIL::Head::childFromTag (const TQString & tag) {
+TDE_NO_EXPORT NodePtr SMIL::Head::childFromTag (const TQString & tag) {
const char * ctag = tag.ascii ();
if (!strcmp (ctag, "layout"))
return new SMIL::Layout (m_doc);
@@ -1749,11 +1749,11 @@ KDE_NO_EXPORT NodePtr SMIL::Head::childFromTag (const TQString & tag) {
return NodePtr ();
}
-KDE_NO_EXPORT bool SMIL::Head::expose () const {
+TDE_NO_EXPORT bool SMIL::Head::expose () const {
return false;
}
-KDE_NO_EXPORT void SMIL::Head::closed () {
+TDE_NO_EXPORT void SMIL::Head::closed () {
for (NodePtr e = firstChild (); e; e = e->nextSibling ())
if (e->id == id_node_layout)
return;
@@ -1763,7 +1763,7 @@ KDE_NO_EXPORT void SMIL::Head::closed () {
layout->closed (); // add root-layout and a region
}
-KDE_NO_EXPORT void SMIL::Head::childDone (NodePtr child) {
+TDE_NO_EXPORT void SMIL::Head::childDone (NodePtr child) {
headChildDone (this, child);
}
@@ -1772,7 +1772,7 @@ KDE_NO_EXPORT void SMIL::Head::childDone (NodePtr child) {
KDE_NO_CDTOR_EXPORT SMIL::Layout::Layout (NodePtr & d)
: RegionBase (d, id_node_layout) {}
-KDE_NO_EXPORT NodePtr SMIL::Layout::childFromTag (const TQString & tag) {
+TDE_NO_EXPORT NodePtr SMIL::Layout::childFromTag (const TQString & tag) {
const char * ctag = tag.ascii ();
if (!strcmp (ctag, "root-layout")) {
NodePtr e = new SMIL::RootLayout (m_doc);
@@ -1785,7 +1785,7 @@ KDE_NO_EXPORT NodePtr SMIL::Layout::childFromTag (const TQString & tag) {
return NodePtr ();
}
-KDE_NO_EXPORT void SMIL::Layout::closed () {
+TDE_NO_EXPORT void SMIL::Layout::closed () {
SMIL::RegionBase * rl = convertNode <SMIL::RootLayout> (rootLayout);
bool has_root (rl);
if (!has_root) { // just add one if none there
@@ -1829,7 +1829,7 @@ KDE_NO_EXPORT void SMIL::Layout::closed () {
}
}
-KDE_NO_EXPORT void SMIL::Layout::activate () {
+TDE_NO_EXPORT void SMIL::Layout::activate () {
//kdDebug () << "SMIL::Layout::activate" << endl;
RegionBase::activate ();
if (surface ()) {
@@ -1839,7 +1839,7 @@ KDE_NO_EXPORT void SMIL::Layout::activate () {
finish (); // proceed and allow 'head' to finish
}
-KDE_NO_EXPORT void SMIL::Layout::updateDimensions () {
+TDE_NO_EXPORT void SMIL::Layout::updateDimensions () {
RegionBase * rb = static_cast <RegionBase *> (rootLayout.ptr ());
x = y = 0;
w = rb->sizes.width.size ();
@@ -1848,7 +1848,7 @@ KDE_NO_EXPORT void SMIL::Layout::updateDimensions () {
SMIL::RegionBase::updateDimensions ();
}
-KDE_NO_EXPORT Surface *SMIL::Layout::surface () {
+TDE_NO_EXPORT Surface *SMIL::Layout::surface () {
if (!region_surface) {
SMIL::Smil * s = Smil::findSmilNode (this);
if (s) {
@@ -1875,7 +1875,7 @@ KDE_NO_EXPORT Surface *SMIL::Layout::surface () {
return region_surface.ptr ();
}
-KDE_NO_EXPORT void SMIL::Layout::accept (Visitor * v) {
+TDE_NO_EXPORT void SMIL::Layout::accept (Visitor * v) {
v->visit (this);
}
@@ -1891,7 +1891,7 @@ KDE_NO_CDTOR_EXPORT SMIL::RegionBase::~RegionBase () {
region_surface->remove ();
}
-KDE_NO_EXPORT void SMIL::RegionBase::activate () {
+TDE_NO_EXPORT void SMIL::RegionBase::activate () {
show_background = ShowAlways;
init ();
setState (state_activated);
@@ -1900,11 +1900,11 @@ KDE_NO_EXPORT void SMIL::RegionBase::activate () {
r->activate ();
}
-KDE_NO_EXPORT void SMIL::RegionBase::childDone (NodePtr child) {
+TDE_NO_EXPORT void SMIL::RegionBase::childDone (NodePtr child) {
headChildDone (this, child);
}
-KDE_NO_EXPORT void SMIL::RegionBase::deactivate () {
+TDE_NO_EXPORT void SMIL::RegionBase::deactivate () {
background_color = 0;
background_image.truncate (0);
if (region_surface)
@@ -1916,7 +1916,7 @@ KDE_NO_EXPORT void SMIL::RegionBase::deactivate () {
Element::deactivate ();
}
-KDE_NO_EXPORT void SMIL::RegionBase::remoteReady (TQByteArray & data) {
+TDE_NO_EXPORT void SMIL::RegionBase::remoteReady (TQByteArray & data) {
TQImage *pix = new TQImage (data);
if (!pix->isNull ()) {
cached_img.data->image = pix;
@@ -1928,17 +1928,17 @@ KDE_NO_EXPORT void SMIL::RegionBase::remoteReady (TQByteArray & data) {
postpone_lock = 0L;
}
-KDE_NO_EXPORT void SMIL::RegionBase::repaint () {
+TDE_NO_EXPORT void SMIL::RegionBase::repaint () {
if (surface ())
region_surface->repaint (SRect (0, 0, w, h));
}
-KDE_NO_EXPORT void SMIL::RegionBase::repaint (const SRect & rect) {
+TDE_NO_EXPORT void SMIL::RegionBase::repaint (const SRect & rect) {
if (surface ())
region_surface->repaint (SRect (0, 0, w, h).intersect (rect));
}
-KDE_NO_EXPORT void SMIL::RegionBase::updateDimensions () {
+TDE_NO_EXPORT void SMIL::RegionBase::updateDimensions () {
if (surface () && active ())
for (NodePtr r = firstChild (); r; r = r->nextSibling ())
if (r->id == id_node_region) {
@@ -1948,7 +1948,7 @@ KDE_NO_EXPORT void SMIL::RegionBase::updateDimensions () {
}
}
-KDE_NO_EXPORT void SMIL::RegionBase::boundsUpdate () {
+TDE_NO_EXPORT void SMIL::RegionBase::boundsUpdate () {
// if there is a region_surface and it's moved, do a limit repaint
NodePtr p = parentNode ();
if (p && (p->id==SMIL::id_node_region || p->id==SMIL::id_node_layout) &&
@@ -1962,7 +1962,7 @@ KDE_NO_EXPORT void SMIL::RegionBase::boundsUpdate () {
}
}
-KDE_NO_EXPORT Surface *SMIL::RegionBase::surface () {
+TDE_NO_EXPORT Surface *SMIL::RegionBase::surface () {
if (!region_surface) {
Node *n = parentNode ().ptr ();
if (n &&
@@ -1978,7 +1978,7 @@ KDE_NO_EXPORT Surface *SMIL::RegionBase::surface () {
return region_surface.ptr ();
}
-KDE_NO_EXPORT
+TDE_NO_EXPORT
void SMIL::RegionBase::parseParam (const TrieString & name, const TQString & val) {
//kdDebug () << "RegionBase::parseParam " << getAttribute ("id") << " " << name << "=" << val << " active:" << active() << endl;
bool need_repaint = false;
@@ -2044,7 +2044,7 @@ KDE_NO_CDTOR_EXPORT SMIL::Region::Region (NodePtr & d)
has_mouse (false),
m_AttachedMediaTypes (new NodeRefList) {}
-KDE_NO_EXPORT NodePtr SMIL::Region::childFromTag (const TQString & tag) {
+TDE_NO_EXPORT NodePtr SMIL::Region::childFromTag (const TQString & tag) {
if (!strcmp (tag.latin1 (), "region"))
return new SMIL::Region (m_doc);
return NodePtr ();
@@ -2054,7 +2054,7 @@ KDE_NO_EXPORT NodePtr SMIL::Region::childFromTag (const TQString & tag) {
* calculates dimensions of this regions with _w and _h as width and height
* of parent Region (representing 100%)
*/
-KDE_NO_EXPORT
+TDE_NO_EXPORT
void SMIL::Region::calculateBounds (Single pw, Single ph) {
Single x1 (x), y1 (y), w1 (w), h1 (h);
sizes.calcSizes (this, pw, ph, x, y, w, h);
@@ -2074,13 +2074,13 @@ NodeRefListPtr SMIL::Region::listeners (unsigned int eid) {
return RegionBase::listeners (eid);
}
-KDE_NO_EXPORT void SMIL::Region::accept (Visitor * v) {
+TDE_NO_EXPORT void SMIL::Region::accept (Visitor * v) {
v->visit (this);
}
//-----------------------------------------------------------------------------
-KDE_NO_EXPORT
+TDE_NO_EXPORT
void SMIL::RegPoint::parseParam (const TrieString & p, const TQString & v) {
bool b;
sizes.setSizeParam (p, v, b); // TODO: if dynamic, make sure to repaint
@@ -2125,7 +2125,7 @@ KDE_NO_CDTOR_EXPORT SMIL::Transition::Transition (NodePtr & d)
: Element (d, id_node_transition),
type_info (NULL), direction (dir_forward), dur (10), fade_color (0) {}
-KDE_NO_EXPORT void SMIL::Transition::activate () {
+TDE_NO_EXPORT void SMIL::Transition::activate () {
type = TransTypeNone;
sub_type = SubTransTypeNone;
start_progress = 0.0;
@@ -2135,7 +2135,7 @@ KDE_NO_EXPORT void SMIL::Transition::activate () {
Element::activate ();
}
-KDE_NO_EXPORT
+TDE_NO_EXPORT
void SMIL::Transition::parseParam (const TrieString & para, const TQString & val) {
if (para == StringPool::attr_type) {
type_info = transInfoFromString (val.ascii ());
@@ -2183,7 +2183,7 @@ void SMIL::Transition::parseParam (const TrieString & para, const TQString & val
}
}
-KDE_NO_EXPORT bool SMIL::Transition::supported () {
+TDE_NO_EXPORT bool SMIL::Transition::supported () {
switch (type) {
case Fade:
case BarWipe:
@@ -2212,12 +2212,12 @@ KDE_NO_CDTOR_EXPORT SMIL::TimedMrl::~TimedMrl () {
delete m_runtime;
}
-KDE_NO_EXPORT void SMIL::TimedMrl::closed () {
+TDE_NO_EXPORT void SMIL::TimedMrl::closed () {
pretty_name = getAttribute (StringPool::attr_title);
Mrl::closed ();
}
-KDE_NO_EXPORT void SMIL::TimedMrl::init () {
+TDE_NO_EXPORT void SMIL::TimedMrl::init () {
runtime ()->reset ();
begin_time = finish_time = 0;
fill = fill_default;
@@ -2226,7 +2226,7 @@ KDE_NO_EXPORT void SMIL::TimedMrl::init () {
Mrl::init ();
}
-KDE_NO_EXPORT void SMIL::TimedMrl::activate () {
+TDE_NO_EXPORT void SMIL::TimedMrl::activate () {
//kdDebug () << "SMIL::TimedMrl(" << nodeName() << ")::activate" << endl;
Runtime * rt = runtime ();
init ();
@@ -2237,13 +2237,13 @@ KDE_NO_EXPORT void SMIL::TimedMrl::activate () {
deactivate ();
}
-KDE_NO_EXPORT void SMIL::TimedMrl::begin () {
+TDE_NO_EXPORT void SMIL::TimedMrl::begin () {
begin_time = document ()->last_event_time;
Element::begin ();
runtime ()->propagateStop (false); //see whether this node has a livetime or not
}
-KDE_NO_EXPORT void SMIL::TimedMrl::deactivate () {
+TDE_NO_EXPORT void SMIL::TimedMrl::deactivate () {
//kdDebug () << "SMIL::TimedMrl(" << nodeName() << ")::deactivate" << endl;
if (unfinished ())
finish ();
@@ -2255,7 +2255,7 @@ KDE_NO_EXPORT void SMIL::TimedMrl::deactivate () {
Mrl::deactivate ();
}
-KDE_NO_EXPORT void SMIL::TimedMrl::finish () {
+TDE_NO_EXPORT void SMIL::TimedMrl::finish () {
if (m_runtime &&
(m_runtime->state () == Runtime::timings_started ||
m_runtime->state () == Runtime::timings_began)) {
@@ -2267,14 +2267,14 @@ KDE_NO_EXPORT void SMIL::TimedMrl::finish () {
}
}
-KDE_NO_EXPORT void SMIL::TimedMrl::reset () {
+TDE_NO_EXPORT void SMIL::TimedMrl::reset () {
//kdDebug () << "SMIL::TimedMrl::reset " << endl;
Mrl::reset ();
delete m_runtime;
m_runtime = 0L;
}
-KDE_NO_EXPORT void SMIL::TimedMrl::childBegan (NodePtr) {
+TDE_NO_EXPORT void SMIL::TimedMrl::childBegan (NodePtr) {
if (state != state_began)
begin ();
}
@@ -2284,7 +2284,7 @@ KDE_NO_EXPORT void SMIL::TimedMrl::childBegan (NodePtr) {
* Bail out if Runtime is running. In case of dur_media, give Runtime
* a hand with calling propagateStop(true)
*/
-KDE_NO_EXPORT void SMIL::TimedMrl::childDone (NodePtr c) {
+TDE_NO_EXPORT void SMIL::TimedMrl::childDone (NodePtr c) {
if (!active ())
return; // forced reset
if (c->nextSibling ())
@@ -2300,7 +2300,7 @@ KDE_NO_EXPORT void SMIL::TimedMrl::childDone (NodePtr c) {
}
}
-KDE_NO_EXPORT NodeRefListPtr SMIL::TimedMrl::listeners (unsigned int id) {
+TDE_NO_EXPORT NodeRefListPtr SMIL::TimedMrl::listeners (unsigned int id) {
if (id == event_stopped)
return m_StoppedListeners;
else if (id == event_started)
@@ -2311,7 +2311,7 @@ KDE_NO_EXPORT NodeRefListPtr SMIL::TimedMrl::listeners (unsigned int id) {
return NodeRefListPtr ();
}
-KDE_NO_EXPORT bool SMIL::TimedMrl::handleEvent (EventPtr event) {
+TDE_NO_EXPORT bool SMIL::TimedMrl::handleEvent (EventPtr event) {
unsigned int id = event->id ();
switch (id) {
case event_timer: {
@@ -2337,11 +2337,11 @@ KDE_NO_EXPORT bool SMIL::TimedMrl::handleEvent (EventPtr event) {
return true;
}
-KDE_NO_EXPORT Runtime * SMIL::TimedMrl::getNewRuntime () {
+TDE_NO_EXPORT Runtime * SMIL::TimedMrl::getNewRuntime () {
return new Runtime (this);
}
-KDE_NO_EXPORT
+TDE_NO_EXPORT
void SMIL::TimedMrl::parseParam (const TrieString &para, const TQString &value) {
if (para.startsWith (StringPool::attr_fill)) {
Fill * f = &fill;
@@ -2376,7 +2376,7 @@ void SMIL::TimedMrl::parseParam (const TrieString &para, const TQString &value)
}
}
-KDE_NO_EXPORT
+TDE_NO_EXPORT
Runtime::DurationItem * SMIL::TimedMrl::getDuration (NodePtr n) {
if (!isTimedMrl (n) || !n->active ())
return 0L;
@@ -2384,7 +2384,7 @@ Runtime::DurationItem * SMIL::TimedMrl::getDuration (NodePtr n) {
return &tm->runtime ()->durations [Runtime::duration_time];
}
-KDE_NO_EXPORT bool SMIL::TimedMrl::keepContent (Node *n) {
+TDE_NO_EXPORT bool SMIL::TimedMrl::keepContent (Node *n) {
if (isTimedMrl (n)) {
TimedMrl * tm = convertNode <SMIL::TimedMrl> (n);
if (tm->runtime ()->timingstate == Runtime::timings_started)
@@ -2426,7 +2426,7 @@ KDE_NO_EXPORT bool SMIL::TimedMrl::keepContent (Node *n) {
return true;
}
-KDE_NO_EXPORT SMIL::TimedMrl::Fill SMIL::TimedMrl::getDefaultFill (NodePtr n) {
+TDE_NO_EXPORT SMIL::TimedMrl::Fill SMIL::TimedMrl::getDefaultFill (NodePtr n) {
for (NodePtr p = n->parentNode (); p; p = p->parentNode ())
if (isTimedMrl (p)) {
SMIL::TimedMrl * tm = convertNode<SMIL::TimedMrl>(p);
@@ -2441,7 +2441,7 @@ KDE_NO_EXPORT SMIL::TimedMrl::Fill SMIL::TimedMrl::getDefaultFill (NodePtr n) {
//-----------------------------------------------------------------------------
-KDE_NO_EXPORT NodePtr SMIL::GroupBase::childFromTag (const TQString & tag) {
+TDE_NO_EXPORT NodePtr SMIL::GroupBase::childFromTag (const TQString & tag) {
Element * elm = fromScheduleGroup (m_doc, tag);
if (!elm) elm = fromMediaContentGroup (m_doc, tag);
if (!elm) elm = fromContentControlGroup (m_doc, tag);
@@ -2451,7 +2451,7 @@ KDE_NO_EXPORT NodePtr SMIL::GroupBase::childFromTag (const TQString & tag) {
return NULL;
}
-KDE_NO_EXPORT void SMIL::GroupBase::finish () {
+TDE_NO_EXPORT void SMIL::GroupBase::finish () {
setState (state_finished); // avoid recurstion through childDone
for (NodePtr e = firstChild (); e; e = e->nextSibling ())
if (keepContent (e)) {
@@ -2462,7 +2462,7 @@ KDE_NO_EXPORT void SMIL::GroupBase::finish () {
TimedMrl::finish ();
}
-KDE_NO_EXPORT void SMIL::GroupBase::deactivate () {
+TDE_NO_EXPORT void SMIL::GroupBase::deactivate () {
setState (state_deactivated); // avoid recurstion through childDone
for (NodePtr e = firstChild (); e; e = e->nextSibling ())
if (e->active ())
@@ -2470,7 +2470,7 @@ KDE_NO_EXPORT void SMIL::GroupBase::deactivate () {
TimedMrl::deactivate ();
}
-KDE_NO_EXPORT void SMIL::GroupBase::setJumpNode (NodePtr n) {
+TDE_NO_EXPORT void SMIL::GroupBase::setJumpNode (NodePtr n) {
NodePtr child = n;
if (state > state_init) {
for (NodePtr c = firstChild (); c; c = c->nextSibling ())
@@ -2496,20 +2496,20 @@ KDE_NO_EXPORT void SMIL::GroupBase::setJumpNode (NodePtr n) {
//-----------------------------------------------------------------------------
-KDE_NO_EXPORT void SMIL::Par::begin () {
+TDE_NO_EXPORT void SMIL::Par::begin () {
jump_node = 0L; // TODO: adjust timings
for (NodePtr e = firstChild (); e; e = e->nextSibling ())
e->activate ();
GroupBase::begin ();
}
-KDE_NO_EXPORT void SMIL::Par::reset () {
+TDE_NO_EXPORT void SMIL::Par::reset () {
GroupBase::reset ();
for (NodePtr e = firstChild (); e; e = e->nextSibling ())
e->reset ();
}
-KDE_NO_EXPORT void SMIL::Par::childDone (NodePtr) {
+TDE_NO_EXPORT void SMIL::Par::childDone (NodePtr) {
if (unfinished ()) {
for (NodePtr e = firstChild (); e; e = e->nextSibling ()) {
if (e->unfinished ())
@@ -2529,7 +2529,7 @@ KDE_NO_EXPORT void SMIL::Par::childDone (NodePtr) {
//-----------------------------------------------------------------------------
-KDE_NO_EXPORT void SMIL::Seq::begin () {
+TDE_NO_EXPORT void SMIL::Seq::begin () {
if (jump_node) {
for (NodePtr c = firstChild (); c; c = c->nextSibling ())
if (c == jump_node) {
@@ -2547,7 +2547,7 @@ KDE_NO_EXPORT void SMIL::Seq::begin () {
GroupBase::begin ();
}
-KDE_NO_EXPORT void SMIL::Seq::childDone (NodePtr child) {
+TDE_NO_EXPORT void SMIL::Seq::childDone (NodePtr child) {
if (unfinished ()) {
if (state != state_deferred) {
if (!keepContent (child) && child->active ())
@@ -2563,7 +2563,7 @@ KDE_NO_EXPORT void SMIL::Seq::childDone (NodePtr child) {
//-----------------------------------------------------------------------------
-KDE_NO_EXPORT void SMIL::Excl::begin () {
+TDE_NO_EXPORT void SMIL::Excl::begin () {
//kdDebug () << "SMIL::Excl::begin" << endl;
for (NodePtr e = firstChild (); e; e = e->nextSibling ())
e->activate ();
@@ -2578,12 +2578,12 @@ KDE_NO_EXPORT void SMIL::Excl::begin () {
GroupBase::begin ();
}
-KDE_NO_EXPORT void SMIL::Excl::deactivate () {
+TDE_NO_EXPORT void SMIL::Excl::deactivate () {
started_event_list.clear (); // auto disconnect on destruction of data items
GroupBase::deactivate ();
}
-KDE_NO_EXPORT void SMIL::Excl::childDone (NodePtr /*child*/) {
+TDE_NO_EXPORT void SMIL::Excl::childDone (NodePtr /*child*/) {
// first check if somenode has taken over
for (NodePtr e = firstChild (); e; e = e->nextSibling ())
if (isTimedMrl (e)) {
@@ -2599,7 +2599,7 @@ KDE_NO_EXPORT void SMIL::Excl::childDone (NodePtr /*child*/) {
finish (); // we're done
}
-KDE_NO_EXPORT bool SMIL::Excl::handleEvent (EventPtr event) {
+TDE_NO_EXPORT bool SMIL::Excl::handleEvent (EventPtr event) {
if (event->id () == event_to_be_started) {
ToBeStartedEvent * se = static_cast <ToBeStartedEvent *> (event.ptr ());
//kdDebug () << "Excl::handleEvent " << se->node->nodeName()<<endl;
@@ -2617,7 +2617,7 @@ KDE_NO_EXPORT bool SMIL::Excl::handleEvent (EventPtr event) {
//-----------------------------------------------------------------------------
-KDE_NO_EXPORT void SMIL::Switch::begin () {
+TDE_NO_EXPORT void SMIL::Switch::begin () {
//kdDebug () << "SMIL::Switch::activate" << endl;
PlayListNotify * n = document()->notify_listener;
int pref = 0, max = 0x7fffffff, currate = 0;
@@ -2664,7 +2664,7 @@ KDE_NO_EXPORT void SMIL::Switch::begin () {
GroupBase::begin ();
}
-KDE_NO_EXPORT void SMIL::Switch::deactivate () {
+TDE_NO_EXPORT void SMIL::Switch::deactivate () {
Element::deactivate ();
for (NodePtr e = firstChild (); e; e = e->nextSibling ())
if (e->active ()) {
@@ -2673,7 +2673,7 @@ KDE_NO_EXPORT void SMIL::Switch::deactivate () {
}
}
-KDE_NO_EXPORT void SMIL::Switch::reset () {
+TDE_NO_EXPORT void SMIL::Switch::reset () {
Element::reset ();
for (NodePtr e = firstChild (); e; e = e->nextSibling ()) {
if (e->state != state_init)
@@ -2681,7 +2681,7 @@ KDE_NO_EXPORT void SMIL::Switch::reset () {
}
}
-KDE_NO_EXPORT void SMIL::Switch::childDone (NodePtr child) {
+TDE_NO_EXPORT void SMIL::Switch::childDone (NodePtr child) {
if (child->state == state_finished)
child->deactivate ();
//kdDebug () << "SMIL::Switch::childDone" << endl;
@@ -2693,13 +2693,13 @@ KDE_NO_EXPORT void SMIL::Switch::childDone (NodePtr child) {
KDE_NO_CDTOR_EXPORT SMIL::LinkingBase::LinkingBase (NodePtr & d, short id)
: Element(d, id), show (show_replace) {}
-KDE_NO_EXPORT void SMIL::LinkingBase::deactivate () {
+TDE_NO_EXPORT void SMIL::LinkingBase::deactivate () {
mediatype_activated = 0L;
mediatype_attach = 0L;
Element::deactivate ();
}
-KDE_NO_EXPORT
+TDE_NO_EXPORT
void SMIL::LinkingBase::parseParam(const TrieString &para, const TQString &val) {
if (para == StringPool::attr_href) {
href = val;
@@ -2711,7 +2711,7 @@ void SMIL::LinkingBase::parseParam(const TrieString &para, const TQString &val)
KDE_NO_CDTOR_EXPORT SMIL::Anchor::Anchor (NodePtr & d)
: LinkingBase (d, id_node_anchor) {}
-KDE_NO_EXPORT void SMIL::Anchor::activate () {
+TDE_NO_EXPORT void SMIL::Anchor::activate () {
init ();
for (NodePtr c = firstChild(); c; c = c->nextSibling ())
if (c->id >=id_node_first_mediatype && c->id <=id_node_last_mediatype) {
@@ -2722,7 +2722,7 @@ KDE_NO_EXPORT void SMIL::Anchor::activate () {
Element::activate ();
}
-KDE_NO_EXPORT void SMIL::Anchor::childDone (NodePtr child) {
+TDE_NO_EXPORT void SMIL::Anchor::childDone (NodePtr child) {
if (unfinished ()) {
if (child->nextSibling ())
child->nextSibling ()->activate ();
@@ -2744,7 +2744,7 @@ KDE_NO_CDTOR_EXPORT SMIL::Area::~Area () {
delete [] coords;
}
-KDE_NO_EXPORT void SMIL::Area::activate () {
+TDE_NO_EXPORT void SMIL::Area::activate () {
init ();
if (parentNode () &&
parentNode ()->id >= id_node_first_mediatype &&
@@ -2755,7 +2755,7 @@ KDE_NO_EXPORT void SMIL::Area::activate () {
Element::activate ();
}
-KDE_NO_EXPORT
+TDE_NO_EXPORT
void SMIL::Area::parseParam (const TrieString & para, const TQString & val) {
if (para == "coords") {
delete [] coords;
@@ -2768,7 +2768,7 @@ void SMIL::Area::parseParam (const TrieString & para, const TQString & val) {
LinkingBase::parseParam (para, val);
}
-KDE_NO_EXPORT NodeRefListPtr SMIL::Area::listeners (unsigned int id) {
+TDE_NO_EXPORT NodeRefListPtr SMIL::Area::listeners (unsigned int id) {
NodeRefListPtr l = mouse_listeners.listeners (id);
if (l)
return l;
@@ -2784,7 +2784,7 @@ KDE_NO_CDTOR_EXPORT SMIL::MediaType::MediaType (NodePtr &d, const TQString &t, s
view_mode = Mrl::WindowMode;
}
-KDE_NO_EXPORT NodePtr SMIL::MediaType::childFromTag (const TQString & tag) {
+TDE_NO_EXPORT NodePtr SMIL::MediaType::childFromTag (const TQString & tag) {
Element * elm = fromContentControlGroup (m_doc, tag);
if (!elm) elm = fromParamGroup (m_doc, tag);
if (!elm) elm = fromAnimateGroup (m_doc, tag);
@@ -2793,7 +2793,7 @@ KDE_NO_EXPORT NodePtr SMIL::MediaType::childFromTag (const TQString & tag) {
return 0L;
}
-KDE_NO_EXPORT void SMIL::MediaType::closed () {
+TDE_NO_EXPORT void SMIL::MediaType::closed () {
external_tree = findExternalTree (this);
Mrl *mrl = external_tree ? external_tree->mrl () : NULL;
if (mrl) {
@@ -2803,7 +2803,7 @@ KDE_NO_EXPORT void SMIL::MediaType::closed () {
TimedMrl::closed ();
}
-KDE_NO_EXPORT
+TDE_NO_EXPORT
void SMIL::MediaType::parseParam (const TrieString &para, const TQString & val) {
bool update_surface = true;
if (para == "fit") {
@@ -2863,7 +2863,7 @@ void SMIL::MediaType::parseParam (const TrieString &para, const TQString & val)
sub_surface->repaint ();
}
-KDE_NO_EXPORT void SMIL::MediaType::boundsUpdate () {
+TDE_NO_EXPORT void SMIL::MediaType::boundsUpdate () {
SMIL::RegionBase *rb = convertNode <SMIL::RegionBase> (region_node);
if (rb && sub_surface) {
SRect new_bounds = calculateBounds ();
@@ -2873,7 +2873,7 @@ KDE_NO_EXPORT void SMIL::MediaType::boundsUpdate () {
}
}
-KDE_NO_EXPORT void SMIL::MediaType::activate () {
+TDE_NO_EXPORT void SMIL::MediaType::activate () {
trans_out_active = false;
fit = fit_hidden;
opacity = 100;
@@ -2888,7 +2888,7 @@ KDE_NO_EXPORT void SMIL::MediaType::activate () {
runtime ()->begin ();
}
-KDE_NO_EXPORT void SMIL::MediaType::deactivate () {
+TDE_NO_EXPORT void SMIL::MediaType::deactivate () {
region_paint = 0L;
region_mouse_enter = 0L;
region_mouse_leave = 0L;
@@ -2905,7 +2905,7 @@ KDE_NO_EXPORT void SMIL::MediaType::deactivate () {
region_node = 0L;
}
-KDE_NO_EXPORT void SMIL::MediaType::begin () {
+TDE_NO_EXPORT void SMIL::MediaType::begin () {
SMIL::Smil * s = Smil::findSmilNode (parentNode ().ptr ());
SMIL::Region * r = s ?
findRegion (s->layout_node, param (StringPool::attr_region)) : 0L;
@@ -2949,7 +2949,7 @@ KDE_NO_EXPORT void SMIL::MediaType::begin () {
TimedMrl::begin ();
}
-KDE_NO_EXPORT void SMIL::MediaType::finish () {
+TDE_NO_EXPORT void SMIL::MediaType::finish () {
if (trans_timer && !keepContent (this)) {
document ()->cancelTimer (trans_timer);
ASSERT(!trans_timer);
@@ -2965,7 +2965,7 @@ KDE_NO_EXPORT void SMIL::MediaType::finish () {
* param/set/animatie that should all be activate, but also other smil or imfl
* documents, that should only be activated if the runtime has started
*/
-KDE_NO_EXPORT void SMIL::MediaType::childDone (NodePtr child) {
+TDE_NO_EXPORT void SMIL::MediaType::childDone (NodePtr child) {
bool child_doc = child->mrl () && child->mrl ()->opener.ptr () == this;
if (child_doc) {
child->deactivate (); // should only if fill not is freeze or hold
@@ -2986,7 +2986,7 @@ KDE_NO_EXPORT void SMIL::MediaType::childDone (NodePtr child) {
finish ();
}
-KDE_NO_EXPORT bool SMIL::MediaType::needsVideoWidget () {
+TDE_NO_EXPORT bool SMIL::MediaType::needsVideoWidget () {
MediaTypeRuntime * mtr = static_cast <MediaTypeRuntime *> (runtime ());
SMIL::Smil * s = SMIL::Smil::findSmilNode (this);
Node * link = s ? s->current_av_media_type.ptr () : 0L;
@@ -3005,7 +3005,7 @@ SurfacePtr SMIL::MediaType::getSurface (NodePtr node) {
return s;
}
-KDE_NO_EXPORT Surface *SMIL::MediaType::surface () {
+TDE_NO_EXPORT Surface *SMIL::MediaType::surface () {
if (!keepContent (this)) {
resetSurface ();
return NULL;
@@ -3025,13 +3025,13 @@ KDE_NO_EXPORT Surface *SMIL::MediaType::surface () {
return sub_surface.ptr ();
}
-KDE_NO_EXPORT void SMIL::MediaType::resetSurface () {
+TDE_NO_EXPORT void SMIL::MediaType::resetSurface () {
if (sub_surface)
sub_surface->remove ();
sub_surface = NULL;
}
-KDE_NO_EXPORT SRect SMIL::MediaType::calculateBounds () {
+TDE_NO_EXPORT SRect SMIL::MediaType::calculateBounds () {
SMIL::RegionBase *rb = convertNode <SMIL::RegionBase> (region_node);
if (rb && rb->surface ()) {
SRect rr = rb->region_surface->bounds;
@@ -3115,7 +3115,7 @@ bool SMIL::MediaType::handleEvent (EventPtr event) {
}
}
-KDE_NO_EXPORT NodeRefListPtr SMIL::MediaType::listeners (unsigned int id) {
+TDE_NO_EXPORT NodeRefListPtr SMIL::MediaType::listeners (unsigned int id) {
NodeRefListPtr l = mouse_listeners.listeners (id);
if (l)
return l;
@@ -3132,18 +3132,18 @@ KDE_NO_CDTOR_EXPORT
SMIL::AVMediaType::AVMediaType (NodePtr & d, const TQString & t)
: SMIL::MediaType (d, t, id_node_audio_video) {}
-KDE_NO_EXPORT NodePtr SMIL::AVMediaType::childFromTag (const TQString & tag) {
+TDE_NO_EXPORT NodePtr SMIL::AVMediaType::childFromTag (const TQString & tag) {
return fromXMLDocumentTag (m_doc, tag);
}
-KDE_NO_EXPORT void SMIL::AVMediaType::defer () {
+TDE_NO_EXPORT void SMIL::AVMediaType::defer () {
setState (state_deferred);
MediaTypeRuntime * mr = static_cast <MediaTypeRuntime *> (runtime ());
if (mr->state () == Runtime::timings_started)
mr->postpone_lock = document ()->postpone ();
}
-KDE_NO_EXPORT void SMIL::AVMediaType::undefer () {
+TDE_NO_EXPORT void SMIL::AVMediaType::undefer () {
setState (state_activated);
MediaTypeRuntime * mr = static_cast <MediaTypeRuntime *> (runtime ());
if (mr->state () == Runtime::timings_started) {
@@ -3152,7 +3152,7 @@ KDE_NO_EXPORT void SMIL::AVMediaType::undefer () {
}
}
-KDE_NO_EXPORT void SMIL::AVMediaType::endOfFile () {
+TDE_NO_EXPORT void SMIL::AVMediaType::endOfFile () {
if (!active())
return; // backend eof after a reset
MediaTypeRuntime * mr = static_cast <MediaTypeRuntime *> (runtime ());
@@ -3160,15 +3160,15 @@ KDE_NO_EXPORT void SMIL::AVMediaType::endOfFile () {
mr->propagateStop (true);
}
-KDE_NO_EXPORT Runtime * SMIL::AVMediaType::getNewRuntime () {
+TDE_NO_EXPORT Runtime * SMIL::AVMediaType::getNewRuntime () {
return new AudioVideoData (this);
}
-KDE_NO_EXPORT void SMIL::AVMediaType::accept (Visitor * v) {
+TDE_NO_EXPORT void SMIL::AVMediaType::accept (Visitor * v) {
v->visit (this);
}
-KDE_NO_EXPORT bool SMIL::AVMediaType::expose () const {
+TDE_NO_EXPORT bool SMIL::AVMediaType::expose () const {
return !src.isEmpty () && !external_tree;
}
@@ -3178,17 +3178,17 @@ KDE_NO_CDTOR_EXPORT
SMIL::ImageMediaType::ImageMediaType (NodePtr & d)
: SMIL::MediaType (d, "img", id_node_img) {}
-KDE_NO_EXPORT Runtime * SMIL::ImageMediaType::getNewRuntime () {
+TDE_NO_EXPORT Runtime * SMIL::ImageMediaType::getNewRuntime () {
return new ImageRuntime (this);
}
-KDE_NO_EXPORT NodePtr SMIL::ImageMediaType::childFromTag (const TQString & tag) {
+TDE_NO_EXPORT NodePtr SMIL::ImageMediaType::childFromTag (const TQString & tag) {
if (!strcmp (tag.latin1 (), "imfl"))
return new RP::Imfl (m_doc);
return SMIL::MediaType::childFromTag (tag);
}
-KDE_NO_EXPORT void SMIL::ImageMediaType::accept (Visitor * v) {
+TDE_NO_EXPORT void SMIL::ImageMediaType::accept (Visitor * v) {
v->visit (this);
}
@@ -3198,11 +3198,11 @@ KDE_NO_CDTOR_EXPORT
SMIL::TextMediaType::TextMediaType (NodePtr & d)
: SMIL::MediaType (d, "text", id_node_text) {}
-KDE_NO_EXPORT Runtime * SMIL::TextMediaType::getNewRuntime () {
+TDE_NO_EXPORT Runtime * SMIL::TextMediaType::getNewRuntime () {
return new TextRuntime (this);
}
-KDE_NO_EXPORT void SMIL::TextMediaType::accept (Visitor * v) {
+TDE_NO_EXPORT void SMIL::TextMediaType::accept (Visitor * v) {
v->visit (this);
}
@@ -3212,11 +3212,11 @@ KDE_NO_CDTOR_EXPORT
SMIL::RefMediaType::RefMediaType (NodePtr & d)
: SMIL::MediaType (d, "ref", id_node_ref) {}
-KDE_NO_EXPORT Runtime * SMIL::RefMediaType::getNewRuntime () {
+TDE_NO_EXPORT Runtime * SMIL::RefMediaType::getNewRuntime () {
return new AudioVideoData (this); // FIXME check mimetype first
}
-KDE_NO_EXPORT void SMIL::RefMediaType::accept (Visitor * v) {
+TDE_NO_EXPORT void SMIL::RefMediaType::accept (Visitor * v) {
v->visit (this);
}
@@ -3225,27 +3225,27 @@ KDE_NO_EXPORT void SMIL::RefMediaType::accept (Visitor * v) {
KDE_NO_CDTOR_EXPORT SMIL::Brush::Brush (NodePtr & d)
: SMIL::MediaType (d, "brush", id_node_brush) {}
-KDE_NO_EXPORT void SMIL::Brush::accept (Visitor * v) {
+TDE_NO_EXPORT void SMIL::Brush::accept (Visitor * v) {
v->visit (this);
}
-KDE_NO_EXPORT Runtime * SMIL::Brush::getNewRuntime () {
+TDE_NO_EXPORT Runtime * SMIL::Brush::getNewRuntime () {
return new MediaTypeRuntime (this);
}
//-----------------------------------------------------------------------------
-KDE_NO_EXPORT Runtime * SMIL::Set::getNewRuntime () {
+TDE_NO_EXPORT Runtime * SMIL::Set::getNewRuntime () {
return new SetData (this);
}
//-----------------------------------------------------------------------------
-KDE_NO_EXPORT Runtime * SMIL::Animate::getNewRuntime () {
+TDE_NO_EXPORT Runtime * SMIL::Animate::getNewRuntime () {
return new AnimateData (this);
}
-KDE_NO_EXPORT bool SMIL::Animate::handleEvent (EventPtr event) {
+TDE_NO_EXPORT bool SMIL::Animate::handleEvent (EventPtr event) {
if (event->id () == event_timer) {
TimerEvent * te = static_cast <TimerEvent *> (event.ptr ());
if (te && te->timer_info && te->timer_info->event_id == anim_timer_id) {
@@ -3260,11 +3260,11 @@ KDE_NO_EXPORT bool SMIL::Animate::handleEvent (EventPtr event) {
//-----------------------------------------------------------------------------
-KDE_NO_EXPORT Runtime *SMIL::AnimateMotion::getNewRuntime () {
+TDE_NO_EXPORT Runtime *SMIL::AnimateMotion::getNewRuntime () {
return new AnimateMotionData (this);
}
-KDE_NO_EXPORT bool SMIL::AnimateMotion::handleEvent (EventPtr event) {
+TDE_NO_EXPORT bool SMIL::AnimateMotion::handleEvent (EventPtr event) {
if (event->id () == event_timer) {
TimerEvent * te = static_cast <TimerEvent *> (event.ptr ());
if (te && te->timer_info && te->timer_info->event_id == anim_timer_id) {
@@ -3279,7 +3279,7 @@ KDE_NO_EXPORT bool SMIL::AnimateMotion::handleEvent (EventPtr event) {
//-----------------------------------------------------------------------------
-KDE_NO_EXPORT void SMIL::Param::activate () {
+TDE_NO_EXPORT void SMIL::Param::activate () {
setState (state_activated);
TQString name = getAttribute (StringPool::attr_name);
Node * parent = parentNode ().ptr ();
@@ -3291,51 +3291,51 @@ KDE_NO_EXPORT void SMIL::Param::activate () {
//-----------------------------------------------------------------------------
-KDE_NO_EXPORT void Visitor::visit (SMIL::Region * n) {
+TDE_NO_EXPORT void Visitor::visit (SMIL::Region * n) {
visit (static_cast <SMIL::RegionBase *> (n));
}
-KDE_NO_EXPORT void Visitor::visit (SMIL::Layout * n) {
+TDE_NO_EXPORT void Visitor::visit (SMIL::Layout * n) {
visit (static_cast <SMIL::RegionBase *> (n));
}
-KDE_NO_EXPORT void Visitor::visit (SMIL::Transition * n) {
+TDE_NO_EXPORT void Visitor::visit (SMIL::Transition * n) {
visit (static_cast <Element *> (n));
}
-KDE_NO_EXPORT void Visitor::visit (SMIL::TimedMrl * n) {
+TDE_NO_EXPORT void Visitor::visit (SMIL::TimedMrl * n) {
visit (static_cast <Element *> (n));
}
-KDE_NO_EXPORT void Visitor::visit (SMIL::MediaType * n) {
+TDE_NO_EXPORT void Visitor::visit (SMIL::MediaType * n) {
visit (static_cast <SMIL::TimedMrl *> (n));
}
-KDE_NO_EXPORT void Visitor::visit (SMIL::ImageMediaType * n) {
+TDE_NO_EXPORT void Visitor::visit (SMIL::ImageMediaType * n) {
visit (static_cast <SMIL::MediaType *> (n));
}
-KDE_NO_EXPORT void Visitor::visit (SMIL::TextMediaType * n) {
+TDE_NO_EXPORT void Visitor::visit (SMIL::TextMediaType * n) {
visit (static_cast <SMIL::MediaType *> (n));
}
-KDE_NO_EXPORT void Visitor::visit (SMIL::RefMediaType * n) {
+TDE_NO_EXPORT void Visitor::visit (SMIL::RefMediaType * n) {
visit (static_cast <SMIL::MediaType *> (n));
}
-KDE_NO_EXPORT void Visitor::visit (SMIL::AVMediaType * n) {
+TDE_NO_EXPORT void Visitor::visit (SMIL::AVMediaType * n) {
visit (static_cast <SMIL::MediaType *> (n));
}
-KDE_NO_EXPORT void Visitor::visit (SMIL::Brush * n) {
+TDE_NO_EXPORT void Visitor::visit (SMIL::Brush * n) {
visit (static_cast <SMIL::MediaType *> (n));
}
-KDE_NO_EXPORT void Visitor::visit (SMIL::Anchor * n) {
+TDE_NO_EXPORT void Visitor::visit (SMIL::Anchor * n) {
visit (static_cast <SMIL::LinkingBase *> (n));
}
-KDE_NO_EXPORT void Visitor::visit (SMIL::Area * n) {
+TDE_NO_EXPORT void Visitor::visit (SMIL::Area * n) {
visit (static_cast <SMIL::LinkingBase *> (n));
}
@@ -3349,7 +3349,7 @@ KDE_NO_CDTOR_EXPORT ImageRuntime::~ImageRuntime () {
delete img_movie;
}
-KDE_NO_EXPORT
+TDE_NO_EXPORT
bool ImageRuntime::parseParam (const TrieString & name, const TQString & val) {
//kdDebug () << "ImageRuntime::param " << name << "=" << val << endl;
if (name == StringPool::attr_src) {
@@ -3379,7 +3379,7 @@ bool ImageRuntime::parseParam (const TrieString & name, const TQString & val) {
/**
* start_timer timer expired, repaint if we have an image
*/
-KDE_NO_EXPORT void ImageRuntime::started () {
+TDE_NO_EXPORT void ImageRuntime::started () {
if (element && downloading ()) {
postpone_lock = element->document ()->postpone ();
return;
@@ -3387,7 +3387,7 @@ KDE_NO_EXPORT void ImageRuntime::started () {
MediaTypeRuntime::started ();
}
-KDE_NO_EXPORT void ImageRuntime::clipStart () {
+TDE_NO_EXPORT void ImageRuntime::clipStart () {
if (img_movie) {
img_movie->restart ();
if (img_movie->paused ())
@@ -3396,13 +3396,13 @@ KDE_NO_EXPORT void ImageRuntime::clipStart () {
MediaTypeRuntime::clipStart ();
}
-KDE_NO_EXPORT void ImageRuntime::clipStop () {
+TDE_NO_EXPORT void ImageRuntime::clipStop () {
if (img_movie && frame_nr)
img_movie->pause ();
MediaTypeRuntime::clipStop ();
}
-KDE_NO_EXPORT void ImageRuntime::remoteReady (TQByteArray & data) {
+TDE_NO_EXPORT void ImageRuntime::remoteReady (TQByteArray & data) {
NodePtr element_protect = element; // note element is weak
SMIL::MediaType * mt = convertNode <SMIL::MediaType> (element);
if (data.size () && mt) {
@@ -3442,7 +3442,7 @@ KDE_NO_EXPORT void ImageRuntime::remoteReady (TQByteArray & data) {
started ();
}
-KDE_NO_EXPORT void ImageRuntime::movieUpdated (const TQRect &) {
+TDE_NO_EXPORT void ImageRuntime::movieUpdated (const TQRect &) {
SMIL::MediaType * mt = convertNode <SMIL::MediaType> (element);
if (mt && frame_nr++) {
mt->resetSurface ();
@@ -3457,7 +3457,7 @@ KDE_NO_EXPORT void ImageRuntime::movieUpdated (const TQRect &) {
img_movie->pause ();
}
-KDE_NO_EXPORT void ImageRuntime::movieStatus (int s) {
+TDE_NO_EXPORT void ImageRuntime::movieStatus (int s) {
if (element && element->state >= Node::state_began &&
SMIL::TimedMrl::keepContent (element)) {
if (s == TQMovie::EndOfMovie) {
@@ -3466,14 +3466,14 @@ KDE_NO_EXPORT void ImageRuntime::movieStatus (int s) {
}
}
-KDE_NO_EXPORT void ImageRuntime::movieResize (const TQSize &) {
+TDE_NO_EXPORT void ImageRuntime::movieResize (const TQSize &) {
SMIL::MediaType * mt = convertNode <SMIL::MediaType> (element);
if (mt->surface ())
mt->sub_surface->repaint ();
//kdDebug () << "movieResize" << endl;
}
-KDE_NO_EXPORT void ImageRuntime::postpone (bool b) {
+TDE_NO_EXPORT void ImageRuntime::postpone (bool b) {
kdDebug () << "ImageRuntime::postpone " << b << endl;
if (img_movie) {
if (!img_movie->paused () && b)
@@ -3511,7 +3511,7 @@ KDE_NO_CDTOR_EXPORT TextRuntime::~TextRuntime () {
delete d;
}
-KDE_NO_EXPORT void TextRuntime::reset () {
+TDE_NO_EXPORT void TextRuntime::reset () {
d->reset ();
font_size = d->font.pointSize ();
font_color = 0;
@@ -3521,7 +3521,7 @@ KDE_NO_EXPORT void TextRuntime::reset () {
MediaTypeRuntime::reset ();
}
-KDE_NO_EXPORT
+TDE_NO_EXPORT
bool TextRuntime::parseParam (const TrieString & name, const TQString & val) {
//kdDebug () << "TextRuntime::parseParam " << name << "=" << val << endl;
SMIL::MediaType * mt = convertNode <SMIL::MediaType> (element);
@@ -3571,7 +3571,7 @@ bool TextRuntime::parseParam (const TrieString & name, const TQString & val) {
/**
* start_timer timer expired, repaint if we have text
*/
-KDE_NO_EXPORT void TextRuntime::started () {
+TDE_NO_EXPORT void TextRuntime::started () {
if (element && downloading ()) {
postpone_lock = element->document ()->postpone ();
return;
@@ -3579,7 +3579,7 @@ KDE_NO_EXPORT void TextRuntime::started () {
MediaTypeRuntime::started ();
}
-KDE_NO_EXPORT void TextRuntime::remoteReady (TQByteArray & data) {
+TDE_NO_EXPORT void TextRuntime::remoteReady (TQByteArray & data) {
TQString str (data);
SMIL::MediaType * mt = convertNode <SMIL::MediaType> (element);
if (mt && data.size ()) {