+- (void)buildImageWindowWithImage:(NSImage *)image
+{
+ if (!_locked) {
+ float divisor = 1.0;
+ NSRect dataRect;
+
+ if (_sizing == ITTransientStatusWindowSmall) {
+ divisor = SMALL_DIVISOR;
+ } else if (_sizing == ITTransientStatusWindowMini) {
+ divisor = MINI_DIVISOR;
+ }
+
+ [self setImage:image];
+ dataRect = [self setupWindowWithDataSize:NSMakeSize(0, 0)]; //We have no text, so there is no data
+ [[self contentView] setNeedsDisplay:YES];
+ }
+}
+
+- (void)buildTextWindowWithString:(id)text