~ubuntu-branches/ubuntu/quantal/vice/quantal

« back to all changes in this revision

Viewing changes to src/arch/unix/macosx/cocoa/view/tapeview.h

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2009-03-31 00:37:15 UTC
  • mfrom: (1.1.7 upstream) (9.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090331003715-i5yisvcfv7mgz3eh
Tags: 2.1.dfsg-1
* New major upstream release (closes: #495937).
* Add desktop files (closes: #501181).

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
@interface TapeView : NSView
31
31
{
32
32
    /* text field for track display */
 
33
    NSTextField * tape_image;
33
34
    NSTextField * tape_counter;
34
 
    NSTextField * tape_control;
 
35
    NSTextField * tape_status;
 
36
    NSButton    * buttons[9];    
35
37
 
36
38
    int tape_motor_status;
37
39
    int tape_control_status;
 
40
    int counter;
 
41
    int enabled;
38
42
}
39
43
 
40
44
- (id)initWithFrame:(NSRect)frame;
41
45
 
42
 
- (void)setImageFile:(NSString*)image;
43
 
 
44
46
- (void)displayImage:(NSNotification*)notification;
45
47
- (void)displayCounter:(NSNotification*)notification;
46
48
- (void)displayControlStatus:(NSNotification*)notification;
47
49
- (void)displayMotorStatus:(NSNotification*)notification;
48
50
 
 
51
- (void)updateImage:(NSString*)image;
49
52
- (void)updateTapeStatus;
 
53
- (void)updateCounter;
50
54
 
51
55
- (void)setEnabled:(BOOL)flag;
52
56