1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>FirstRun</class>
<widget class="QDialog" name="FirstRun">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>396</width>
<height>403</height>
</rect>
</property>
<property name="windowTitle">
<string>Welcome To RoboJournal</string>
</property>
<property name="windowIcon">
<iconset resource="images.qrc">
<normaloff>:/icons/robojournal-icon.png</normaloff>:/icons/robojournal-icon.png</iconset>
</property>
<widget class="QLabel" name="label">
<property name="geometry">
<rect>
<x>10</x>
<y>0</y>
<width>381</width>
<height>141</height>
</rect>
</property>
<property name="text">
<string/>
</property>
<property name="pixmap">
<pixmap resource="images.qrc">:/icons/robojournal.png</pixmap>
</property>
</widget>
<widget class="QDialogButtonBox" name="buttonBox">
<property name="geometry">
<rect>
<x>10</x>
<y>370</y>
<width>381</width>
<height>27</height>
</rect>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
</property>
</widget>
<widget class="QWidget" name="layoutWidget">
<property name="geometry">
<rect>
<x>10</x>
<y>143</y>
<width>381</width>
<height>211</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout" stretch="1,0,0,0">
<item>
<widget class="QLabel" name="label_2">
<property name="text">
<string>Welcome to RoboJournal. You are seeing this message because RoboJournal could not find a valid configuration file. (this is normal if you have never used RoboJournal on this computer before) Don't worry, you will be able to use RoboJournal right after you have made a few easy adjustments.
What do you want to do?
</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="Line" name="line">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item>
<widget class="QRadioButton" name="NewJournal">
<property name="text">
<string>Create a &new journal database</string>
</property>
</widget>
</item>
<item>
<widget class="QRadioButton" name="UseExisting">
<property name="text">
<string>&Connect to an existing journal database</string>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
<resources>
<include location="images.qrc"/>
</resources>
<connections/>
</ui>
|