2003-07-31 23:52:10 +00:00
|
|
|
/* GSMemoryPanel.h -*-objc-*-
|
|
|
|
|
|
|
|
A GNUstep panel for tracking memory leaks.
|
|
|
|
|
|
|
|
Copyright (C) 2000, 2002 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
Author: Nicola Pero <nicola@brainstorm.co.uk>
|
|
|
|
Date: 2000, 2002
|
|
|
|
|
|
|
|
This file is part of the GNUstep GUI Library.
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
2007-10-29 21:16:17 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
2003-07-31 23:52:10 +00:00
|
|
|
License as published by the Free Software Foundation; either
|
2008-06-10 04:01:49 +00:00
|
|
|
version 2 of the License, or (at your option) any later version.
|
2007-10-29 21:16:17 +00:00
|
|
|
|
2003-07-31 23:52:10 +00:00
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2007-10-29 21:16:17 +00:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
2003-07-31 23:52:10 +00:00
|
|
|
|
2007-10-29 21:16:17 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2003-07-31 23:52:10 +00:00
|
|
|
License along with this library; see the file COPYING.LIB.
|
2007-10-29 21:16:17 +00:00
|
|
|
If not, see <http://www.gnu.org/licenses/> or write to the
|
|
|
|
Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA.
|
2003-07-31 23:52:10 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class displaying a panel showing object allocation statistics.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GNUstep_H_GSMEMORY_PANEL_
|
|
|
|
#define _GNUstep_H_GSMEMORY_PANEL_
|
|
|
|
|
2010-04-07 08:59:43 +00:00
|
|
|
#import <AppKit/NSApplication.h>
|
|
|
|
#import <AppKit/NSPanel.h>
|
|
|
|
|
|
|
|
@class NSTableView;
|
|
|
|
@class NSMutableArray;
|
2003-07-31 23:52:10 +00:00
|
|
|
|
|
|
|
@interface GSMemoryPanel: NSPanel
|
|
|
|
{
|
|
|
|
NSTableView *table;
|
2006-03-30 19:28:31 +00:00
|
|
|
NSMutableArray *array;
|
2003-07-31 23:52:10 +00:00
|
|
|
/* Are we ordering by class name, or by count or total or peak number
|
|
|
|
of instances ? */
|
2006-03-30 19:28:31 +00:00
|
|
|
SEL orderingBy;
|
2003-07-31 23:52:10 +00:00
|
|
|
}
|
|
|
|
+ (id) sharedMemoryPanel;
|
|
|
|
|
|
|
|
/* Updates the statistics */
|
|
|
|
+ (void) update: (id)sender;
|
|
|
|
- (void) update: (id)sender;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface NSApplication (GSMemoryPanel)
|
|
|
|
- (void) orderFrontSharedMemoryPanel: (id)sender;
|
|
|
|
@end
|
|
|
|
|
|
|
|
#endif /* _GNUstep_H_GSMEMORY_PANEL_ */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|