Last change
on this file since 396 was 207, checked in by Nicholas Riley, 19 years ago |
rpn: Brian Swetland's RPN calculator using Dan Sachs's hipfloat
library. Changes for hiptop OS 2.3; some minor UI cleanups.
|
File size:
1.5 KB
|
Line | |
---|
1 | package "net.frotz.rpn"
|
---|
2 |
|
---|
3 | interface "{source}net/frotz/rpn/Resources.java"
|
---|
4 | events "{source}net/frotz/rpn/ResourceEvents.java"
|
---|
5 |
|
---|
6 | string ID_APP_NAME "RPN Calculator"
|
---|
7 | string ID_APP_CLASS "net.frotz.rpn.RPN"
|
---|
8 |
|
---|
9 | string ID_LOCALE "en_US"
|
---|
10 |
|
---|
11 | bitmap ID_LARGE_ICON "{base}ID_LargeIcon.png"
|
---|
12 | bitmap ID_SMALL_ICON "{base}ID_SmallIcon.png"
|
---|
13 | # bitmap ID_SPLASH_SCREEN "{base}ID_SplashScreen.png"
|
---|
14 |
|
---|
15 | splashScreen ID_SPLASH_SCREEN_RESOURCE
|
---|
16 | # image
|
---|
17 | # bitmap = ID_SPLASH_SCREEN
|
---|
18 | # alignWithParentLeft = 2
|
---|
19 | # alignWithParentTop = 0
|
---|
20 |
|
---|
21 | staticTextBox
|
---|
22 | text = ID_APP_NAME
|
---|
23 | alignWithParentLeft = 0
|
---|
24 | alignWithParentTop = 0
|
---|
25 | fillToRight = 2
|
---|
26 | transparent
|
---|
27 | doesNotHaveBorder
|
---|
28 | endSplashScreen
|
---|
29 |
|
---|
30 | menu MENU_MAIN
|
---|
31 | menuItem
|
---|
32 | title="Toggle Quick Reference"
|
---|
33 | event=DO_TOGGLE_HELP
|
---|
34 | menuItem
|
---|
35 | title="Toggle Scientific"
|
---|
36 | event=DO_TOGGLE_SCI
|
---|
37 | menuItem
|
---|
38 | title="About..."
|
---|
39 | event=DO_ABOUT_BOX
|
---|
40 | endMenu
|
---|
41 |
|
---|
42 | dialog DIALOG_ABOUT centerVertically centerHorizontally
|
---|
43 | title = "RPN Calculator v0.33333"
|
---|
44 |
|
---|
45 | staticText
|
---|
46 | alignWithParentTop = 2
|
---|
47 | text="Copyright 2003, Brian Swetland"
|
---|
48 | left=3 fillToRight=3
|
---|
49 | id=TEXTA
|
---|
50 | justifyCenter
|
---|
51 |
|
---|
52 | staticText
|
---|
53 | positionBelow=TEXTA:6
|
---|
54 | text="floating point math library"
|
---|
55 | left=3 fillToRight=3
|
---|
56 | id=TEXTB
|
---|
57 | justifyCenter
|
---|
58 |
|
---|
59 | staticText
|
---|
60 | positionBelow=TEXTB:2
|
---|
61 | text="Copyright 2003, Dan Sachs"
|
---|
62 | left=3 fillToRight=3
|
---|
63 | id=TEXTC
|
---|
64 | justifyCenter
|
---|
65 |
|
---|
66 | staticText
|
---|
67 | positionBelow=TEXTC:6
|
---|
68 | text="Share and Enjoy!"
|
---|
69 | left=3 fillToRight=3
|
---|
70 | id=TEXTD
|
---|
71 | justifyCenter
|
---|
72 |
|
---|
73 | button title=okButton position=buttonBottom1
|
---|
74 | initialFocus
|
---|
75 |
|
---|
76 | endDialog
|
---|
Note:
See
TracBrowser
for help on using the repository browser.