diff options
Diffstat (limited to 'languages/php/phpnewclassdlgbase.ui')
-rw-r--r-- | languages/php/phpnewclassdlgbase.ui | 201 |
1 files changed, 201 insertions, 0 deletions
diff --git a/languages/php/phpnewclassdlgbase.ui b/languages/php/phpnewclassdlgbase.ui new file mode 100644 index 00000000..5b4df7c1 --- /dev/null +++ b/languages/php/phpnewclassdlgbase.ui @@ -0,0 +1,201 @@ +<!DOCTYPE UI><UI version="3.1" stdsetdef="1"> +<class>PHPNewClassDlgBase</class> +<widget class="QDialog"> + <property name="name"> + <cstring>m_ClassDLG</cstring> + </property> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>439</width> + <height>386</height> + </rect> + </property> + <property name="caption"> + <string>New Class</string> + </property> + <grid> + <property name="name"> + <cstring>unnamed</cstring> + </property> + <widget class="QLabel" row="0" column="0"> + <property name="name"> + <cstring>TextLabel1</cstring> + </property> + <property name="text"> + <string>Class &name:</string> + </property> + <property name="buddy" stdset="0"> + <cstring>m_classNameEdit</cstring> + </property> + </widget> + <spacer row="5" column="0" rowspan="1" colspan="3"> + <property name="name"> + <cstring>Spacer1</cstring> + </property> + <property name="orientation"> + <enum>Horizontal</enum> + </property> + <property name="sizeType"> + <enum>Expanding</enum> + </property> + <property name="sizeHint"> + <size> + <width>20</width> + <height>20</height> + </size> + </property> + </spacer> + <widget class="QPushButton" row="5" column="3" rowspan="1" colspan="2"> + <property name="name"> + <cstring>m_okButton</cstring> + </property> + <property name="text"> + <string>&OK</string> + </property> + <property name="default"> + <bool>true</bool> + </property> + </widget> + <widget class="QPushButton" row="5" column="5" rowspan="1" colspan="2"> + <property name="name"> + <cstring>m_cancelButton</cstring> + </property> + <property name="text"> + <string>&Cancel</string> + </property> + </widget> + <widget class="KLineEdit" row="0" column="4" rowspan="1" colspan="3"> + <property name="name"> + <cstring>m_baseClassEdit</cstring> + </property> + </widget> + <widget class="KLineEdit" row="0" column="1"> + <property name="name"> + <cstring>m_classNameEdit</cstring> + </property> + </widget> + <widget class="QLabel" row="0" column="2" rowspan="1" colspan="2"> + <property name="name"> + <cstring>TextLabel2</cstring> + </property> + <property name="text"> + <string>&Base class:</string> + </property> + <property name="buddy" stdset="0"> + <cstring>m_baseClassEdit</cstring> + </property> + </widget> + <widget class="QLabel" row="3" column="0" rowspan="1" colspan="3"> + <property name="name"> + <cstring>TextLabel4</cstring> + </property> + <property name="text"> + <string>Class &template:</string> + </property> + <property name="buddy" stdset="0"> + <cstring>m_classTemplate</cstring> + </property> + </widget> + <widget class="QLabel" row="2" column="0"> + <property name="name"> + <cstring>TextLabel1_2</cstring> + </property> + <property name="text"> + <string>&Directory:</string> + </property> + <property name="buddy" stdset="0"> + <cstring>m_dirEdit</cstring> + </property> + </widget> + <widget class="QLabel" row="1" column="0"> + <property name="name"> + <cstring>TextLabel3</cstring> + </property> + <property name="text"> + <string>&File name:</string> + </property> + <property name="buddy" stdset="0"> + <cstring>m_fileNameEdit</cstring> + </property> + </widget> + <widget class="QToolButton" row="2" column="6"> + <property name="name"> + <cstring>m_dirButton</cstring> + </property> + <property name="focusPolicy"> + <enum>TabFocus</enum> + </property> + <property name="text"> + <string>...</string> + </property> + </widget> + <widget class="KLineEdit" row="1" column="1"> + <property name="name"> + <cstring>m_fileNameEdit</cstring> + </property> + </widget> + <widget class="KLineEdit" row="2" column="1" rowspan="1" colspan="5"> + <property name="name"> + <cstring>m_dirEdit</cstring> + </property> + </widget> + <widget class="QTextEdit" row="4" column="0" rowspan="1" colspan="7"> + <property name="name"> + <cstring>m_classTemplate</cstring> + </property> + <property name="text"> + <string><?php +if (!defined("FILENAME")){ +define("FILENAME",0); +/* +* @author AUTHOR +*/ + +class CLASSNAME extends BASECLASS { + //constructor + function CLASSNAME(){ + BASECLASS::BASECLASS(); + } + } +} +?></string> + </property> + </widget> + </grid> +</widget> +<connections> + <connection> + <sender>m_okButton</sender> + <signal>clicked()</signal> + <receiver>m_ClassDLG</receiver> + <slot>accept()</slot> + </connection> + <connection> + <sender>m_cancelButton</sender> + <signal>clicked()</signal> + <receiver>m_ClassDLG</receiver> + <slot>reject()</slot> + </connection> +</connections> +<tabstops> + <tabstop>m_classNameEdit</tabstop> + <tabstop>m_baseClassEdit</tabstop> + <tabstop>m_fileNameEdit</tabstop> + <tabstop>m_dirEdit</tabstop> + <tabstop>m_dirButton</tabstop> + <tabstop>m_classTemplate</tabstop> + <tabstop>m_okButton</tabstop> + <tabstop>m_cancelButton</tabstop> +</tabstops> +<includes> + <include location="global" impldecl="in declaration">klineedit.h</include> + <include location="global" impldecl="in implementation">kdialog.h</include> +</includes> +<layoutdefaults spacing="6" margin="11"/> +<layoutfunctions spacing="KDialog::spacingHint" margin="KDialog::marginHint"/> +<includehints> + <includehint>klineedit.h</includehint> +</includehints> +</UI> |