From ac5a0e3dfc3a9ee74ad3c021cac342f3bed2446c Mon Sep 17 00:00:00 2001 From: Ross Boucher Date: Fri, 26 Mar 2010 14:00:51 -0700 Subject: [PATCH] Add CPBrowser manual test app. --- Tests/Manual/CPBrowserTest/AppController.j | 132 ++++++++++++++++++ Tests/Manual/CPBrowserTest/CPBrowser.j | 1 + Tests/Manual/CPBrowserTest/Info.plist | 12 ++ Tests/Manual/CPBrowserTest/Jakefile | 81 +++++++++++ .../Resources/browser-leaf-highlighted.png | Bin 0 -> 304 bytes .../CPBrowserTest/Resources/browser-leaf.png | Bin 0 -> 321 bytes .../Resources/browser-resize-control.png | Bin 0 -> 162 bytes .../CPBrowserTest/Resources/spinner.gif | Bin 0 -> 1849 bytes Tests/Manual/CPBrowserTest/index-debug.html | 86 ++++++++++++ Tests/Manual/CPBrowserTest/index.html | 71 ++++++++++ Tests/Manual/CPBrowserTest/main.j | 18 +++ 11 files changed, 401 insertions(+) create mode 100644 Tests/Manual/CPBrowserTest/AppController.j create mode 120000 Tests/Manual/CPBrowserTest/CPBrowser.j create mode 100644 Tests/Manual/CPBrowserTest/Info.plist create mode 100644 Tests/Manual/CPBrowserTest/Jakefile create mode 100644 Tests/Manual/CPBrowserTest/Resources/browser-leaf-highlighted.png create mode 100644 Tests/Manual/CPBrowserTest/Resources/browser-leaf.png create mode 100644 Tests/Manual/CPBrowserTest/Resources/browser-resize-control.png create mode 100644 Tests/Manual/CPBrowserTest/Resources/spinner.gif create mode 100644 Tests/Manual/CPBrowserTest/index-debug.html create mode 100644 Tests/Manual/CPBrowserTest/index.html create mode 100644 Tests/Manual/CPBrowserTest/main.j diff --git a/Tests/Manual/CPBrowserTest/AppController.j b/Tests/Manual/CPBrowserTest/AppController.j new file mode 100644 index 000000000..ec2d3aabd --- /dev/null +++ b/Tests/Manual/CPBrowserTest/AppController.j @@ -0,0 +1,132 @@ +/* + * AppController.j + * CPBrowserTest + * + * Created by Ross Boucher on March 23, 2010. + * Copyright 2010, Your Company All rights reserved. + */ + +@import +@import "CPBrowser.j" + +@implementation Node : CPObject +{ + id value; +} + ++ (id)withValue:(id)aValue +{ + var a = [[self alloc] init]; + a.value = aValue; + return a; +} + +- (id)value +{ + return value; +} + +- (CPArray)children +{ + return [[Node withValue:1], + [Node withValue:2], + [Node withValue:3], + [Node withValue:4]]; +} + +@end + +@implementation AppController : CPObject +{ +} + +- (void)applicationDidFinishLaunching:(CPNotification)aNotification +{ + var theWindow = [[CPWindow alloc] initWithContentRect:CGRectMakeZero() styleMask:CPBorderlessBridgeWindowMask], + contentView = [theWindow contentView]; + + var box = [[CPBox alloc] initWithFrame:CGRectMake(0,0,500,300)]; + browser = [[CPBrowser alloc] initWithFrame:CGRectMake(0,0,500,300)]; + + [browser setWidth:300 ofColumn:1]; + [box setContentView:browser]; + [box setBorderType:CPBezelBorder]; + + [box setCenter:[contentView center]]; + [contentView addSubview:box]; + + [theWindow orderFront:self]; + + [browser setDelegate:self]; + + [browser setTarget:self]; + [browser setAction:@selector(browserClicked:)]; + [browser setDoubleAction:@selector(dblClicked:)]; + [browser registerForDraggedTypes:["Type"]]; + + //[browser setAllowsMultipleSelection:NO]; +} + +- (BOOL)browser:(CPBrowser)aBrowser writeRowsWithIndexes:(CPIndexSet)indexes inColumn:(int)column toPasteboard:(CPPasteboard)pboard +{ + var encodedData = [CPKeyedArchiver archivedDataWithRootObject:"Foo"]; + [pboard declareTypes:["Type"] owner:self]; + [pboard setData:encodedData forType:"Type"]; + return YES; +} + +- (BOOL)browser:(id)aBrowser validateDrop:(id)info proposedRow:(int)row column:(int)column dropOperation:(id)op +{ + return CPDragOperationMove; +} +- (BOOL)browser:(id)aBrowser acceptDrop:(id)info atRow:(int)row column:(int)column dropOperation:(id)op +{ + return YES; +} + +- (void)browserClicked:(id)sender +{ + console.log("selected column: "+[browser selectedColumn]+" row: "+[browser selectedRowInColumn:[browser selectedColumn]]); +} + +- (void)dblClicked:(id)sender +{ + alert("DOUBLE"); +} + +/*- (id)rootItemForBrowser:(id)aBrowser +{ + return [Node withValue:0]; +}*/ + +- (id)browser:(id)aBrowser numberOfChildrenOfItem:(id)anItem +{ + if (anItem === nil) + return 4; + return [[anItem children] count]; +} + +- (id)browser:(id)aBrowser child:(int)index ofItem:(id)anItem +{ + if (!anItem) + return [[[Node withValue:0] children] objectAtIndex:index]; + + return [[anItem children] objectAtIndex:index]; +} + +- (id)browser:(id)aBrowser imageValueForItem:(id)anItem +{ + return [[CPImage alloc] initWithContentsOfFile:"http://cappuccino.org/images/favicon.png" size:CGSizeMake(16, 16)]; +} + +- (id)browser:(id)aBrowser objectValueForItem:(id)anItem +{ + return [anItem value]; +} + +- (id)browser:(id)aBrowser isLeafItem:(id)anItem +{ + return ![[anItem children] count] || [anItem value] === 4; +} + +@end diff --git a/Tests/Manual/CPBrowserTest/CPBrowser.j b/Tests/Manual/CPBrowserTest/CPBrowser.j new file mode 120000 index 000000000..00538b439 --- /dev/null +++ b/Tests/Manual/CPBrowserTest/CPBrowser.j @@ -0,0 +1 @@ +../../../AppKit/CPBrowser.j \ No newline at end of file diff --git a/Tests/Manual/CPBrowserTest/Info.plist b/Tests/Manual/CPBrowserTest/Info.plist new file mode 100644 index 000000000..244eb9c81 --- /dev/null +++ b/Tests/Manual/CPBrowserTest/Info.plist @@ -0,0 +1,12 @@ + + + + + CPApplicationDelegateClass + AppController + CPBundleName + CPBrowserTest + CPPrincipalClass + CPApplication + + diff --git a/Tests/Manual/CPBrowserTest/Jakefile b/Tests/Manual/CPBrowserTest/Jakefile new file mode 100644 index 000000000..542de14fd --- /dev/null +++ b/Tests/Manual/CPBrowserTest/Jakefile @@ -0,0 +1,81 @@ +/* + * Jakefile + * CPBrowserTest + * + * Created by Ross Boucher on March 23, 2010. + * Copyright 2010, Your Company All rights reserved. + */ + +var ENV = require("system").env, + FILE = require("file"), + JAKE = require("jake"), + task = JAKE.task, + FileList = JAKE.FileList, + app = require("cappuccino/jake").app, + configuration = ENV["CONFIG"] || ENV["CONFIGURATION"] || ENV["c"] || "Debug", + OS = require("os"); + +app ("CPBrowserTest", function(task) +{ + task.setBuildIntermediatesPath(FILE.join("Build", "CPBrowserTest.build", configuration)); + task.setBuildPath(FILE.join("Build", configuration)); + + task.setProductName("CPBrowserTest"); + task.setIdentifier("com.yourcompany.CPBrowserTest"); + task.setVersion("1.0"); + task.setAuthor("Your Company"); + task.setEmail("feedback @nospam@ yourcompany.com"); + task.setSummary("CPBrowserTest"); + task.setSources((new FileList("**/*.j")).exclude(FILE.join("Build", "**"))); + task.setResources(new FileList("Resources/*")); + task.setIndexFilePath("index.html"); + task.setInfoPlistPath("Info.plist"); + + if (configuration === "Debug") + task.setCompilerFlags("-DDEBUG -g"); + else + task.setCompilerFlags("-O"); +}); + +function printResults(configuration) +{ + print("----------------------------"); + print(configuration+" app built at path: "+FILE.join("Build", configuration, "CPBrowserTest")); + print("----------------------------"); +} + +task ("default", ["CPBrowserTest"], function() +{ + printResults(configuration); +}); + +task ("build", ["default"]); + +task ("debug", function() +{ + ENV["CONFIGURATION"] = "Debug"; + JAKE.subjake(["."], "build", ENV); +}); + +task ("release", function() +{ + ENV["CONFIGURATION"] = "Release"; + JAKE.subjake(["."], "build", ENV); +}); + +task ("run", ["debug"], function() +{ + OS.system(["open", FILE.join("Build", "Debug", "CPBrowserTest", "index.html")]); +}); + +task ("run-release", ["release"], function() +{ + OS.system(["open", FILE.join("Build", "Release", "CPBrowserTest", "index.html")]); +}); + +task ("deploy", ["release"], function() +{ + FILE.mkdirs(FILE.join("Build", "Deployment", "CPBrowserTest")); + OS.system(["press", "-f", FILE.join("Build", "Release", "CPBrowserTest"), FILE.join("Build", "Deployment", "CPBrowserTest")]); + printResults("Deployment") +}); diff --git a/Tests/Manual/CPBrowserTest/Resources/browser-leaf-highlighted.png b/Tests/Manual/CPBrowserTest/Resources/browser-leaf-highlighted.png new file mode 100644 index 0000000000000000000000000000000000000000..c786c820b968e2cb41bff93c97a70a43c9880ce6 GIT binary patch literal 304 zcmV-00nh%4P)F)L$B^5aEGcfbbKeJ0g5Da|Z?$A{RNBTSQ&;vS(ecqk>~les;Z&uy2l1el0;dSMQ|aweP982 zhS~`5_66Ct{hE+c5?mTMP17~h^2IdG$Z?zv%8v%Z@i3BS##qETU!pXJ zc6E=VDX`*%>AkM&i+A(z^E@HM3Sb}Vw*AvnfB^uOw4(d3xu`Ax0000FOyfq~)uj~_p#{rU5!@9y2Z?-sji3rHms6B7d)8yf=)3kw4W2L}T; zH#aj-VFFO2vZ|_T7z?u9AjOP~j0`3wCNBd50-hKc7@PzO|6)N>@XyrL^hHQW$P*P6 zmCZn*RX}_TB*y}@=C7Td-LvrU@CQ;-QX8R?k5Rn$`t|GGz_7>yVi8>71Q1{VrbmW` Tzn_P=00000NkvXXu0mjfUUP)& literal 0 HcmV?d00001 diff --git a/Tests/Manual/CPBrowserTest/Resources/browser-resize-control.png b/Tests/Manual/CPBrowserTest/Resources/browser-resize-control.png new file mode 100644 index 0000000000000000000000000000000000000000..c335460deae102bba94f03d14d3be69da0aa1f8e GIT binary patch literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^{6Ngd!2~4hUtHV)q$EpRBT9nv(@M${i&7aJQ}UBi z6+Ckj(^G>|6H_V+Po~-c6}fo2IEGZ*N~-z$%T!oc*jU0qk_u@O1Ta JS?83{1OUlYGxPue literal 0 HcmV?d00001 diff --git a/Tests/Manual/CPBrowserTest/Resources/spinner.gif b/Tests/Manual/CPBrowserTest/Resources/spinner.gif new file mode 100644 index 0000000000000000000000000000000000000000..06dbc2bc21dddcf0e09b566d5b211aee89570f52 GIT binary patch literal 1849 zcma*odr(tX9tZHtz31lM+(&Y`A`Ou`NeG&R#DrIfV%?hng21vs6v>ooRQQFbk7E_K!V( z{?5!fpZWgIZ%*d6t%i*j24bL}AZUJm9)h6R*;%L4IWse3G#VWaN1#$zSSXcBhlYlH zJ|D}n{r&w2f+Qp)SS*&n?*G4}{}!h?td_mjU6Kad-rW*QwWYCUk7d^e+sjpZAn6kT z5rM;`{~_}-wm+L@%+E;JphLm}C3WzQAQD0wBoY|rOTQX{(@pp-WAA8Iw0HKl|15j) zhGh(SFWu#5zUCw^T!}C~eC}~?{xG-r7ugQC>taC+|L^xr&a%{#cgUOZXIM&v?)k^2 z1i5%0!U00wq)r4vlAwXBA_m5J5WNeuBm-XJQ5pG4GD%vc|K){+TJ{AkHqN@SJKczX zU}QRd9n*_bf^h94)6Ctv{CUfz_;qs#RDuQ$DR%y1&5G-a6rhf*4Y zl+UOD1*GE{GQ7vv;c-tTIMkz0ovO>9j%b5hpa@a*CBJ#W!0@ndSwF|%hMkdFtXiU) z`BEp+yhkt8ZY>tg&uyH@%^%K4jDrbA;et&vnnzZ3z22@e6<27z2Vk13kb7OtISyxv z(XoO-LNQCZe3lfzc%*pNqU<9T+p~teThOEB+~e&U0mC|zS{Q)dJZ)!^1f7L(zg*L> z*vSW%?dR~@@0(}x6-V^A`~ImD;)NaBUnP8;RH=bS2@pk`wp>>8r&jGjmGPy%1BW}v zoPo}ca$~bze@efc3kapuEVW1!%teOZT3j2Tw5=hjiAf02d}7dL0oFC%@=RXp5Ow#% z@a>+AM|YWt$n&e`>sB-32gBcuTi>R>*|8@lp`y6thc7ydyqDsuUn~YzZf|{-R@-3y zL#wx{Ii}xxL_csiW*LBn0-A$>zp4WOmkf6=ilrjlW?-l9+bCd7|i?*b5NTmy<<6NZ0T8$SN@mwdC2f z6jqK=N@bS@!=YSj%>h0}*4p+%0HbTIrE$w7UMT6+AZZ&DAo*qZAAi(OtNbIfl#Dw^ zJWeiCp~zi#&t6x}m9)O^eR4HiLV3QA<<0>HZ8%$^lrSE94Wb}=+MM^!b>n#5&-JQR zkr-CEu9C;_F*7DqDisulV6Pmg$nFL0TPn%~*m^-`Z3^BgU(sNpnx%nW(!eV9A&FvI zHL3X3lw8Wji^6=8KbQDE-e%b?svdFxxdh$8r97@7$ojeI`6AL8Ob6QC$qh&>ZWVDX1F{0vJnT%%mE;GveKWR%C} zM&4d;Jf3s9|HAA)yVUPo`Aq;0do#)uHSXi5*QF*)x@MVVHr+cN)uMZ__F|&Ta#p8d z53TOKtce!PJUuie8UWol-S(`c2nH?UGqJP{!4RR4u$LCfn)q-hj0^f=h(VYy)T6eN zhRO!ja-aDBTcgeyP(8Ua4IdiOog^*CQa?R(cP#9AgL9`j>EX-6Yf1lzX(!~``M1XC zNmM<4<6d~wWZ$Xrk0K}UteTrq@LBBk#MsjkK;pbuVhe)NI7(7Pf(l?lxC7=1Z7Pzl zMbS;nV4NI5_N{1$P)&XC)huOGQ+h^zpYUZfb*1n6>!`#*b3y52LGmi+<4sY5jyD#- zw&$d}DTguLAfnRtjrM*JfqtHqUu6rQoU=g%1E9xk%;)TDm^2<8n-0IhTsQFaek)MY}>PK4;nBk=ow4pF>vzkO& gna%Org-kgQCf=+BeMi^RbuY;YE~rTjend;_cdi8t>i_@% literal 0 HcmV?d00001 diff --git a/Tests/Manual/CPBrowserTest/index-debug.html b/Tests/Manual/CPBrowserTest/index-debug.html new file mode 100644 index 000000000..3b53a7cb4 --- /dev/null +++ b/Tests/Manual/CPBrowserTest/index-debug.html @@ -0,0 +1,86 @@ + + + + + + + + CPBrowserTest + + + + + + + + + + + + + + +
+
+ + + +
+
+ + + diff --git a/Tests/Manual/CPBrowserTest/index.html b/Tests/Manual/CPBrowserTest/index.html new file mode 100644 index 000000000..2ef787c55 --- /dev/null +++ b/Tests/Manual/CPBrowserTest/index.html @@ -0,0 +1,71 @@ + + + + + + + + CPBrowserTest + + + + + + + + + + + + +
+
+ + + +
+
+ + + + diff --git a/Tests/Manual/CPBrowserTest/main.j b/Tests/Manual/CPBrowserTest/main.j new file mode 100644 index 000000000..6da74c521 --- /dev/null +++ b/Tests/Manual/CPBrowserTest/main.j @@ -0,0 +1,18 @@ +/* + * AppController.j + * CPBrowserTest + * + * Created by Ross Boucher on March 23, 2010. + * Copyright 2010, Your Company All rights reserved. + */ + +@import +@import + +@import "AppController.j" + + +function main(args, namedArgs) +{ + CPApplicationMain(args, namedArgs); +}