Eolas Technologies Incorporated v. Adobe Systems Incorporated et al

Filing 1397

SUR-REPLY to Reply to Response to Motion re 1367 MOTION for Judgment as a Matter of Law UNDER RULE 50(b) THAT THE ASSERTED CLAIMS OF THE PATENTS-IN-SUIT ARE NOT INVALID, OR IN THE ALTERNATIVE FOR A NEW TRIAL UNDER RULE 59 MOTION for Judgment as a Matter of Law UNDER RULE 50(b) THAT THE ASSERTED CLAIMS OF THE PATENTS-IN-SUIT ARE NOT INVALID, OR IN THE ALTERNATIVE FOR A NEW TRIAL UNDER RULE 59 filed by Amazon.com Inc., Google Inc., J.C. Penney Corporation, Inc., Yahoo! Inc., YouTube, LLC. (Attachments: # 1 Exhibit A, # 2 Exhibit B, # 3 Exhibit C)(Reines, Edward)

Download PDF
EXHIBIT A JDX 184\LANL_CD\SOFTWARE\MEDIAVIEW\CUSTOM\SOURCE\A3DVIEWE.M 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 #import #import #import #import #import #import #import #import #import #import #import #import #import #import <appkit/Application.h> <appkit/Window.h> <appkit/Menu.h> <appkit/MenuCell.h> <appkit/Text.h> <appkit/Form.h> <soundkit/Sound.h> <ldsyms.h> <sys/loader.h> <strings.h> <libc.h> "pathutil.h" "a3DViewerView.h" "CubeView.h" static struct mach_header *header; // The header used for loading static id customSubmenu; // Submenu handle for possible extension static static static static static static static static id id id id id id id id inspectorPanel; fileName; parameterForm; recordButton; stopButton; playButton; deleteButton; tmpSound; @implementation a3DViewerView + setCustomComponentData:(struct mach_header *)hd customMenu:(id)subMenu { id box; id mCell; id classObj; header = hd; customSubmenu = subMenu; mCell = [customSubmenu addItem:"3D Viewer" action:@selector(showAlert) keyEquivalent:0]; classObj = [[a3DViewerView alloc] init]; [mCell setTarget:classObj]; [customSubmenu display]; inspectorPanel = [NXApp loadNibSection:"Inspector.nib" owner:classObj withNames:YES fromHeader:header]; box = NXGetNamedObject("3DFileBox", inspectorPanel); fileName = NXGetNamedObject("3DFileName", box); box = NXGetNamedObject("3DParameterBox", inspectorPanel); parameterForm = NXGetNamedObject("3DForm", box); [parameterForm setAction:@selector(setPhi) at:0]; [parameterForm setAction:@selector(setTheta) at:1]; [parameterForm setAction:@selector(setInvdist) at:2]; -1- JDX 184\LANL_CD\SOFTWARE\MEDIAVIEW\CUSTOM\SOURCE\A3DVIEWE.M 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 box = NXGetNamedObject("3DSoundButtonBox", inspectorPanel); recordButton = NXGetNamedObject("3DRecordSoundButton", box); [recordButton setAction:@selector(recordSound:)]; stopButton = NXGetNamedObject("3DStopSoundButton", box); [stopButton setAction:@selector(stopSound:)]; playButton = NXGetNamedObject("3DPlaySoundButton", box); [playButton setAction:@selector(playSound:)]; deleteButton = NXGetNamedObject("3DDeleteSoundButton", box); [deleteButton setAction:@selector(deleteSound:)]; tmpSound = 0x0; return classObj; } - (void) showAlert { NXRunAlertPanel(NULL, "Custom Menu Activated", NULL, NULL, NULL); } - initCustomComponent { self = [super init]; _3Dpanel = [NXApp loadNibSection:"3DViewer.nib" owner:self withNames:YES fromHeader:header]; _3DcontentView = [_3Dpanel contentView]; _3DcubeView = NXGetNamedObject("3DCubeView" , _3Dpanel); [_3DcubeView setmachHeader:header]; [_3DcubeView setController:self]; [_3Ddatasets setTarget:self]; [_3Ddatasets setAction:@selector(openData:)]; return _3DcontentView; } - recordSound:sender { if( !tmpSound ) tmpSound = [Sound new]; [tmpSound setDelegate:self]; [tmpSound record]; return self; } - playSound:sender { if( tmpSound ) [tmpSound play]; else [playButton setState:0]; return self; } - didPlay:sender { -2- JDX 184\LANL_CD\SOFTWARE\MEDIAVIEW\CUSTOM\SOURCE\A3DVIEWE.M 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 [playButton setState:0]; return self; } - didRecord:sender { [recordButton setState:0]; [_3DcubeView setViewSound:tmpSound]; return self; } - stopSound:sender { if( tmpSound ) [tmpSound stop]; return self; } - deleteSound:sender { [_3DcubeView deleteViewSound]; return self; } - inspectCustomComponent { [inspectorPanel makeKeyAndOrderFront:self]; [self refreshInspectorPanel]; return self; } - (void)refreshInspectorPanel { int index; if( [inspectorPanel isVisible] ) { [recordButton setTarget:self]; [stopButton setTarget:self]; [playButton setTarget:self]; [deleteButton setTarget:self]; [inspectorPanel orderFront:self]; if( [_3DcubeView currentDataFile] ) [fileName setStringValue:basename([_3DcubeView currentDataFile])]; [parameterForm setFloatValue:[_3DcubeView readPhi] at:0]; [parameterForm setFloatValue:[_3DcubeView readTheta] at:1]; [parameterForm setFloatValue:[_3DcubeView readInvdist] at:2]; for( index=0; index<3; index++ ) [parameterForm setTarget:self at:index]; } } - (void)setPhi { if( [_3DcubeView writePhi:[parameterForm floatValueAt:0]] ) [parameterForm setFloatValue:[_3DcubeView readPhi] at:0];; -3- JDX 184\LANL_CD\SOFTWARE\MEDIAVIEW\CUSTOM\SOURCE\A3DVIEWE.M 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 [parameterForm selectTextAt:0]; } - (void)setTheta { if( [_3DcubeView writeTheta:[parameterForm floatValueAt:1]] ) [parameterForm setFloatValue:[_3DcubeView readTheta] at:1];; [parameterForm selectTextAt:1]; } - (void)setInvdist { if( [_3DcubeView writeInvdist:[parameterForm floatValueAt:2]] ) [parameterForm setFloatValue:[_3DcubeView readInvdist] at:2];; [parameterForm selectTextAt:2]; } - openData:sender { [_3DcubeView openData:sender]; [self perform:@selector(displayAndFlush:) with:self afterDelay:1 cancelPrevious:YES]; return self; } - (void) displayAndFlush:sender { [[_3DcontentView window] disableFlushWindow]; [[_3DcontentView window] display]; [[_3DcontentView window] reenableFlushWindow]; [[_3DcontentView window] flushWindowIfNeeded]; [self resetFirstResponder:_3DcubeView]; } - setViews:(id)cv { _3DcubeView = cv; _3DcontentView = [cv superview]; return self; } - (void)resetFirstResponder:(id)frv { id vt = [_3DcontentView superview]; if ( [vt isKindOf:[Text class]] ) [vt textDidGetKeys:vt isEmpty:NO]; [[frv window] makeFirstResponder:frv]; [self refreshInspectorPanel]; } - free { -4- JDX 184\LANL_CD\SOFTWARE\MEDIAVIEW\CUSTOM\SOURCE\A3DVIEWE.M 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 if( tmpSound ) [tmpSound free]; return [super free]; } - write:(NXTypedStream *)stream { [super write:stream]; return self; } - read:(NXTypedStream *)stream { [super read:stream]; return self; } - awake { [super awake]; return self; } @end -5-

Disclaimer: Justia Dockets & Filings provides public litigation records from the federal appellate and district courts. These filings and docket sheets should not be considered findings of fact or liability, nor do they necessarily reflect the view of Justia.


Why Is My Information Online?