mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
Add GormNSWindowView class
This commit is contained in:
parent
73ce318bc8
commit
57df48e32e
2 changed files with 208 additions and 0 deletions
45
GormCore/GormNSWindowView.h
Normal file
45
GormCore/GormNSWindowView.h
Normal file
|
@ -0,0 +1,45 @@
|
|||
/* GormNSWindowView.h
|
||||
|
||||
Copyright (C) 2021 Free Software Foundation, Inc.
|
||||
|
||||
Author: Gregory John Casamento <greg.casamento@gmail.com>
|
||||
Date: 2021
|
||||
|
||||
This file is part of GNUstep.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 USA.
|
||||
*/
|
||||
#ifndef INCLUDED_GormNSWindowView_h
|
||||
#define INCLUDED_GormNSWindowView_h
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
|
||||
@interface GormNSWindowView : NSView
|
||||
{
|
||||
unsigned _gormStyleMask;
|
||||
BOOL _gormReleasedWhenClosed;
|
||||
NSUInteger autoPositionMask;
|
||||
}
|
||||
|
||||
- (void) _setStyleMask: (unsigned int)newStyleMask;
|
||||
- (unsigned int) _styleMask;
|
||||
- (void) _setReleasedWhenClosed: (BOOL) flag;
|
||||
- (BOOL) _isReleasedWhenClosed;
|
||||
- (unsigned int) autoPositionMask;
|
||||
- (void) setAutoPositionMask: (unsigned int)mask;
|
||||
|
||||
@end
|
||||
|
||||
#endif
|
163
GormCore/GormNSWindowView.m
Normal file
163
GormCore/GormNSWindowView.m
Normal file
|
@ -0,0 +1,163 @@
|
|||
/* GormWindow.m
|
||||
|
||||
Copyright (C) 2001 Free Software Foundation, Inc.
|
||||
|
||||
Author: Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>
|
||||
Date: 2001
|
||||
|
||||
This file is part of GNUstep.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
|
||||
#include <InterfaceBuilder/InterfaceBuilder.h>
|
||||
|
||||
#include <GNUstepGUI/GSGormLoading.h>
|
||||
|
||||
#include "GormNSWindowView.h"
|
||||
|
||||
// the default style mask we start with.
|
||||
static NSUInteger defaultStyleMask = NSTitledWindowMask | NSClosableWindowMask
|
||||
| NSResizableWindowMask | NSMiniaturizableWindowMask;
|
||||
|
||||
@implementation GormNSWindowView
|
||||
|
||||
- (void) encodeWithCoder: (NSCoder*)aCoder
|
||||
{
|
||||
unsigned oldStyleMask;
|
||||
|
||||
// save the old values...
|
||||
// oldStyleMask = _styleMask;
|
||||
|
||||
// set the values we wish to save.. after save restore.
|
||||
// _styleMask = _gormStyleMask;
|
||||
[self setReleasedWhenClosed: _gormReleasedWhenClosed];
|
||||
[super encodeWithCoder: aCoder];
|
||||
// _styleMask = oldStyleMask;
|
||||
[self setReleasedWhenClosed: NO];
|
||||
}
|
||||
|
||||
- (id) initWithCoder: (NSCoder *)coder
|
||||
{
|
||||
self = [super init]; // WithCoder: coder];
|
||||
if (self != nil)
|
||||
{
|
||||
// preserve the setting and set the actual window to NO.
|
||||
_gormReleasedWhenClosed = [self isReleasedWhenClosed];
|
||||
[self setReleasedWhenClosed: NO];
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
||||
- (id) initWithContentRect: (NSRect)contentRect
|
||||
styleMask: (NSUInteger)aStyle
|
||||
backing: (NSBackingStoreType)bufferingType
|
||||
defer: (BOOL)flag
|
||||
{
|
||||
_gormStyleMask = aStyle;
|
||||
self = [super init];
|
||||
// initWithContentRect: contentRect
|
||||
// styleMask: defaultStyleMask
|
||||
// backing: bufferingType
|
||||
// defer: NO]; // always no, because this isn't recorded here...
|
||||
if(self != nil)
|
||||
{
|
||||
// Don't release when the window is closed, a window being edited may
|
||||
// be periodically opened and closed.
|
||||
// [self setReleasedWhenClosed: NO];
|
||||
|
||||
// remove the default icon...
|
||||
// [self setMiniwindowImage: nil];
|
||||
|
||||
// set the default position mask;
|
||||
// autoPositionMask = GSWindowMaxXMargin | GSWindowMinYMargin;
|
||||
}
|
||||
|
||||
return self;
|
||||
}
|
||||
|
||||
- (void) _setStyleMask: (unsigned int)newStyleMask
|
||||
{
|
||||
_gormStyleMask = newStyleMask;
|
||||
}
|
||||
|
||||
- (unsigned int) _styleMask
|
||||
{
|
||||
return _gormStyleMask;
|
||||
}
|
||||
|
||||
- (BOOL) canBecomeMainWindow
|
||||
{
|
||||
return NO;
|
||||
}
|
||||
|
||||
- (BOOL) canBecomeKeyWindow
|
||||
{
|
||||
return YES;
|
||||
}
|
||||
|
||||
- (NSString *) className
|
||||
{
|
||||
return @"NSWindow";
|
||||
}
|
||||
|
||||
- (void) _setReleasedWhenClosed: (BOOL) flag
|
||||
{
|
||||
_gormReleasedWhenClosed = flag;
|
||||
}
|
||||
|
||||
- (BOOL) _isReleasedWhenClosed
|
||||
{
|
||||
return _gormReleasedWhenClosed;
|
||||
}
|
||||
|
||||
- (unsigned int) autoPositionMask
|
||||
{
|
||||
return autoPositionMask;
|
||||
}
|
||||
|
||||
- (void) setAutoPositionMask: (unsigned int)mask
|
||||
{
|
||||
autoPositionMask = mask;
|
||||
}
|
||||
|
||||
- (void) orderWindow: (NSWindowOrderingMode)place relativeTo: (NSInteger)otherWin
|
||||
{
|
||||
/*
|
||||
id<IBDocuments> document = [(id<IB>)NSApp documentForObject: self];
|
||||
[super orderWindow: place relativeTo: otherWin];
|
||||
if([NSApp isConnecting] == NO)
|
||||
{
|
||||
id editor = [document editorForObject: self create: NO];
|
||||
|
||||
// select myself.
|
||||
if([editor respondsToSelector: @selector(selectObjects:)])
|
||||
{
|
||||
[editor selectObjects: [NSArray arrayWithObject: self]];
|
||||
}
|
||||
|
||||
[document setSelectionFromEditor: editor];
|
||||
[editor makeSelectionVisible: YES];
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
- (void) saveFrameUsingName: (NSString*)name
|
||||
{
|
||||
// do nothing...
|
||||
}
|
||||
@end
|
Loading…
Reference in a new issue