| Revision 263,
609 bytes
checked in by gbooker, 6 years ago
(diff) |
|
More compatibility classes made.
|
| Line | |
|---|
| 1 | // |
|---|
| 2 | // SapphireShowChooser.h |
|---|
| 3 | // Sapphire |
|---|
| 4 | // |
|---|
| 5 | // Created by Graham Booker on 7/1/07. |
|---|
| 6 | // Copyright 2007 www.nanopi.net. All rights reserved. |
|---|
| 7 | // |
|---|
| 8 | |
|---|
| 9 | #import "SapphireCenteredMenuController.h" |
|---|
| 10 | |
|---|
| 11 | #define SHOW_CHOOSE_CANCEL -2 |
|---|
| 12 | #define SHOW_CHOOSE_NOT_SHOW -1 |
|---|
| 13 | |
|---|
| 14 | @interface SapphireShowChooser : SapphireCenteredMenuController { |
|---|
| 15 | NSArray *shows; |
|---|
| 16 | NSString *searchStr; |
|---|
| 17 | int selection; |
|---|
| 18 | BRTextControl *fileName; |
|---|
| 19 | } |
|---|
| 20 | |
|---|
| 21 | - (void)setShows:(NSArray *)showList; |
|---|
| 22 | - (void)setFileName:(NSString *)choosingForFileName; |
|---|
| 23 | - (NSArray *)shows; |
|---|
| 24 | - (void)setSearchStr:(NSString *)search; |
|---|
| 25 | - (NSString *)searchStr; |
|---|
| 26 | - (int)selection; |
|---|
| 27 | |
|---|
| 28 | @end |
|---|
Note: See
TracBrowser
for help on using the repository browser.