
#import "PrefView.h"

#import "MenuCascadeView.h"

@interface PrefCascadeView: MenuCascadeView
{
  NSMutableArray* _prefViews;
}

-(id) initWithFrame:(CGRect)rect withParent:(UIView*)parent 
        withCollection:(NSString*)collection withTitle:(NSString*)title withGID:(NSString*)gid;

-(UIView*) directEntry:(int)rowId;

-(void) appendMenuItem: (NSObject*) app withItem:(NSString*)item_label withGID:(NSString*)childGID;

-(void) tableRowSelected:(NSNotification*)notification;

-(void) dealloc;

@end

