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.
tdeaddons/noatun-plugins/noatunmadness/madness.cpp

124 lines
2.9 KiB

/*****************************************************************
Copyright (c) 2001 Charles Samuels <charles@kde.org>
2000 Rik Hemsley <rik@kde.org>
This code is released under the GNU General Public License 2.0, or any
later version, at your option. I mean, you know the drill, just read
RMS's novel that I'm supposed to put at the top of every story. He's insane.
******************************************************************/
#include "madness.h"
#include <twin.h>
#include <twinmodule.h>
#include <kiconloader.h>
#include <math.h>
#include <iostream>
#include <X11/Xlib.h>
extern "C"
{
KDE_EXPORT Plugin* create_plugin()
{
return new Madness();
}
}
Madness::Madness()
: MonoFFTScope(100), Plugin(), mWm(this)
{
connect(&mWm, TQT_SIGNAL(currentDesktopChanged(int)), TQT_SLOT(update()));
connect(&mWm, TQT_SIGNAL(windowAdded(WId)), TQT_SLOT(update()));
connect(&mWm, TQT_SIGNAL(windowRemoved(WId)), TQT_SLOT(update()));
connect(&mWm, TQT_SIGNAL(strutChanged()), TQT_SLOT(update()));
}
Madness::~Madness()
{
TQMap<WId, TQPoint>::ConstIterator it(mOriginalPositions.begin());
for (; it != mOriginalPositions.end(); ++it)
XMoveWindow(tqt_xdisplay(), it.key(), (*it).x(), (*it).y());
}
void Madness::update()
{
mWindowList = mWm.windows();
mWorkArea = mWm.workArea();
TQValueList<WId>::ConstIterator it(mWindowList.begin());
for (; it != mWindowList.end(); ++it)
{
TQRect area=KWin::info(*it).frameGeometry;
if (!mOriginalPositions.contains(*it))
mOriginalPositions.insert(*it, area.topLeft());
}
}
void Madness::init()
{
update();
MonoFFTScope::start();
}
void Madness::scopeEvent(float *d, int size)
{
int delta=0; // in pixels
for (int count=0; count<size; count++)
{
delta+=(int)((log10(d[count]+1)/log(2))*(size-count))/2;
}
// cout << "delta: " << delta << endl;
TQValueList<WId>::ConstIterator it(mWindowList.begin());
for (; it != mWindowList.end(); ++it)
{
KWin::Info i(KWin::info(*it));
if ((NET::Visible != i.mappingState) ||
((NET::Unknown != i.windowType) &&
(NET::Normal != i.windowType) &&
(NET::Tool != i.windowType) &&
(NET::Menu != i.windowType) &&
(NET::Dialog != i.windowType)) || (NET::Max & i.state)
|| (NET::Shaded & i.state)
|| (mWm.currentDesktop() != i.desktop))
continue;
TQRect area=i.frameGeometry;
float lightness=100000.0/(area.width()*area.height());
int x=area.x();
int y=area.y();
int dx=(int)((delta*lightness*(area.height()/10)/100))*(TDEApplication::random()%2 ? -1 : 1);
int dy=(int)((delta*lightness*(area.width()/10)/100))*(TDEApplication::random()%2 ? -1 : 1);
if (dx < 0 && (x - dx < mWorkArea.left()))
dx = -dx;
else if (dx > 0 && (x + dx + area.width() > mWorkArea.right()))
dx = -dx;
if (dy < 0 && (y - dy < mWorkArea.top()))
dy = -dy;
else if (dy > 0 && (y + dy + area.height() > mWorkArea.bottom()))
dy = -dy;
XMoveWindow(tqt_xdisplay(), i.win, x + dx, y + dy);
}
}
#include "madness.moc"