[MOD] Configuration wizard :image size changed
[odoo/odoo.git] / bin / addons / base / res / res_config.xml
1 <openerp>
2   <data>
3     <record id="res_config_view_base" model="ir.ui.view">
4       <field name="name">res.config.view.base</field>
5       <field name="model">res.config</field>
6       <field name="type">form</field>
7       <field name="arch" type="xml">
8        <form>
9             <group colspan="4" col="8">
10                   <group colspan="3" width="220" height="250">
11                     <field name="config_logo" widget="image" width="220" height="130" nolabel="1" colspan="1"/>
12                     <newline/>
13                     <label align="0.0" string="description" width="200" colspan="2"/>
14                   </group>
15                   <separator string="vsep" position="vertical" colspan="1" rowspan="12"/>
16                 <group colspan="4">
17                       <separator string="title" colspan="4"/>
18                       <group string="res_config_contents"/>
19                 </group>
20             </group>
21                 <group colspan="8" col="8">
22                     <separator string="" colspan="8"/>
23                     <group colspan="4" width="220">
24                         <field name="progress" widget="progressbar" nolabel="1" colspan="2"/>
25                     </group>
26                       <button name="action_skip" icon="gtk-jump-to" special="cancel"
27                             type="object" string="Skip" colspan="1"/>
28                     <button name="action_next" icon="gtk-go-forward"
29                          type="object" string="Next" colspan="1"/>
30            </group>
31         </form>
32       </field>
33     </record>
34
35     <record id="view_config_wizard_form" model="ir.ui.view">
36       <field name="name">Compabitiliby configuration wizard</field>
37       <field name="model">ir.actions.configuration.wizard</field>
38       <field name="type">form</field>
39       <field name="arch" type="xml">
40         <form string="Next Configuration Step">
41           <image name="gtk-dialog-info"/>
42           <group>
43             <field name="note" nolabel="1" colspan="4" width="500"/>
44             <group colspan="4" col="8">
45               <field name="progress" widget="progressbar"/>
46               <label string="" colspan="4"/>
47               <group colspan="1" col="2">
48                 <button name="action_next" icon="gtk-go-forward"
49                         type="object" string="Continue"/>
50               </group>
51             </group>
52           </group>
53         </form>
54       </field>
55     </record>
56
57     <record id="res_config_installer" model="ir.ui.view">
58       <field name="name">Inheritable view for installer objects</field>
59       <field name="model">res.config.installer</field>
60       <field name="type">form</field>
61       <field name="arch" type="xml">
62         <form>
63             <group colspan="4" col="8">
64                   <group colspan="3" width="220" height="250">
65                     <field name="config_logo" widget="image" width="220" height="130" nolabel="1" colspan="1"/>
66                     <newline/>
67                     <label align="0.0" string="description" width="200" colspan="2"/>
68                   </group>
69                   <separator string="vsep" position="vertical" colspan="1" rowspan="12"/>
70                 <group colspan="4">
71                       <separator string="title" colspan="4"/>
72                       <group colspan="8"/>
73                 </group>
74             </group>
75                 <group colspan="8" col="8">
76                     <separator string="" colspan="8"/>
77                     <group colspan="4" width="220">
78                         <field name="progress" widget="progressbar" nolabel="1" colspan="2"/>
79                     </group>
80                       <button name="action_skip" icon="gtk-jump-to" special="cancel"
81                             type="object" string="Skip" colspan="1"/>
82                     <button name="action_next" icon="gtk-go-forward"
83                          type="object" string="Install Modules" colspan="1"/>
84                    </group>
85         </form>
86
87       </field>
88     </record>
89
90   </data>
91 </openerp>