mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 07:00:46 +00:00
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:
parent
7cb1299ac2
commit
4a0c1a233f
1 changed files with 7 additions and 0 deletions
|
@ -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[][])
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue