Subversion Repositories eFlore/Archives.eflore-xul

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
8 jpm 1
<?xml version="1.0" encoding="UTF-8" ?>
2
<!- Description de la fenêtre principale->
3
 
4
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
5
<?xml-stylesheet href="chrome://eflore/skin/eflore.css" type="text/css"?>
6
 
7
<!DOCTYPE window SYSTEM "chrome://eflore/locale/eflore.dtd">
8
 
9
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
10
    id="fenetreEflorePrincipal"
11
    class="dialog"
12
    title="$eflore:titre;"
13
    width="640"
14
    height="480"
15
    orient="horizontal">
16
 
17
    <script type="application/x-javascript" src="chrome://eflore/content/eflore.js"/>
18
    <script type="application/x-javascript" src="chrome://eflore/content/serveur.js"/>
19
 
20
    <popupset>
21
        <popup id="clipmenu">
22
            <menuitem label="Voir" oncommand="project_view( )" class="gras"/>
23
            <menuitem label="Page d'accueil" oncommand="project_home( )"/>
24
            <menuseparator/>
25
            <menuitem label="Info" oncommand="project_info( )"/>
26
      </popup>
27
</popupset>
28
 
29
<vbox flex="1">
30
  <hbox>
31
    <label value="Recherche de :" class="gras"/>
32
    <textbox flex="1" id="prjfind"/>
33
    <button id="findbut" image="http://images.freshmeat.net/button.gif" label="aller!" class="gras_et_blanc" oncommand="search( )" flex="1"/>
34
  </hbox>
35
  <hbox flex="1" context="clipmenu">
36
 
37
    <tree id="projectTree" flex="1" onclick="treeSelect( event.button );">
38
      <treecols>
39
        <treecol id="prjname" label="&eflore:projet:nom;" flex="2" primary="true" persist="width ordinal hidden"/>
40
            <splitter class="tree-splitter"/>
41
        <treecol id="prjdesc" label="&eflore:projet:description;" flex="1" primary="false" persist="width ordinal hidden"/>
42
      </treecols>
43
 
44
      <treechildren id="root">
45
      </treechildren>
46
    </tree>
47
 
48
  </hbox>
49
  <hbox>
50
    <progressmeter id="loadprogress" mode="determined" value="0" flex="1"/>
51
    <button id="about" label="About" class="bold-and-white"
52
        oncommand="window.openDialog( 'chrome://eflore/content/au_sujet_de.xul', 'eFlore','chrome,centerscreen,modal' );"/>
53
  </hbox>
54
</vbox>
55
 
56
</window>