Zachary Wartell (wartell++at++ait.nrl.navy.mil)
Thu, 24 Jul 1997 12:01:13 -0400 (EDT)
When using pfPipeWindow::setOriginSize the x coordinate of the
window never changed. The window remained flush with the left hand
side of the window.
I starting using XMoveWindow with pfPipeWindow::getWSWindow and in the
process discovered that replacing ::setOriginSize with the pair:
pipeWindow->setSize(...);
pipeWindow->setOrigin(...);
works fine unlike setOriginSize. So in my final code I use this:
#if 1
pipeWindow->setSize(window->width(),window->height());
pipeWindow->setOrigin(window->x(),window->y());
#else
// Performer 2.1 this fails to change the x coordinate of the window
// the above works fine though...
pipeWindow->setOriginSize(window->x(),window->y(),window->width(),
window->height());
#endif
2. The monthly archives on the SGI website seem to go only up
to perf-97-02. What about the more recent stuff? Where can I
find it?
=======================================================================
List Archives, FAQ, FTP: http://www.sgi.com/Technology/Performer/
Submissions: info-performer++at++sgi.com
Admin. requests: info-performer-request++at++sgi.com
This archive was generated by hypermail 2.0b2 on Mon Aug 10 1998 - 17:55:38 PDT