TextWindowController.m
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:1k
源码类别:

OpenGL

开发平台:

Visual C++

  1. //
  2. //  TextWindowController.h
  3. //  celestia
  4. //
  5. //  Created by Da Woon Jung on 2006-10-01.
  6. //  Copyright 2006 Da Woon Jung. All rights reserved.
  7. //
  8. #import "TextWindowController.h"
  9. @implementation TextWindowController
  10. - (id)init
  11. {
  12.     self = [super initWithWindowNibName: @"TextWindow"];
  13.     return self;
  14. }
  15. - (void)makeActiveWithDelegate: (id)aDelegate
  16. {
  17.     [[self window] makeKeyAndOrderFront: nil];
  18.     [[self window] setAlphaValue: 0.0f];
  19.     [[self window] makeFirstResponder: textView];
  20.     [textView setDelegate: aDelegate];
  21. }
  22. @end