天天看點

Qt界面元件Qtitan 系列 - 快速入門指南

主題描述了如何為正常 Qt 應用程式添加 Qtitan 元件。本主題中描述的步驟與所有 Qtitan 元件相關 - QtitanRibbon、QtitanChart、QtitanNavigation、QtitanDocking、QtitanDataGrid。

先決條件

要使用 Qtitan 元件,您需要:

  • 從這裡安裝 Qt https://www.evget.com/product/3579/download
  • MS Visual Studio 或 Qt-Creator

第一步:安裝Qtitan元件

  • 轉到頁面https://www.evget.com/productlist?kw=QTITAN
  • 下載下傳您使用的平台的安裝程式
  • 按照安裝程式向導的建議安裝它
  • 安裝過程結束後,你會在<QTITAN_INSTALL_PATH>/include檔案夾中找到頭檔案,在<QTITAN_INSTALL_PATH>/bin檔案夾中找到共享庫。

第 2 步:配置您的應用項目檔案 (*.pro)

将 Qtitan 元件頭檔案和庫添加到您的應用程式。為此,在您的應用程式項目檔案 (*.pro) 中包含特殊元件項目檔案 (*.pri):

include(<QTITAN_INSTALL_PATH>/src/shared/qtitan.pri) // To include all the qtitan components installed at <QTITAN_INSTALL_PATH>      

或按如下方式添加特定元件:

include(<QTITAN_INSTALL_PATH>/src/shared/qtitanribbon.pri) // QtitanRibbon  
include(<QTITAN_INSTALL_PATH>/src/shared/qtitandatagrid.pri) // QtitanDataGrid  
include(<QTITAN_INSTALL_PATH>/src/shared/qtitannavigation.pri) // QtitanNavigationDesignUI  
include(<QTITAN_INSTALL_PATH>/src/shared/qtitanchart.pri) // QtitanChart  
include(<QTITAN_INSTALL_PATH>/src/shared/qtitandocking.pri) // QtitanDocking      

如果 Qtitan 元件是靜态建構的,則在 include 行之前添加 CONFIG+=qtitan_staticlib:

CONFIG+=qtitan_staticlib  include(<QTITAN_INSTALL_PATH>/src/shared/qtitan.pri)      

第 3 步:重新配置您的應用程式

從應用程式的根目錄運作 qmake.exe。如果需要生成 Visual Studio 項目檔案,請在 qmake.exe 中添加“-tp vc”鍵

qmake.exe -tp vc -r // Will generate Visual Studio project and/or solution file.
      

從源代碼建構 Qtitan 元件

主題描述了如何從指令行建構 Qtitan 元件源到您的環境。

Windows Visual Studio

Open the bat shell. "Windows logo key" + R, cmd.exe  
Set current directory to the <QTITAN_INSTALL_PATH>.
 C:/>dir <QTITAN_INSTALL_PATH>  vcvars32.bat  
qmake.exe -r -platform win32-msvc  
nmake all      

Windows Visual Studio(靜态連結)

Open the bat shell. "Windows logo key" + R, cmd.exe  Set current directory to the <QTITAN_INSTALL_PATH>. 
C:/>dir <QTITAN_INSTALL_PATH>  
vcvars32.bat 
 qmake.exe -staticlib -r -platform win32-msvc 
 nmake all      

Windows Qt-Creator (mingw)

Open the bat shell. "Windows logo key" + R, cmd.exe  
Set current directory to the <QTITAN_INSTALL_PATH>. 
C:/>dir <QTITAN_INSTALL_PATH>  vcvars32.bat  
qmake.exe -r -platform win32-g++  mingw32-make all      

Windows Qt-Creator(mingw,靜态連結)

Open the bat shell. "Windows logo key" + R, cmd.exe  
Set current directory to the <QTITAN_INSTALL_PATH>. C:/>dir <QTITAN_INSTALL_PATH>  
vcvars32.bat  
qmake.exe -staticlib -r -platform win32-g++  mingw32-make all      

靜态連結

要使用靜态連結,請将 -staticlib 或 CONFIG+=qtitan_staticlib 鍵添加到 qmake.exe。

qmake.exe -staticlib -r -platform <platform>  or  qmake.exe CONFIG+=qtitan_staticlib -r -platform <platform      

忽略私有頭檔案

Qtitan Components 使用 Qt 私有頭檔案來實作一組不錯的功能。您可以忽略私有标頭以将開關鍵添加到指令行。在這種情況下,某些功能将丢失。僅當您了解自己在做什麼時才使用此标志。

如果您希望阻止使用私有标頭,則将 CONFIG+=qtitan_no_private 密鑰添加到 qmake.exe。

qmake.exe CONFIG+=qtitan_no_private -r -platform <platform>
      

================================================== ==

Qt技術交流交流群開通,QQ搜尋群号“765444821”或者掃描二維碼加入

繼續閱讀