1<?xml version="1.0" encoding="utf-8"?>
2
3<!--
4/***************************************************************************
5 copyright   : (C) 2010 by Martin Preuss
6 email       : martin@aqbanking.de
7
8 ***************************************************************************
9 * This file is part of the project "AqBanking".                           *
10 * Please see toplevel file COPYING of that project for license details.   *
11 ***************************************************************************/
12-->
13
14<dialog type="dialog" name="ab_setup_newuser" i18n="aqbanking"
15        flags="decorShrinkable decorStretchable decorMaximize decorMinimize decorClose decorMenu" >
16  <widget type="vlayout" name="dialogVLayout" flags="fillX fillY" >
17
18    <!-- wizard pages -->
19    <widget type="widgetStack" name="wiz_stack" flags="fillX fillY" >
20      <!-- intro page -->
21      <widget type="vlayout" flags="fillX fillY" >
22        <widget type="label" name="wiz_begin_label" flags="fillX fillY justifyLeft" />
23      </widget>
24
25      <!-- backend selection page -->
26      <widget type="vlayout" name="backendRadioWidget" flags="fillX fillY" >
27        <widget type="label" name="backendPageLabel" flags="fillX fillY justifyLeft" />
28        <!-- for each backend a radioButton will be added here programmatically -->
29      </widget>
30
31      <!-- for each backend a page will be added here programmatically -->
32
33    </widget>
34
35    <!-- wizard controls -->
36    <widget type="hLine" flags="fillX" />
37    <widget type="hlayout" flags="fillX equalWidth" >
38      <widget type="pushButton" text="Help"     name="wiz_help_button" />
39      <widget type="hspacer" flags="fillX" />
40      <widget type="pushButton" text="Previous" name="wiz_prev_button" />
41      <widget type="pushButton" text="Next"     name="wiz_next_button" flags="default" />
42      <widget type="pushButton" text="Abort"    name="wiz_abort_button" />
43    </widget>
44
45  </widget>
46
47</dialog>
48