1 | // ********* Required for every application
|
---|
2 | error "Bad string!"
|
---|
3 |
|
---|
4 |
|
---|
5 | // color_name red grn blue
|
---|
6 | //--------------------------------------------
|
---|
7 | window_active_bright "220 220 200"
|
---|
8 | window_active_medium "180 180 160"
|
---|
9 | window_active_dark "160 160 130"
|
---|
10 |
|
---|
11 | text_foreground "0 0 0"
|
---|
12 | text_background "150 150 150"
|
---|
13 | selected_text_foreground "255 255 255"
|
---|
14 | selected_text_background "0 128 128"
|
---|
15 |
|
---|
16 |
|
---|
17 | window_passive_bright "180 180 180"
|
---|
18 | window_passive_medium "150 150 150"
|
---|
19 | window_passive_dark "100 100 100"
|
---|
20 |
|
---|
21 | root_background_color "150 150 150"
|
---|
22 |
|
---|
23 |
|
---|
24 | menu_foreground "0 0 0"
|
---|
25 | menu_background "128 128 128"
|
---|
26 | selected_menu_foreground "255 255 255"
|
---|
27 | selected_menu_background "0 0 128"
|
---|
28 |
|
---|
29 | drag_bar_gradiant_active_start "0 200 200"
|
---|
30 | drag_bar_gradiant_active_end "0 0 0"
|
---|
31 | drag_bar_gradiant_start "128 128 128"
|
---|
32 | drag_bar_gradiant_end "0 0 0"
|
---|
33 |
|
---|
34 |
|
---|
35 | //-------------------------------------------
|
---|
36 |
|
---|
37 | window_manager = MWM
|
---|
38 |
|
---|
39 | i4_resources_dir=resource
|
---|
40 | // ******** ICONS
|
---|
41 |
|
---|
42 | close_icon resource/closicon.tga
|
---|
43 | up_icon resource/upicon.pcx
|
---|
44 | down_icon resource/downicon.pcx
|
---|
45 | left_icon resource/lefticon.pcx
|
---|
46 | right_icon resource/rigticon.pcx
|
---|
47 | plus_icon resource/plus.pcx
|
---|
48 | minus_icon resource/minus.pcx
|
---|
49 | background_bitmap resource/bground.tga
|
---|
50 | ok_icon resource/ok.tga
|
---|
51 | cancel_icon resource/cancel.tga
|
---|
52 |
|
---|
53 |
|
---|
54 | // ******** FONTS
|
---|
55 | small_font resource/helvetica_8.tga
|
---|
56 |
|
---|
57 |
|
---|
58 | // ******** CURSORS
|
---|
59 | normal_cursor "resource/normcurs.pcx 0 1 0"
|
---|
60 | text_cursor "resource/textcurs.pcx 0 3 7"
|
---|
61 |
|
---|
62 | load_failed "Failed to load %S"
|
---|
63 | no_key "No such keyname '%s' (%S)"
|
---|
64 | modifier_in_use "Cannot assign key %s, modifier already in use in this context"
|
---|
65 |
|
---|
66 | button_delay = 250
|
---|
67 | button_repeat = 50
|
---|
68 | double_click = 300
|
---|
69 |
|
---|
70 | prof_win_title "Profile"
|
---|
71 | expected "Error, expected : "
|
---|
72 | status "Progress"
|
---|
73 |
|
---|
74 | get_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 |
|
---|
83 | cancel_operation "CANCEL"
|
---|