source: trunk/hiptop/pester/locale/en_US/Pester.rsrc@ 237

Last change on this file since 237 was 237, checked in by Nicholas Riley, 18 years ago

Doesn't do much yet.

File size: 2.0 KB
Line 
1# -*- coding: utf-8 -*-
2
3package "net.sabi.pester"
4
5interface "{source}net/sabi/pester/Resources.java"
6events "{source}net/sabi/pester/Commands.java"
7
8string ID_APP_NAME "Pester"
9string ID_APP_CLASS "net.sabi.pester.Pester"
10string ID_APP_FLAGS ""
11string ID_LOCALE "en_US"
12
13bitmap ID_LARGE_ICON "{base}LargeIcon.png"
14bitmap ID_SMALL_ICON "{base}SmallIcon.png"
15
16bitmap ID_SPLASH_SCREEN_NO_TITLE "{base}SplashScreenTransparent.png"
17
18string ID_VERSION "V@APP_VERSION_MAJOR@.@APP_VERSION_MINOR@"
19
20splashScreen ID_SPLASH_SCREEN_RESOURCE
21 image
22 bitmap = ID_SPLASH_SCREEN_NO_TITLE
23 alignWithParentTop = 0
24 alignWithParentLeft = 0
25 staticTextBox
26 text = ID_APP_NAME
27 alignWithParentLeft = 2
28 alignWithParentTop = 0
29 fillToRight = 2
30 transparent
31 doesNotHaveBorder
32endSplashScreen
33
34menu ID_ALARM_LIST_MENU
35 menuItem
36 title = "New Alarm"
37 shortcut = 'N'
38 icon = soundIcon
39 event = EVENT_NEW_ALARM
40
41 divider
42
43 menuItem
44 id = ID_DISCARD_ITEM
45 title = "Discard"
46 shortcut = deleteKey
47 event = EVENT_DISCARD_ALARM
48endMenu
49screen ID_ALARM_LIST_SCREEN
50 title = "Pester"
51 actionMenu = ID_ALARM_LIST_MENU
52 className = "net.sabi.pester.AlarmListWindow"
53 icon = ID_SMALL_ICON
54
55 activeListView
56 fillToBottom = 0
57 id = ID_ALARM_LIST_VIEW
58 alignWithParentLeft = 0
59 alignWithParentTop = 0
60 initialFocus
61 widthPct = 100
62 itemHeight = 12
63 className = "net.sabi.pester.AlarmListView"
64
65endScreen
66dialog ID_ALARM_SET_DIALOG
67
68 title = "Set Alarm"
69 showCancel
70# className = "net.sabi.pester.AlarmSetDialog"
71 widthPct = 100
72
73 staticText
74 text = "Message"
75 id = ID_MESSAGE_LABEL
76 alignWithParentTop = 3
77 alignWithParentLeft = 5
78 justifyRight
79 font = boldSysFont
80
81 typeAheadTextField
82 fillToRight = 0
83 id = ID_MESSAGE_FIELD
84 alignBaseline = ID_MESSAGE_LABEL
85 positionToRight = ID_MESSAGE_LABEL : 3
86 autoCap
87 initiallySelectAll
88 initialFocus
89
90 button
91 position = buttonBottom1
92 title = "Set"
93 shortcut = doneButton
94 event = EVENT_SET_ALARM
95endDialog
Note: See TracBrowser for help on using the repository browser.