source: SRUAggregator/trunk/web/index.zul @ 2175

Last change on this file since 2175 was 2175, checked in by zastrow, 12 years ago
File size: 5.0 KB
Line 
1
2<zk>
3<!--title="CLARIN-D Federated Content Search"-->
4    <window  id="mainWindow" contentStyle="background:white;" height="100%" apply="clarind.fcs.Aggregator">
5        <borderlayout sclass="complex-layout"  >
6            <!-- Kopf -->
7            <north height="65px">
8                <image src="clarindLogo.png"/>
9            </north>
10           
11            <!-- Linke Sidebar -->
12<!--            <west width="0px"  flex="true" splittable="true" margins="0,5,0,0">
13 
14            </west>-->
15     
16            <!-- Center - Inhalt -->
17            <west autoscroll="true" splittable="true">
18                <panel >
19                    <panelchildren style="margin-top:10px;margin-left:10px;margin-right:10px;border:0;">                   
20                        <textbox id="searchString" value="Elefant" />
21                        <button id="searchButton"  label="Search" image="buttonSearch.png"/>     
22
23                        <separator />
24                       
25                       
26                        <groupbox mold="3d" id="allCorpora">
27                            <caption>All Corpora</caption>   
28                             <label>Select by Language:</label>
29                        <combobox id="languageSelect" width="150px" value="German">                                                                                                                   
30                            <comboitem label="German" id="german"/>
31                            <comboitem label="English" id="english"/>
32                            <comboitem label="Dutch" id="dutch" />
33                            <comboitem label="-More to come-" />
34                        </combobox>
35                       
36                         <separator />
37                       
38                        <button id="selectAll" label="Select All" image="buttonSelectAll.png"/>                                                                 
39                        <button id="deselectAll" label="Deselect All" image="buttonDeselectAll.png"/>                     
40                     
41                        <separator />
42                                                                                       
43                        </groupbox>
44                    </panelchildren>
45                </panel>
46            </west>
47           
48            <!-- Rechte Sidebar --> 
49            <center  flex="true"  margins="0,5,0,0" autoscroll="true" >
50                <panel>
51                    <panelchildren  id="resultsPanel" style="overflow: auto">
52                        <menubar id="menubar" width="100%">
53                            <menu label="Actions" image="buttonActions.png">
54                                <menupopup>
55                                    <menuitem label="Clear Results" id="clearResults" image="buttonDelete.png" />
56                                  <menuitem label="Export Results to CSV" id="exportResultsCSV" image="buttonExport.png" />
57                                  <menuitem label="Export Results to TCF" id="exportResultsTCF" image="buttonExport.png" />                           
58                             </menupopup>                               
59                            </menu>                           
60                            <menu label="Help" image="buttonHelp.png">
61                                <menupopup>
62                                     <menuitem label="Show Help" id="showHelp" image="buttonHelp.png" />
63                                </menupopup>   
64                            </menu>
65                                                                                 
66                        </menubar>
67<!--                         <toolbar id="resultsToolbar"  height="20px">
68                           <toolbarbutton id="clearResults" label="Clear Results" image="buttonDelete.png"/>
69                            <toolbarbutton id="exportResults" label="Export Results" image="buttonExport.png"/>
70                            <toolbarbutton id="showHelp" label="Show Help" image="buttonHelp.png"/>
71                               
72                        </toolbar>
73                        -->
74                        <vbox id="resultsVbox">
75                            <iframe src="help.html" width="100%" height="100%"/>
76                            <grid id="anzeigeGrid">
77                                <columns>
78                                    <column></column>
79                                    <column></column> 
80                                    <column></column>                                       
81                                </columns>
82                                <rows></rows>
83                            </grid>
84                            <html id="anzeigeResults" />
85                        </vbox>
86                    </panelchildren>
87                   
88                </panel>
89            </center>
90           
91            <!-- Fusszeile -->   
92            <south height="100px">
93               
94            </south>
95        </borderlayout>
96    </window>
97</zk>
Note: See TracBrowser for help on using the repository browser.