summaryrefslogtreecommitdiffstats
path: root/tdeui
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2026-03-04 11:15:12 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2026-03-04 11:15:12 +0900
commit31d05ba33da9bb6f848c9dd19f398c9c80f499fb (patch)
tree6724aeb225463ae69236c751d70f1afc23d43afc /tdeui
parent53f603f284e8a36a764855f80b0ddaadfee818b8 (diff)
downloadtdelibs-rename/kwinmodule.tar.gz
tdelibs-rename/kwinmodule.zip
Rename KWinModule to TWinModulerename/kwinmodule
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdeui')
-rw-r--r--tdeui/kdetrayproxy/kdetrayproxy.cpp2
-rw-r--r--tdeui/kdetrayproxy/kdetrayproxy.h2
-rw-r--r--tdeui/kpassivepopup.h2
-rw-r--r--tdeui/krootpixmap.cpp4
-rw-r--r--tdeui/ksystemtray.cpp2
-rw-r--r--tdeui/twindowlistmenu.cpp2
-rw-r--r--tdeui/twindowlistmenu.h4
7 files changed, 9 insertions, 9 deletions
diff --git a/tdeui/kdetrayproxy/kdetrayproxy.cpp b/tdeui/kdetrayproxy/kdetrayproxy.cpp
index 6791b4c38..0a8be33a3 100644
--- a/tdeui/kdetrayproxy/kdetrayproxy.cpp
+++ b/tdeui/kdetrayproxy/kdetrayproxy.cpp
@@ -39,7 +39,7 @@ KDETrayProxy::KDETrayProxy()
it != module.windows().end();
++it )
windowAdded( *it );
- tdeApp->installX11EventFilter( this ); // XSelectInput( StructureNotifyMask ) on windows is done by KWinModule
+ tdeApp->installX11EventFilter( this ); // XSelectInput( StructureNotifyMask ) on windows is done by TWinModule
// kdDebug() << "Init done" << endl;
}
diff --git a/tdeui/kdetrayproxy/kdetrayproxy.h b/tdeui/kdetrayproxy/kdetrayproxy.h
index 2231be9ab..80113fc16 100644
--- a/tdeui/kdetrayproxy/kdetrayproxy.h
+++ b/tdeui/kdetrayproxy/kdetrayproxy.h
@@ -41,7 +41,7 @@ class KDETrayProxy
void withdrawWindow( Window w );
static Atom makeSelectionAtom();
TDESelectionWatcher selection;
- KWinModule module;
+ TWinModule module;
TQValueList< Window > pending_windows;
TQValueList< Window > tray_windows;
TQMap< Window, unsigned long > docked_windows;
diff --git a/tdeui/kpassivepopup.h b/tdeui/kpassivepopup.h
index bc1b9ed1c..1ac3a87e9 100644
--- a/tdeui/kpassivepopup.h
+++ b/tdeui/kpassivepopup.h
@@ -319,7 +319,7 @@ protected:
/**
* If no relative window (eg taskbar button, system tray window) is
* available, use this rectangle (pass it to moveNear()).
- * Basically KWinModule::workArea() with width and height set to 0
+ * Basically TWinModule::workArea() with width and height set to 0
* so that moveNear uses the upper-left position.
* @return The TQRect to be passed to moveNear() if no other is
* available.
diff --git a/tdeui/krootpixmap.cpp b/tdeui/krootpixmap.cpp
index ac54511f4..6dce0367a 100644
--- a/tdeui/krootpixmap.cpp
+++ b/tdeui/krootpixmap.cpp
@@ -38,7 +38,7 @@ class KRootPixmapData
public:
TQWidget *toplevel;
#ifdef TQ_WS_X11
- KWinModule *twin;
+ TWinModule *twin;
#endif
};
@@ -72,7 +72,7 @@ void KRootPixmap::init()
#ifdef TQ_WS_X11
connect(m_pPixmap, TQ_SIGNAL(done(bool)), TQ_SLOT(slotDone(bool)));
- d->twin = new KWinModule( this );
+ d->twin = new TWinModule( this );
connect(d->twin, TQ_SIGNAL(windowChanged(WId, unsigned int)), TQ_SLOT(desktopChanged(WId, unsigned int)));
connect(d->twin, TQ_SIGNAL(currentDesktopChanged(int)), TQ_SLOT(desktopChanged(int)));
#endif
diff --git a/tdeui/ksystemtray.cpp b/tdeui/ksystemtray.cpp
index 192b378b5..8afb0fd46 100644
--- a/tdeui/ksystemtray.cpp
+++ b/tdeui/ksystemtray.cpp
@@ -256,7 +256,7 @@ void KSystemTray::activateOrHide()
minimizeRestore( true );
else
{
- KWinModule module;
+ TWinModule module;
for( TQValueList< WId >::ConstIterator it = module.stackingOrder().fromLast();
it != module.stackingOrder().end() && (*it) != pw->winId();
--it )
diff --git a/tdeui/twindowlistmenu.cpp b/tdeui/twindowlistmenu.cpp
index 5c1f977bb..c08bc9bc9 100644
--- a/tdeui/twindowlistmenu.cpp
+++ b/tdeui/twindowlistmenu.cpp
@@ -85,7 +85,7 @@ int NameSortedInfoList::compareItems( TQPtrCollection::Item s1, TQPtrCollection:
KWindowListMenu::KWindowListMenu(TQWidget *parent, const char *name)
: TDEPopupMenu(parent, name)
{
- twin_module = new KWinModule(this);
+ twin_module = new TWinModule(this);
connect(this, TQ_SIGNAL(activated(int)), TQ_SLOT(slotExec(int)));
}
diff --git a/tdeui/twindowlistmenu.h b/tdeui/twindowlistmenu.h
index 0e7884e39..2131ba5df 100644
--- a/tdeui/twindowlistmenu.h
+++ b/tdeui/twindowlistmenu.h
@@ -30,7 +30,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#ifdef TQ_WS_X11 // not yet available for non-X11
-class KWinModule;
+class TWinModule;
class KWindowListMenuPrivate;
class TDEUI_EXPORT KWindowListMenu : public TDEPopupMenu
@@ -57,7 +57,7 @@ protected slots:
void slotCascadeWindows();
private:
- KWinModule* twin_module;
+ TWinModule* twin_module;
TQMap<int,WId> map;
protected:
virtual void virtual_hook( int id, void* data );