oms.ui是通过Designer生成的,文件内容是一个近似于XML语法的文本文件。
其实准确地说,QT就是采用的XML语法来解析这些资源。内容如下:
<ui version="4.0" >
<author></author>
<comment></comment>
<exportmacro></exportmacro>
<class>Form</class>
<widget class="QWidget" name="Form" >
<property name="geometry" >
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>300</height>
</rect>
</property>
<property name="windowTitle" >
<string>Form</string>
</property>
<widget class="AnalogClock" name="analogClock" >
<property name="geometry" >
<rect>
<x>80</x>
<y>40</y>
<width>100</width>
<height>100</height>
</rect>
</property>
<property name="toolTip" >
<string>The current time</string>
</property>
<property name="whatsThis" >
<string>The analog clock widget displays the current time.</string>
</property>
</widget>
<widget class="AnalogClock" name="analogClock_2" >
<property name="geometry" >
<rect>
<x>230</x>
<y>160</y>
<width>100</width>
<height>100</height>
</rect>
</property>
<property name="toolTip" >
<string>The current time</string>
</property>
<property name="whatsThis" >
<string>The analog clock widget displays the current time.</string>
</property>
</widget>
</widget>
<pixmapfunction></pixmapfunction>
<customwidgets>
<customwidget>
<class>AnalogClock</class>
<extends></extends>
<header>analogclock.h</header>
<container>0</container>
<pixmap></pixmap>
</customwidget>
</customwidgets>
<resources/>
<connections/>
</ui>
====================================================================================
In file included from main.cpp:25:
oms.h:9:25: analogclock.h: No such file or directory
In file included from main.cpp:25:
oms.h:14: error: ISO C++ forbids declaration of `AnalogClock' with no type
oms.h:14: error: expected `;' before '*' token
oms.h:15: error: ISO C++ forbids declaration of `AnalogClock' with no type
oms.h:15: error: expected `;' before '*' token
oms.h: In member function `void Ui_Form::setupUi(QWidget*)':
oms.h:21: error: `analogClock' undeclared (first use this function)
oms.h:21: error: (Each undeclared identifier is reported only once for each func
tion it appears in.)
oms.h:21: error: `AnalogClock' has not been declared
oms.h:24: error: `analogClock_2' undeclared (first use this function)
oms.h:24: error: `AnalogClock' has not been declared
oms.h: In member function `void Ui_Form::retranslateUi(QWidget*)':
oms.h:35: error: `analogClock' undeclared (first use this function)
oms.h:37: error: `analogClock_2' undeclared (first use this function)
mingw32-make[1]: *** [release\main.o] Error 1
mingw32-make[1]: Leaving directory `K:/QTSDK/oms'
mingw32-make: *** [release] Error 2
====================================================================================
void retranslateUi(QWidget *Form)
{
Form->setWindowTitle(QApplication::translate("Form", "Form", 0, QApplication::UnicodeUTF);
analogClock->setToolTip(QApplication::translate("Form", "The current time", 0, QApplication::UnicodeUTF);
analogClock->setWhatsThis(QApplication::translate("Form", "The analog clock widget displays the current time.", 0, QApplication::UnicodeUTF);
analogClock_2->setToolTip(QApplication::translate("Form", "The current time", 0, QApplication::UnicodeUTF);
analogClock_2->setWhatsThis(QApplication::translate("Form", "The analog clock widget displays the current time.", 0, QApplication::UnicodeUTF);
Q_UNUSED(Form);
} // retranslateUi
};
namespace Ui {
class Form: public Ui_Form {};
} // namespace Ui