summaryrefslogtreecommitdiffstats
path: root/src/kmplayersource.h
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-05-03 12:15:51 +0900
committerMichele Calgaro <[email protected]>2024-05-07 12:22:48 +0900
commitc5d77586845f1afdb3869941ed4612de6be566a0 (patch)
treef0fd879959ef68abe19bc21e9f2e58ed04e9b55a /src/kmplayersource.h
parent2debdf218d21f3e2efc518481f0aea57a46b6539 (diff)
downloadkmplayer-c5d77586845f1afdb3869941ed4612de6be566a0.tar.gz
kmplayer-c5d77586845f1afdb3869941ed4612de6be566a0.zip
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 22a46b7525fb4db31bdd603c7a18a9204144ef0f)
Diffstat (limited to 'src/kmplayersource.h')
-rw-r--r--src/kmplayersource.h46
1 files changed, 23 insertions, 23 deletions
diff --git a/src/kmplayersource.h b/src/kmplayersource.h
index ead5649..bc727eb 100644
--- a/src/kmplayersource.h
+++ b/src/kmplayersource.h
@@ -52,31 +52,31 @@ public:
virtual bool hasLength ();
virtual bool isSeekable ();
- KDE_NO_EXPORT int width () const { return m_width; }
- KDE_NO_EXPORT int height () const { return m_height; }
+ TDE_NO_EXPORT int width () const { return m_width; }
+ TDE_NO_EXPORT int height () const { return m_height; }
virtual void dimensions (int & w, int & h) { w = m_width; h = m_height; }
/* length () returns length in deci-seconds */
- KDE_NO_EXPORT int length () const { return m_length; }
+ TDE_NO_EXPORT int length () const { return m_length; }
/* position () returns position in deci-seconds */
- KDE_NO_EXPORT int position () const { return m_position; }
- KDE_NO_EXPORT float aspect () const { return m_aspect; }
- KDE_NO_EXPORT const KURL & url () const { return m_url; }
- KDE_NO_EXPORT const KURL & subUrl () const { return m_sub_url; }
+ TDE_NO_EXPORT int position () const { return m_position; }
+ TDE_NO_EXPORT float aspect () const { return m_aspect; }
+ TDE_NO_EXPORT const KURL & url () const { return m_url; }
+ TDE_NO_EXPORT const KURL & subUrl () const { return m_sub_url; }
PartBase * player () { return m_player; }
virtual void reset ();
TQString currentMrl ();
- KDE_NO_EXPORT const TQString & audioDevice () const { return m_audiodevice; }
- KDE_NO_EXPORT const TQString & videoDevice () const { return m_videodevice; }
- KDE_NO_EXPORT const TQString & videoNorm () const { return m_videonorm; }
+ TDE_NO_EXPORT const TQString & audioDevice () const { return m_audiodevice; }
+ TDE_NO_EXPORT const TQString & videoDevice () const { return m_videodevice; }
+ TDE_NO_EXPORT const TQString & videoNorm () const { return m_videonorm; }
/* frequency() if set, returns frequency in kHz */
- KDE_NO_EXPORT int frequency () const { return m_frequency; }
- KDE_NO_EXPORT int xvPort () const { return m_xvport; }
- KDE_NO_EXPORT int xvEncoding () const { return m_xvencoding; }
- KDE_NO_EXPORT const TQString & pipeCmd () const { return m_pipecmd; }
- KDE_NO_EXPORT const TQString & options () const { return m_options; }
- KDE_NO_EXPORT const TQString & recordCmd () const { return m_recordcmd; }
- KDE_NO_EXPORT const TQString & tuner () const { return m_tuner; }
- KDE_NO_EXPORT NodePtr current () const { return m_current; }
+ TDE_NO_EXPORT int frequency () const { return m_frequency; }
+ TDE_NO_EXPORT int xvPort () const { return m_xvport; }
+ TDE_NO_EXPORT int xvEncoding () const { return m_xvencoding; }
+ TDE_NO_EXPORT const TQString & pipeCmd () const { return m_pipecmd; }
+ TDE_NO_EXPORT const TQString & options () const { return m_options; }
+ TDE_NO_EXPORT const TQString & recordCmd () const { return m_recordcmd; }
+ TDE_NO_EXPORT const TQString & tuner () const { return m_tuner; }
+ TDE_NO_EXPORT NodePtr current () const { return m_current; }
TQString plugin (const TQString &mime) const;
virtual NodePtr document ();
virtual NodePtr root ();
@@ -84,10 +84,10 @@ public:
virtual void setURL (const KURL & url);
void insertURL (NodePtr mrl, const TQString & url, const TQString & title=TQString());
- KDE_NO_EXPORT void setSubURL (const KURL & url) { m_sub_url = url; }
+ TDE_NO_EXPORT void setSubURL (const KURL & url) { m_sub_url = url; }
void setLanguages (const TQStringList & alang, const TQStringList & slang);
- KDE_NO_EXPORT void setWidth (int w) { m_width = w; }
- KDE_NO_EXPORT void setHeight (int h) { m_height = h; }
+ TDE_NO_EXPORT void setWidth (int w) { m_width = w; }
+ TDE_NO_EXPORT void setHeight (int h) { m_height = h; }
virtual void setDimensions (NodePtr, int w, int h);
virtual void setAspect (NodePtr, float a);
/* setLength (len) set length in deci-seconds */
@@ -97,8 +97,8 @@ public:
virtual void setIdentified (bool b = true);
// backend process state changed
virtual void stateChange (Process *, Process::State os, Process::State ns);
- KDE_NO_EXPORT void setAutoPlay (bool b) { m_auto_play = b; }
- KDE_NO_EXPORT bool autoPlay () const { return m_auto_play; }
+ TDE_NO_EXPORT void setAutoPlay (bool b) { m_auto_play = b; }
+ TDE_NO_EXPORT bool autoPlay () const { return m_auto_play; }
void setTitle (const TQString & title);
void setLoading (int percentage);
bool setCurrent (NodePtr mrl);