求Qt Creator 界面的源代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求Qt Creator 界面的源代码相关的知识,希望对你有一定的参考价值。

参考技术A <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>516</width>
<height>330</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="QWidget" name="centralWidget">
<widget class="QPushButton" name="pushButton">
<property name="geometry">
<rect>
<x>90</x>
<y>40</y>
<width>111</width>
<height>51</height>
</rect>
</property>
<property name="text">
<string>PushButton</string>
</property>
</widget>
<widget class="QComboBox" name="comboBox">
<property name="geometry">
<rect>
<x>90</x>
<y>120</y>
<width>121</width>
<height>31</height>
</rect>
</property>
</widget>
<widget class="QLineEdit" name="lineEdit">
<property name="geometry">
<rect>
<x>90</x>
<y>180</y>
<width>101</width>
<height>27</height>
</rect>
</property>
</widget>
</widget>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>516</width>
<height>23</height>
</rect>
</property>
</widget>
<widget class="QToolBar" name="mainToolBar">
<attribute name="toolBarArea">
<enum>TopToolBarArea</enum>
</attribute>
<attribute name="toolBarBreak">
<bool>false</bool>
</attribute>
</widget>
<widget class="QStatusBar" name="statusBar"/>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources/>
<connections/>
</ui>
参考技术B 没看懂你想要什么,你是想自己写一个类似于Qt Creator的IDE?

[Qt Creator 快速入门] 第8章 界面外观

??一个完善的应用程序不仅应该有实用的功能,还要有一个漂亮的外观,这样才能使应用程序更加友好,更加吸引用户。作为一个跨平台的UI开发框架,Qt提供了强大而灵活的界面外观设计机制。这一章将学习在Qt中设计应用程序外观的相关知识,会对Qt 风格QStyle和调色板QPalette进行简单介绍,然后再对Qt样式表(Qt Style Sheets)进行重点讲解,最后还会涉及了不规则窗体和透明窗体的实现方法。

8.1 Qt风格

??Qt中的各种风格是一组继承自QStyle的类。QStyle类是一个抽象基类,封装了 一个GUI的外观,Qt的内建(built-in)部件使用它来执行几乎所有的绘制工作,以确保它们看起来可以像各个平台上的本地部件一样。一些风格已经内置在了Qt中,例如Winders风格和Motif风格;而有些风格只在特定的平台上才有效,例如Windows XP风格、Windows Vista风格和Mac OS X风格。Qt提供的风格类如表8 - 1所列。
|类名| 介绍|
|QCDEStyle| CDE(Common Desktop Environment)风格|
|QCleanlooksStyle| 类似于GNOME中的Clearlook风格|
|QGtkStyle| GTK +风格|
|QMotifStyle| Motif风格|
|QMacStyle| Mac OS X风格|
|QPlastiqueStylc| 类似于KDE中的Plastik风格|
|QWindowsStyle| 微软Windows风格|
|QWindowsVistaStyle| 微软Windows Vista风格|
|QWinclowsXPStyle| 微软Windows XP风格|

以上是关于求Qt Creator 界面的源代码的主要内容,如果未能解决你的问题,请参考以下文章

qt creator和qt的区别

qt creator 中 ui文件 怎么用编译界面修改?

Qt Creator中,代码中用到一个宏定义,如何跳到该宏的定义的地方呢?

QT Creator里printf函数输出到“应用程序输出”界面?

Qt Creator 使用技巧

Qt creator运行出现moc文件错误求大神解答