From http://www.jwz.org/xscreensaver/xscreensaver-5.31.tar.gz
[xscreensaver] / OSX / SaverListController.h
index fef8a78ef301b5e0f613284214cb0ea82d98d8bd..9b46133517ccecc823f3d17b437798d4fc6f4c21 100644 (file)
@@ -1,4 +1,4 @@
-/* xscreensaver, Copyright (c) 2012 Jamie Zawinski <jwz@jwz.org>
+/* xscreensaver, Copyright (c) 2012-2014 Jamie Zawinski <jwz@jwz.org>
  *
  * Permission to use, copy, modify, distribute, and sell this software and its
  * documentation for any purpose is hereby granted without fee, provided that
 
 #import <UIKit/UIKit.h>
 
-@interface SaverListController : UITableViewController {
+@interface SaverListController : UITableViewController <UISearchBarDelegate> {
 
   int active_section_count;
   NSMutableArray *list_by_letter[26];  // 27 to get "#" after "Z".
   NSMutableArray *letter_sections;
   NSMutableArray *section_titles;
+  NSArray *names;
   NSDictionary *descriptions;
 
   int tap_count;
@@ -29,7 +30,6 @@
 }
 
 - (id)initWithNames:(NSArray *)names descriptions:(NSDictionary *)descs;
-- (void) reload:(NSArray *)names descriptions:(NSDictionary *)descs;
 - (void) scrollTo:(NSString *)name;
 @end