Is it possible to add "Always on Top" to the options in linux? The xteddy
code uses this to keep the window on top:
...
XEvent report;
/* Display window */
XMapWindow(display,win);
/* Get and process the events */
while (1)
{
XNextEvent(display, &report);
switch(report.type)
{
case VisibilityNotify:
/* Put xteddy on top of overlapping windows */
if (float_up)
if ((report.xvisibility.state == VisibilityFullyObscured)
|| (report.xvisibility.state == VisibilityPartiallyObscured))
XRaiseWindow(display,win);
break;
...
}
}
There's also a decent Xlib tutorial at
http://www.thelabs.com/X11Lab/XLib-Manual/
<http://www.thelabs.com/X11Lab/XLib-Manual/>
Also, how difficult would it be to add right button clicks to the themes? I
think the default theme is great and usually run it in MediumView. To get
to the options though, you must first go to MiniView and then back to
NormalView. It would be nice to right-click on the view-changing button and
have it cycle backwards (MediumView to NormalView). Unfortunately, there
doesn't seem to be any support for the right mouse button in the code. Is
this mainly for cross-platform concerns where the computer might only have
one mouse button?
_______________________________________________
[EMAIL PROTECTED]
http://www.freeamp.org/mailman/listinfo/freeamp-dev