Changeset 367

Show
Ignore:
Timestamp:
04/09/07 03:26:57 (1 year ago)
Author:
cweider2
Message:

DarkKit framework installed v3

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/LaserLine_2.0/English.lproj/MainMenu.nib/classes.nib

    r366 r367  
    2323        { 
    2424            ACTIONS = { 
     25                add3DTorus = id;  
     26                addAntiClock = id;  
     27                addBeamEffect = id;  
     28                addLissajous = id;  
     29                addSpirograph = id;  
    2530                importFlash = id;  
    2631                importILDA = id;  
  • trunk/LaserLine_2.0/Src/MainController.h

    r365 r367  
    2828- (void)addSequence:(LZSequenceableElement *)sequenceElement withLength:(NSTimeInterval)time; 
    2929 
    30 //Temporary debug code 
    3130- (IBAction)importILDA:(id)sender; 
    3231- (IBAction)importFlash:(id)sender; 
    33 - (IBAction)playButtonPressed:(id)sender; 
    34 - (IBAction)pointSliderDidChange:(id)sender; 
    35 - (IBAction)stop:(id)sender; 
    3632 
    3733@end 
  • trunk/LaserLine_2.0/Src/MainController.m

    r362 r367  
    4747        //[self addBeamEffect:self]; 
    4848        //[self addAntiClock:self]; 
    49         [self add3DTorus:self]; 
    50         [self addLissajous:self]; 
    51         [self addSpirograph:self]; 
     49        //[self add3DTorus:self]; 
     50        //[self addLissajous:self]; 
     51        //[self addSpirograph:self]; 
    5252         
    5353        [[output frameNotificationCenter] addObserver:[[[LZDisplayDevice alloc] initWithView:renderView] autorelease]]; 
     
    116116- (void)addSequence:(LZSequenceableElement *)sequenceElement withLength:(NSTimeInterval)time 
    117117  { 
     118  if([layer count] > 0) 
     119        [layer removeElement:[layer elementAtIndex:0]]; 
     120   
    118121  [layer appendElement:sequenceElement withLength:time]; 
    119122  } 
    120123 
    121  
    122  
    123 - (IBAction)stop:(id)sender { 
    124         [output stopDevice]; 
    125 } 
    126  
    127124@end