source: golgotha/src/i4/resource/i4.res @ 608

Last change on this file since 608 was 80, checked in by Sam Hocevar, 15 years ago
  • Adding the Golgotha source code. Not sure what's going to be interesting in there, but since it's all public domain, there's certainly stuff to pick up.
File size: 2.2 KB
Line 
1// ********* Required for every application
2error "Bad string!"
3
4
5//  color_name                  red grn blue
6//--------------------------------------------
7window_active_bright           "220 220 200"
8window_active_medium           "180 180 160"
9window_active_dark             "160 160 130"
10
11text_foreground                "0   0   0"
12text_background                "150 150 150"
13selected_text_foreground       "255 255 255"
14selected_text_background       "0   128 128"
15
16
17window_passive_bright          "180 180 180"
18window_passive_medium          "150 150 150"
19window_passive_dark            "100 100 100"
20
21root_background_color          "150 150 150"
22
23
24menu_foreground                "0   0   0"
25menu_background                "128 128 128"
26selected_menu_foreground       "255 255 255"
27selected_menu_background        "0  0   128"
28
29drag_bar_gradiant_active_start "0   200 200"
30drag_bar_gradiant_active_end   "0   0   0"
31drag_bar_gradiant_start        "128 128 128"
32drag_bar_gradiant_end          "0   0   0"
33
34
35//-------------------------------------------
36
37window_manager = MWM
38
39i4_resources_dir=resource
40// ******** ICONS
41
42close_icon resource/closicon.tga
43up_icon    resource/upicon.pcx
44down_icon  resource/downicon.pcx
45left_icon  resource/lefticon.pcx
46right_icon resource/rigticon.pcx
47plus_icon  resource/plus.pcx
48minus_icon resource/minus.pcx
49background_bitmap resource/bground.tga
50ok_icon           resource/ok.tga
51cancel_icon       resource/cancel.tga
52
53
54// ******** FONTS
55small_font resource/helvetica_8.tga
56
57
58// ******** CURSORS
59normal_cursor      "resource/normcurs.pcx 0 1 0"
60text_cursor        "resource/textcurs.pcx 0 3 7"
61
62load_failed "Failed to load %S"
63no_key      "No such keyname '%s' (%S)"
64modifier_in_use "Cannot assign key %s, modifier already in use in this context"
65
66button_delay = 250
67button_repeat = 50
68double_click = 300
69
70prof_win_title "Profile"
71expected       "Error, expected : "
72status         "Progress"
73
74get_savename_dialog =
75"[down x+(5) y+(20)
76 text('     Enter filename to save as')
77 %p=text_input(400 '%S')
78 x+(130) y+(10)
79 [right button(text('  Ok  ') user_ev(%p %d))
80        button(text('Cancel') user_ev(%p %d))]
81]"
82
83cancel_operation "CANCEL"
Note: See TracBrowser for help on using the repository browser.