You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
251 lines
8.2 KiB
251 lines
8.2 KiB
<!DOCTYPE UI><UI version="3.0" stdsetdef="1">
|
|
<class>DocBook_Table</class>
|
|
<comment>Cria uma tabela em um documento docbook</comment>
|
|
<author>Huberto Gastal Mayer</author>
|
|
<widget class="Dialog">
|
|
<property name="name">
|
|
<cstring>Form1</cstring>
|
|
</property>
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>0</x>
|
|
<y>0</y>
|
|
<width>266</width>
|
|
<height>401</height>
|
|
</rect>
|
|
</property>
|
|
<property name="caption">
|
|
<string>Docbook Table</string>
|
|
</property>
|
|
<grid>
|
|
<property name="name">
|
|
<cstring>unnamed</cstring>
|
|
</property>
|
|
<property name="margin">
|
|
<number>11</number>
|
|
</property>
|
|
<property name="spacing">
|
|
<number>6</number>
|
|
</property>
|
|
<widget class=TQLABEL_OBJECT_NAME_STRING row="0" column="0" rowspan="1" colspan="2">
|
|
<property name="name">
|
|
<cstring>TextLabel1_2</cstring>
|
|
</property>
|
|
<property name="font">
|
|
<font>
|
|
<pointsize>15</pointsize>
|
|
<bold>1</bold>
|
|
</font>
|
|
</property>
|
|
<property name="text">
|
|
<string>DocBook Table</string>
|
|
</property>
|
|
<property name="alignment">
|
|
<set>AlignCenter</set>
|
|
</property>
|
|
</widget>
|
|
<widget class="GroupBox" row="1" column="0" rowspan="1" colspan="2">
|
|
<property name="name">
|
|
<cstring>GroupBox1</cstring>
|
|
</property>
|
|
<property name="title">
|
|
<string></string>
|
|
</property>
|
|
<property name="associations" stdset="0">
|
|
<stringlist>
|
|
<string>echo '<table id="@le_id">'
|
|
echo ' <title>@te_descr</title>'
|
|
echo ' <tgroup cols="">'
|
|
|
|
@cb_title
|
|
|
|
echo ' <tbody>'
|
|
@sb_lin
|
|
echo ' </tbody>'
|
|
|
|
echo ' </tgroup>'
|
|
echo '</table>'
|
|
|
|
|
|
</string>
|
|
</stringlist>
|
|
</property>
|
|
<grid>
|
|
<property name="name">
|
|
<cstring>unnamed</cstring>
|
|
</property>
|
|
<property name="margin">
|
|
<number>11</number>
|
|
</property>
|
|
<property name="spacing">
|
|
<number>6</number>
|
|
</property>
|
|
<widget class=TQLABEL_OBJECT_NAME_STRING row="3" column="0">
|
|
<property name="name">
|
|
<cstring>TextLabel4</cstring>
|
|
</property>
|
|
<property name="text">
|
|
<string>id:</string>
|
|
</property>
|
|
</widget>
|
|
<widget class="LineEdit" row="3" column="1" rowspan="1" colspan="2">
|
|
<property name="name">
|
|
<cstring>le_id</cstring>
|
|
</property>
|
|
<property name="associations" stdset="0">
|
|
<stringlist>
|
|
<string>@widgetText</string>
|
|
</stringlist>
|
|
</property>
|
|
</widget>
|
|
<widget class="TextEdit" row="5" column="0" rowspan="1" colspan="3">
|
|
<property name="name">
|
|
<cstring>te_descr</cstring>
|
|
</property>
|
|
<property name="associations" stdset="0">
|
|
<stringlist>
|
|
<string>@widgetText</string>
|
|
</stringlist>
|
|
</property>
|
|
</widget>
|
|
<widget class=TQLABEL_OBJECT_NAME_STRING row="4" column="0" rowspan="1" colspan="2">
|
|
<property name="name">
|
|
<cstring>TextLabel5</cstring>
|
|
</property>
|
|
<property name="text">
|
|
<string>Description:</string>
|
|
</property>
|
|
</widget>
|
|
<widget class=TQLABEL_OBJECT_NAME_STRING row="0" column="0" rowspan="1" colspan="2">
|
|
<property name="name">
|
|
<cstring>TextLabel1</cstring>
|
|
</property>
|
|
<property name="text">
|
|
<string>Columns</string>
|
|
</property>
|
|
</widget>
|
|
<widget class="SpinBoxInt" row="1" column="2">
|
|
<property name="name">
|
|
<cstring>sb_lin</cstring>
|
|
</property>
|
|
<property name="associations" stdset="0">
|
|
<stringlist>
|
|
<string>l=0
|
|
while [ $l -le @widgetText ]
|
|
do
|
|
|
|
echo ' <row>';
|
|
|
|
@sb_col
|
|
|
|
echo ' </row>';
|
|
|
|
l=$((l+1))
|
|
|
|
done
|
|
</string>
|
|
</stringlist>
|
|
</property>
|
|
</widget>
|
|
<widget class=TQLABEL_OBJECT_NAME_STRING row="1" column="0" rowspan="1" colspan="2">
|
|
<property name="name">
|
|
<cstring>TextLabel2</cstring>
|
|
</property>
|
|
<property name="text">
|
|
<string>Lines</string>
|
|
</property>
|
|
</widget>
|
|
<widget class="SpinBoxInt" row="0" column="2">
|
|
<property name="name">
|
|
<cstring>sb_col</cstring>
|
|
</property>
|
|
<property name="associations" stdset="0">
|
|
<stringlist>
|
|
<string>c=0
|
|
while [ $c -le @widgetText ]
|
|
do
|
|
|
|
echo " <entry></entry>"
|
|
|
|
c=$((c+1))
|
|
|
|
done
|
|
</string>
|
|
</stringlist>
|
|
</property>
|
|
</widget>
|
|
<widget class="CheckBox" row="2" column="0" rowspan="1" colspan="3">
|
|
<property name="name">
|
|
<cstring>cb_title</cstring>
|
|
</property>
|
|
<property name="text">
|
|
<string>&Include title line</string>
|
|
</property>
|
|
<property name="associations" stdset="0">
|
|
<stringlist>
|
|
<string></string>
|
|
<string></string>
|
|
<string>echo ' <thead>';
|
|
echo ' <row>';
|
|
|
|
@sb_col
|
|
|
|
echo ' </row>';
|
|
echo ' </thead>';</string>
|
|
</stringlist>
|
|
</property>
|
|
</widget>
|
|
</grid>
|
|
</widget>
|
|
<widget class="CloseButton" row="2" column="0">
|
|
<property name="name">
|
|
<cstring>CloseButton1</cstring>
|
|
</property>
|
|
<property name="text">
|
|
<string>&OK</string>
|
|
</property>
|
|
<property name="flat">
|
|
<bool>false</bool>
|
|
</property>
|
|
<property name="associations" stdset="0">
|
|
<stringlist>
|
|
<string>@GroupBox1</string>
|
|
</stringlist>
|
|
</property>
|
|
<property name="writeStdout">
|
|
<bool>true</bool>
|
|
</property>
|
|
</widget>
|
|
<widget class="CloseButton" row="2" column="1">
|
|
<property name="name">
|
|
<cstring>CloseButton1_2</cstring>
|
|
</property>
|
|
<property name="text">
|
|
<string>&Cancel</string>
|
|
</property>
|
|
<property name="flat">
|
|
<bool>false</bool>
|
|
</property>
|
|
<property name="associations" stdset="0">
|
|
<stringlist>
|
|
<string></string>
|
|
</stringlist>
|
|
</property>
|
|
<property name="writeStdout">
|
|
<bool>true</bool>
|
|
</property>
|
|
</widget>
|
|
</grid>
|
|
</widget>
|
|
<tabstops>
|
|
<tabstop>sb_col</tabstop>
|
|
<tabstop>sb_lin</tabstop>
|
|
<tabstop>cb_title</tabstop>
|
|
<tabstop>le_id</tabstop>
|
|
<tabstop>te_descr</tabstop>
|
|
<tabstop>CloseButton1</tabstop>
|
|
<tabstop>CloseButton1_2</tabstop>
|
|
</tabstops>
|
|
<layoutdefaults spacing="6" margin="11"/>
|
|
</UI>
|