diff options
author | Michele Calgaro <[email protected]> | 2024-05-03 12:15:51 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-05-07 12:22:48 +0900 |
commit | c5d77586845f1afdb3869941ed4612de6be566a0 (patch) | |
tree | f0fd879959ef68abe19bc21e9f2e58ed04e9b55a /src/kmplayerview.h | |
parent | 2debdf218d21f3e2efc518481f0aea57a46b6539 (diff) | |
download | kmplayer-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/kmplayerview.h')
-rw-r--r-- | src/kmplayerview.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/src/kmplayerview.h b/src/kmplayerview.h index 1a2a6fc..a28dd71 100644 --- a/src/kmplayerview.h +++ b/src/kmplayerview.h @@ -78,7 +78,7 @@ private: class InfoWindow : public TQTextEdit { public: InfoWindow (TQWidget * parent, View * view); - KDE_NO_EXPORT View * view () const { return m_view; } + TDE_NO_EXPORT View * view () const { return m_view; } protected: void contextMenuEvent (TQContextMenuEvent * e); private: @@ -111,28 +111,28 @@ public: //void print(TQPrinter *pPrinter); TextEdit * console () const { return m_multiedit; } - KDE_NO_EXPORT Viewer * viewer () const { return m_viewer; } - KDE_NO_EXPORT ControlPanel * controlPanel () const {return m_control_panel;} - KDE_NO_EXPORT StatusBar * statusBar () const {return m_status_bar;} - KDE_NO_EXPORT PlayListView * playList () const { return m_playlist; } - KDE_NO_EXPORT InfoWindow * infoPanel () const { return m_infopanel; } - KDE_NO_EXPORT TQWidgetStack * widgetStack () const { return m_widgetstack; } - KDE_NO_EXPORT KDockArea * docArea () const { return m_dockarea; } - KDE_NO_EXPORT ViewArea * viewArea () const { return m_view_area; } - KDE_NO_EXPORT bool keepSizeRatio () const { return m_keepsizeratio; } + TDE_NO_EXPORT Viewer * viewer () const { return m_viewer; } + TDE_NO_EXPORT ControlPanel * controlPanel () const {return m_control_panel;} + TDE_NO_EXPORT StatusBar * statusBar () const {return m_status_bar;} + TDE_NO_EXPORT PlayListView * playList () const { return m_playlist; } + TDE_NO_EXPORT InfoWindow * infoPanel () const { return m_infopanel; } + TDE_NO_EXPORT TQWidgetStack * widgetStack () const { return m_widgetstack; } + TDE_NO_EXPORT KDockArea * docArea () const { return m_dockarea; } + TDE_NO_EXPORT ViewArea * viewArea () const { return m_view_area; } + TDE_NO_EXPORT bool keepSizeRatio () const { return m_keepsizeratio; } void setKeepSizeRatio (bool b); void showWidget (WidgetType w); void setControlPanelMode (ControlPanelMode m); void setStatusBarMode (StatusBarMode m); void setEraseColor (const TQColor &); - KDE_NO_EXPORT ControlPanelMode controlPanelMode () const { return m_controlpanel_mode; } - KDE_NO_EXPORT StatusBarMode statusBarMode () const { return m_statusbar_mode; } + TDE_NO_EXPORT ControlPanelMode controlPanelMode () const { return m_controlpanel_mode; } + TDE_NO_EXPORT StatusBarMode statusBarMode () const { return m_statusbar_mode; } void delayedShowButtons (bool show); bool isFullScreen () const; int statusBarHeight () const; - KDE_NO_EXPORT bool editMode () const { return m_edit_mode; } + TDE_NO_EXPORT bool editMode () const { return m_edit_mode; } bool setPicture (const TQString & path); - KDE_NO_EXPORT TQPixmap * image () const { return m_image; } + TDE_NO_EXPORT TQPixmap * image () const { return m_image; } void setNoInfoMessages (bool b) { m_no_info = b; } void setViewOnly (); void setInfoPanelOnly (); @@ -140,7 +140,7 @@ public: void setEditMode (RootPlayListItem *, bool enable=true); void dragEnterEvent (TQDragEnterEvent *); void dropEvent (TQDropEvent *); - KDE_NO_EXPORT void emitPictureClicked () { emit pictureClicked (); } + TDE_NO_EXPORT void emitPictureClicked () { emit pictureClicked (); } /* raise video widget, might (auto) hides panel */ void videoStart (); void playingStart (); @@ -161,9 +161,9 @@ signals: void fullScreenChanged (); void windowVideoConsoleToggled (int wt); protected: - void leaveEvent (TQEvent *) KDE_NO_EXPORT; - void timerEvent (TQTimerEvent *) KDE_NO_EXPORT; - bool x11Event (XEvent *) KDE_NO_EXPORT; + void leaveEvent (TQEvent *) TDE_NO_EXPORT; + void timerEvent (TQTimerEvent *) TDE_NO_EXPORT; + bool x11Event (XEvent *) TDE_NO_EXPORT; private: // widget for player's output Viewer * m_viewer; @@ -222,7 +222,7 @@ public: void setBackgroundColor (const TQColor & c); void resetBackgroundColor (); void setCurrentBackgroundColor (const TQColor & c); - KDE_NO_EXPORT View * view () const { return m_view; } + TDE_NO_EXPORT View * view () const { return m_view; } void changeProtocol (QXEmbed::Protocol p); public slots: void sendConfigureEvent (); |