mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 12:01:16 +00:00
forgot to add this
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@16831 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0aa897ddd7
commit
a65bdd2b70
2 changed files with 58 additions and 0 deletions
19
GormScrollViewAttributesInspector.h
Normal file
19
GormScrollViewAttributesInspector.h
Normal file
|
@ -0,0 +1,19 @@
|
|||
/* All Rights reserved */
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <InterfaceBuilder/IBInspector.h>
|
||||
|
||||
@interface GormScrollViewAttributesInspector : IBInspector
|
||||
{
|
||||
id pageContext;
|
||||
id lineAmount;
|
||||
id color;
|
||||
id verticalScroll;
|
||||
id horizontalScroll;
|
||||
id borderMatrix;
|
||||
}
|
||||
- (void) colorSelected: (id)sender;
|
||||
- (void) verticalSelected: (id)sender;
|
||||
- (void) horizontalSelected: (id)sender;
|
||||
- (void) borderSelected: (id)sender;
|
||||
@end
|
39
GormScrollViewAttributesInspector.m
Normal file
39
GormScrollViewAttributesInspector.m
Normal file
|
@ -0,0 +1,39 @@
|
|||
/* All Rights reserved */
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#include "GormScrollViewAttributesInspector.h"
|
||||
#include <InterfaceBuilder/IBObjectAdditions.h>
|
||||
|
||||
@implementation NSScrollView (IBObjectAdditions)
|
||||
- (NSString *) inspectorClassName
|
||||
{
|
||||
return @"GormScrollViewAttributesInspector";
|
||||
}
|
||||
@end
|
||||
|
||||
@implementation GormScrollViewAttributesInspector
|
||||
|
||||
- (void) colorSelected: (id)sender
|
||||
{
|
||||
/* insert your code here */
|
||||
}
|
||||
|
||||
|
||||
- (void) verticalSelected: (id)sender
|
||||
{
|
||||
/* insert your code here */
|
||||
}
|
||||
|
||||
|
||||
- (void) horizontalSelected: (id)sender
|
||||
{
|
||||
/* insert your code here */
|
||||
}
|
||||
|
||||
|
||||
- (void) borderSelected: (id)sender
|
||||
{
|
||||
/* insert your code here */
|
||||
}
|
||||
|
||||
@end
|
Loading…
Reference in a new issue