+ float xPoint;
+
+ if ( [(ITTransientStatusWindow *)_window horizontalPosition] == ITWindowPositionLeft ) {
+ xPoint = -( 32.0 + [[_window screen] visibleFrame].origin.x );
+ } else if ( [(ITTransientStatusWindow *)_window horizontalPosition] == ITWindowPositionRight ) {
+ xPoint = -(([[_window screen] visibleFrame].size.width + [[_window screen] visibleFrame].origin.x) - 32.0 - [_window frame].size.width);
+ } else if ( [(ITTransientStatusWindow *)_window horizontalPosition] == ITWindowPositionCenter ) {
+ xPoint = ( [_window frame].size.width - [[_window screen] visibleFrame].size.width ) / 2;
+ }
+
+ /*if ( [(ITTransientStatusWindow *)_window verticalPosition] == ITWindowPositionBottom ) {