| Revision 263,
650 bytes
checked in by gbooker, 6 years ago
(diff) |
|
More compatibility classes made.
|
| Line | |
|---|
| 1 | // |
|---|
| 2 | // SapphireMovieChooser.h |
|---|
| 3 | // Sapphire |
|---|
| 4 | // |
|---|
| 5 | // Created by Patrick Merrill on 7/27/07. |
|---|
| 6 | // Copyright 2007 __www.nanopi.net__. All rights reserved. |
|---|
| 7 | // |
|---|
| 8 | |
|---|
| 9 | #import "SapphireCenteredMenuController.h" |
|---|
| 10 | |
|---|
| 11 | #define MOVIE_CHOOSE_CANCEL -4 |
|---|
| 12 | #define MOVIE_CHOOSE_TV_SHOW -3 |
|---|
| 13 | #define MOVIE_CHOOSE_OTHER -2 |
|---|
| 14 | #define MOVIE_CHOOSE_NOT_MOVIE -1 |
|---|
| 15 | |
|---|
| 16 | @interface SapphireMovieChooser : SapphireCenteredMenuController { |
|---|
| 17 | NSArray *movies; |
|---|
| 18 | NSString *fileName; |
|---|
| 19 | int selection; |
|---|
| 20 | BRTextControl *fileNameText; |
|---|
| 21 | } |
|---|
| 22 | |
|---|
| 23 | - (void)setMovies:(NSArray *)movieList; |
|---|
| 24 | - (void)setFileName:(NSString *)choosingForFileName; |
|---|
| 25 | - (NSArray *)movies; |
|---|
| 26 | - (NSString *)fileName; |
|---|
| 27 | - (int)selection; |
|---|
| 28 | |
|---|
| 29 | @end |
|---|
Note: See
TracBrowser
for help on using the repository browser.