~ubuntu-branches/debian/jessie/eso-midas/jessie

« back to all changes in this revision

Viewing changes to gui/XEchelle/prj/file_dialog.i

  • Committer: Package Import Robot
  • Author(s): Ole Streicher
  • Date: 2014-04-22 14:44:58 UTC
  • Revision ID: package-import@ubuntu.com-20140422144458-okiwi1assxkkiz39
Tags: upstream-13.09pl1.2+dfsg
ImportĀ upstreamĀ versionĀ 13.09pl1.2+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
! UIMX ascii 2.0 key: 2365                                                      
 
2
 
 
3
*file_dialog.class: applicationShell
 
4
*file_dialog.parent: NO_PARENT
 
5
*file_dialog.static: true
 
6
*file_dialog.gbldecl: #include <stdio.h>\
 
7
#include <ExternResources.h>
 
8
*file_dialog.ispecdecl:
 
9
*file_dialog.funcdecl: swidget create_file_dialog()\
 
10
 
 
11
*file_dialog.funcname: create_file_dialog
 
12
*file_dialog.funcdef: "swidget", "<create_file_dialog>(%)"
 
13
*file_dialog.icode:
 
14
*file_dialog.fcode: return(rtrn);\
 
15
 
 
16
*file_dialog.auxdecl:
 
17
*file_dialog.name: file_dialog
 
18
*file_dialog.x: 102
 
19
*file_dialog.y: 121
 
20
*file_dialog.width: 408
 
21
*file_dialog.height: 105
 
22
*file_dialog.title: ""
 
23
*file_dialog.keyboardFocusPolicy: "pointer"
 
24
*file_dialog.geometry: "+100+100"
 
25
*file_dialog.background: WindowBackground
 
26
 
 
27
*form12.class: form
 
28
*form12.parent: file_dialog
 
29
*form12.static: true
 
30
*form12.name: form12
 
31
*form12.resizePolicy: "resize_none"
 
32
*form12.unitType: "pixels"
 
33
*form12.x: 0
 
34
*form12.y: 0
 
35
*form12.width: 408
 
36
*form12.height: 348
 
37
*form12.background: WindowBackground
 
38
 
 
39
*form13.class: form
 
40
*form13.parent: form12
 
41
*form13.static: true
 
42
*form13.name: form13
 
43
*form13.resizePolicy: "resize_none"
 
44
*form13.x: 0
 
45
*form13.y: 62
 
46
*form13.width: 452
 
47
*form13.height: 40
 
48
*form13.background: ButtonBackground
 
49
 
 
50
*pushButton25.class: pushButton
 
51
*pushButton25.parent: form13
 
52
*pushButton25.static: true
 
53
*pushButton25.name: pushButton25
 
54
*pushButton25.x: 8
 
55
*pushButton25.y: 4
 
56
*pushButton25.width: 80
 
57
*pushButton25.height: 30
 
58
*pushButton25.background: ButtonBackground
 
59
*pushButton25.fontList: BoldTextFont
 
60
*pushButton25.foreground: ApplyForeground
 
61
*pushButton25.labelString: "Ok"
 
62
*pushButton25.activateCallback: {\
 
63
CallbackDialog();\
 
64
}
 
65
 
 
66
*pushButton26.class: pushButton
 
67
*pushButton26.parent: form13
 
68
*pushButton26.static: true
 
69
*pushButton26.name: pushButton26
 
70
*pushButton26.x: 100
 
71
*pushButton26.y: 4
 
72
*pushButton26.width: 80
 
73
*pushButton26.height: 30
 
74
*pushButton26.background: ButtonBackground
 
75
*pushButton26.fontList: BoldTextFont
 
76
*pushButton26.foreground: CancelForeground
 
77
*pushButton26.labelString: "Cancel"
 
78
*pushButton26.activateCallback: {\
 
79
UxPopdownInterface(UxFindSwidget("file_dialog"));\
 
80
}
 
81
 
 
82
*lb_file_dialog.class: label
 
83
*lb_file_dialog.parent: form12
 
84
*lb_file_dialog.static: true
 
85
*lb_file_dialog.name: lb_file_dialog
 
86
*lb_file_dialog.x: 10
 
87
*lb_file_dialog.y: 12
 
88
*lb_file_dialog.width: 176
 
89
*lb_file_dialog.height: 30
 
90
*lb_file_dialog.background: LabelBackground
 
91
*lb_file_dialog.fontList: TextFont
 
92
*lb_file_dialog.labelString: "Output parameters file :"
 
93
*lb_file_dialog.alignment: "alignment_beginning"
 
94
*lb_file_dialog.foreground: TextForeground
 
95
 
 
96
*tf_file_dialog.class: textField
 
97
*tf_file_dialog.parent: form12
 
98
*tf_file_dialog.static: true
 
99
*tf_file_dialog.name: tf_file_dialog
 
100
*tf_file_dialog.x: 190
 
101
*tf_file_dialog.y: 10
 
102
*tf_file_dialog.width: 210
 
103
*tf_file_dialog.height: 34
 
104
*tf_file_dialog.background: TextBackground
 
105
*tf_file_dialog.fontList: TextFont
 
106
*tf_file_dialog.highlightOnEnter: "true"
 
107
*tf_file_dialog.foreground: TextForeground
 
108
*tf_file_dialog.losingFocusCallback: {\
 
109
char *text;\
 
110
extern char Session[];\
 
111
\
 
112
text = XmTextGetString(UxWidget);\
 
113
strcpy(Session, text);\
 
114
\
 
115
XtFree(text);\
 
116
}
 
117
*tf_file_dialog.activateCallback: {\
 
118
CallbackDialog();\
 
119
}
 
120