Added case of NSScrollWheel.

Impelemented missing NSShowSystemInfoPanel().


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@10709 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2001-08-14 22:38:30 +00:00
parent 7cb1299ac2
commit 4a0c1a233f

View file

@ -106,6 +106,7 @@ NSEventMaskFromType(NSEventType type)
case NSFlagsChanged: return NSFlagsChangedMask;
case NSPeriodic: return NSPeriodicMask;
case NSCursorUpdate: return NSCursorUpdateMask;
case NSScrollWheel: return NSScrollWheelMask;
case NSAppKitDefined: return NSAppKitDefinedMask;
case NSSystemDefined: return NSSystemDefinedMask;
case NSApplicationDefined: return NSApplicationDefinedMask;
@ -586,6 +587,12 @@ NSCountWindowsForContext(int context, int *count)
*count = 0;
}
void
NSShowSystemInfoPanel(NSDictionary *options)
{
[NSApp orderFrontStandardInfoPanelWithOptions: options];
}
void
NSWindowListForContext(int context, int size, int list[][])
{