本文為原創,如需轉載,請注明作者和出處,謝謝!
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="ProgId" content="Word.Document"> <meta name="Generator" content="Microsoft Word 11"> <meta name="Originator" content="Microsoft Word 11"> <link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtml1%5C01%5Cclip_filelist.xml"> <!--[if gte mso 9]><xml> Normal 0 7.8 磅 0 2 false false false MicrosoftInternetExplorer4 </xml><![endif]--><!--[if gte mso 9]><![endif]--><style> <!-- /* Font Definitions */ @font-face {font-family:宋體; panose-1:2 1 6 0 3 1 1 1 1 1;} @font-face {font-family:""@宋體"; panose-1:2 1 6 0 3 1 1 1 1 1;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; text-align:justify; text-justify:inter-ideograph; font-size:10.5pt; font-family:"Times New Roman";} /* Page Definitions */ @page {} @page Section1 {size:612.0pt 792.0pt; margin:72.0pt 90.0pt 72.0pt 90.0pt;} div.Section1 {page:Section1;} --> </style> <!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable { mso-style-parent:""; font-size:10.0pt; font-family:"Times New Roman"; mso-fareast-font-family:"Times New Roman";} </style> <![endif]-->
本文闡述了
wxWidgets
的由來,以及從
wxWidgets
的特點出發,說明了選擇
wxWidgets
給我們帶來的好處,并且通過一個典型的例子討論了如何在
C++
中使用
wxWidgets
開發跨平臺的軟件。
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="ProgId" content="Word.Document"><meta name="Generator" content="Microsoft Word 11"><meta name="Originator" content="Microsoft Word 11"><link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtml1%5C01%5Cclip_filelist.xml"><!--[if gte mso 9]><xml> Normal 0 7.8 磅 0 2 false false false MicrosoftInternetExplorer4 </xml><![endif]--><!--[if gte mso 9]><![endif]--><style> <!-- /* Font Definitions */ @font-face {font-family:宋體; panose-1:2 1 6 0 3 1 1 1 1 1;} @font-face {font-family:""@宋體"; panose-1:2 1 6 0 3 1 1 1 1 1;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; text-align:justify; text-justify:inter-ideograph; font-size:10.5pt; font-family:"Times New Roman";} /* Page Definitions */ @page {} @page Section1 {size:612.0pt 792.0pt; margin:72.0pt 90.0pt 72.0pt 90.0pt;} div.Section1 {page:Section1;} /* List Definitions */ @list l0 {} @list l0:level1 { margin-left:39.0pt; text-indent:-18.0pt;} ol {margin-bottom:0cm;} ul {margin-bottom:0cm;} --> </style><!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable { mso-style-parent:""; font-size:10.0pt; font-family:"Times New Roman";} </style> <![endif]-->
什么是
wxWidgets
?
wxWidgets
是一個跨平臺的軟件開發包。它誕生于
1992
年,最初的名子是
wxWindows
,但由于
Microsoft
的抗議,在
2004
年改名為
wxWidgets
。它最初是被設計成跨平臺的
GUI
軟件開發包,但后來隨著越來越多的人參與進來,為
wxWidgets
加入了許多非
GUI
的功能,如多線程
(MultiThread)
、網絡
(Network)
等。并且從最初的只支持
C++
語言,逐漸發展成為支持數種語言(如
Python
、
Perl
、
C#
、
Basic
等)。因此,現在的
wxWidgets
已經不再是單純的跨平臺的
GUI
軟件開發包,而是一個可以支持多種操作系統平臺的能夠在多種語言中使用的通用跨平臺軟件開發包。
由于
wxWidgets
最開始是為
C++
而設計的,因此,本文主要討論了
wxWidgets
在
C++
中的使用。
為什么選擇
wxWidgets
?
目前支持
C++
的軟件開發包非常多,比較有名的除了
wxWidgets
外,還有一些其它的軟件開發包,如
MFC
、
QT
、
ACE
等。即然有這么多開發包,那么我們為什么要使用
wxWidgets
呢?在給出答案之前,讓我們首先來看一看上述的三種軟件開發包的特性。
1.
MFC
MFC
是
Microsoft
提供的軟件開發包。
MFC
雖然十分強大,但它只能運行在
Windows
下運行。而且它是收費的。
2. QT
QT
是由
Trolltech
公司開發的一套跨平臺軟件開發包。它和
wxWidgets
類似,但是
QT
只在
linux
下免費,而在
Windows
或
Unix
下使用
QT
要向
Trolltech
公司支付版權費。
3. ACE
ACE
雖然是免費開源的,但是它沒有提供
GUI
功能。
從以上三個軟件開發包可以看出,它們雖然有各自的優勢,但是它們或多或少地都會使開發受到限制。而使用wxWidgets將不會有以上所述的問題。wxWidgets和MFC、QT、
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="ProgId" content="Word.Document"><meta name="Generator" content="Microsoft Word 11"><meta name="Originator" content="Microsoft Word 11"><link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtml1%5C01%5Cclip_filelist.xml"><!--[if gte mso 9]><xml> Normal 0 7.8 磅 0 2 false false false MicrosoftInternetExplorer4 </xml><![endif]--><!--[if gte mso 9]><![endif]--><style> <!-- /* Font Definitions */ @font-face {font-family:宋體; panose-1:2 1 6 0 3 1 1 1 1 1;} @font-face {font-family:""@宋體"; panose-1:2 1 6 0 3 1 1 1 1 1;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; text-align:justify; text-justify:inter-ideograph; font-size:10.5pt; font-family:"Times New Roman";} /* Page Definitions */ @page {} @page Section1 {size:612.0pt 792.0pt; margin:72.0pt 90.0pt 72.0pt 90.0pt;} div.Section1 {page:Section1;} --> </style><!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable { mso-style-parent:""; font-size:10.0pt; font-family:"Times New Roman";} </style> <![endif]-->ACE的特性對比如表1所示。
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="ProgId" content="Word.Document"> <meta name="Generator" content="Microsoft Word 11"> <meta name="Originator" content="Microsoft Word 11"> <link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtml1%5C01%5Cclip_filelist.xml"> <!--[if gte mso 9]><xml> Normal 0 7.8 磅 0 2 false false false MicrosoftInternetExplorer4 </xml><![endif]--><!--[if gte mso 9]><![endif]--><style> <!-- /* Font Definitions */ @font-face {font-family:Wingdings; panose-1:5 0 0 0 0 0 0 0 0 0;} @font-face {font-family:宋體; panose-1:2 1 6 0 3 1 1 1 1 1;} @font-face {font-family:黑體; panose-1:2 1 6 0 3 1 1 1 1 1;} @font-face {font-family:""@宋體"; panose-1:2 1 6 0 3 1 1 1 1 1;} @font-face {font-family:""@黑體"; panose-1:2 1 6 0 3 1 1 1 1 1;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; text-align:justify; text-justify:inter-ideograph; font-size:10.5pt; font-family:"Times New Roman";} /* Page Definitions */ @page {} @page Section1 {size:612.0pt 792.0pt; margin:72.0pt 90.0pt 72.0pt 90.0pt;} div.Section1 {page:Section1;} /* List Definitions */ @list l0 {} @list l0:level1 { margin-left:42.0pt; text-indent:-21.0pt; font-family:Wingdings;} ol {margin-bottom:0cm;} ul {margin-bottom:0cm;} --> </style> <!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable { mso-style-parent:""; font-size:10.0pt; font-family:"Times New Roman";} </style> <![endif]-->
表1: wxWidgets和MFC、QT、ACE的特性對比表
注:其中免費中的“是
/
否”代表
QT
在
linux
平臺上的
Free Edition
是免費的,而在
windows
和
unix
下使用
QT
是收費的。而開源中的“是
/
否”代表
QT
有一個基于
GPL
的開源版本,但要進行商業開發,需要使用它的商業版本。
使用
wxWidgets
編寫程序
學習一種編程語言的最好方法就是用它去編寫程序,學習
wxWidgets
也不例外。由于
wxWidgets
的主要功能是實現跨平臺的
GUI
,因此,本文主要從
GUI
入手,討論
wxWidgets
在
C++
中如何編寫跨平臺的應用程序
1. 應用程序類的建立
使用
wxWidgets
建立系統需要一個類來描述整個應用程序。這個類必須從
wxApp
類繼承。
<!--<br /> <br /> Code highlighting produced by Actipro CodeHighlighter (freeware)<br /> http://www.CodeHighlighter.com/<br /> <br /> -->
class
MyApp:
public
wxApp
//
應用程序類
{
public
:
virtual
bool
OnInit();
//
在應用程序啟動時調用,如果返回false,退出應用程序
};
這個類只覆蓋了
wxApp
的一個虛方法
OnInit
。可以用這個方法在程序啟動時做一些驗證,如果驗證失敗,可以通過返回
false
退出應用程序。當然,由于這個函數是應用程序的入口點,所以建立主窗體的工作要在這個函數中完成。
2.
建立窗體類
wxWidgets
中關于窗體的類很多,如果要建立一般窗體的話,可以從
wxFrame
繼承。
<!--<br /> <br /> Code highlighting produced by Actipro CodeHighlighter (freeware)<br /> http://www.CodeHighlighter.com/<br /> <br /> -->
class
MyFrame:
public
wxFrame
//
窗體類
{
public
:
MyFrame(
const
wxString
&
title);
//
窗體的構造函數
};
3.
向窗體中加入控件
在本文中向這個窗體加入了一個菜單條
(Menu Bar)
、一個狀態條、一個
Panel
和一個按鈕。一般我們會在主窗體的構造函數中加入這些控件。
<!--<br /> <br /> Code highlighting produced by Actipro CodeHighlighter (freeware)<br /> http://www.CodeHighlighter.com/<br /> <br /> -->
MyFrame::MyFrame(
const
wxString
&
title):wxFrame(NULL,wxID_ANY,title)
{
wxMenu
*
fileMenu
=
new
wxMenu;
//
建立“文件”菜單
wxMenu
*
helpMenu
=
new
wxMenu;
//
建立“幫助”菜單
//
向菜單中添加子項
helpMenu
->
Append(wxID_ABOUT,_T(
"
關于
\tF1
"
),_T(
"
顯示關于對話框
"
));
fileMenu
->
Append(wxID_EXIT,_T(
"
退出\tAlt-X
"
),_T(
"
退出應用程序
"
));
wxMenuBar
*
menuBar
=
new
wxMenuBar();
//
建立一個菜單條
menuBar
->
Append(fileMenu,_T(
"
文件
"
));
//
將“文件”菜單加入到菜單條
menuBar
->
Append(helpMenu,_T(
"
幫助
"
));
//
將“幫助”菜單加入到菜單條
SetMenuBar(menuBar);
//
將菜單條放到窗體上
wxPanel
*
panel
=
new
wxPanel(
this
);
//
建立一個Panel
wxButton
*
button
=
new
wxButton(panel,wxID_ABOUT,
"
關于
"
,wxPoint(
20
,
20
), wxSize(
50
,
30
));
//
建立一個Button
CreateStatusBar(
2
);
//
建立一個兩欄的狀態欄
SetStatusText(_T(
"
歡迎使用wxWidgets!
"
));
//
設置狀態欄的文本
在數組
sample_xpm
中描述了
sample.ico
的屬性和圖標本身。如
X
代表紅色;
o
代表黃色等。然后在源程序中通過
include “sample.xpm”
引用這個資源文件。要想從這個資源文件中裝載圖標。可使用
SetIcon(wxICON(sample)); wxICON
讀取資源文件,而
SetIcon
將這個圖標設置為
frame
的標題欄圖標。要想將
ico
文件轉換為這種資源文件,可使用一個免費軟件
XnView
進行轉換。
5.
顯示主窗體
顯示主窗體非常簡單,只需要將上面建立的
MyFrame
類實例化,并調用
wxFrame
的
Show
方法顯示即可。這些代碼可以寫在
MyApp
類的
OnInit
方法中。
<!--<br /> <br /> Code highlighting produced by Actipro CodeHighlighter (freeware)<br /> http://www.CodeHighlighter.com/<br /> <br /> -->
bool
MyApp::OnInit()
{
//
建立MyFrame類的實例
MyFrame
*
frame
=
new
MyFrame(_T(
"
第一個wxWidgets程序
"
));
frame
->
Show(
true
);
//
顯示主窗體
return
true
;
//
必須返回true,否則應用程序將退出
}
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="ProgId" content="Word.Document"><meta name="Generator" content="Microsoft Word 11"><meta name="Originator" content="Microsoft Word 11"><link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtml1%5C01%5Cclip_filelist.xml"><!--[if gte mso 9]><xml> Normal 0 7.8 磅 0 2 false false false MicrosoftInternetExplorer4 </xml><![endif]--><!--[if gte mso 9]><![endif]--><style> <!-- /* Font Definitions */ @font-face {font-family:Wingdings; panose-1:5 0 0 0 0 0 0 0 0 0;} @font-face {font-family:宋體; panose-1:2 1 6 0 3 1 1 1 1 1;} @font-face {font-family:""@宋體"; panose-1:2 1 6 0 3 1 1 1 1 1;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; text-align:justify; text-justify:inter-ideograph; font-size:10.5pt; font-family:"Times New Roman";} /* Page Definitions */ @page {} @page Section1 {size:612.0pt 792.0pt; margin:72.0pt 90.0pt 72.0pt 90.0pt;} div.Section1 {page:Section1;} /* List Definitions */ @list l0 {} @list l0:level1 { margin-left:42.0pt; text-indent:-21.0pt; font-family:Wingdings;} @list l1 {} @list l1:level1 { margin-left:42.0pt; text-indent:-21.0pt; font-family:Wingdings;} ol {margin-bottom:0cm;} ul {margin-bottom:0cm;} --> </style><!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable { mso-style-parent:""; font-size:10.0pt; font-family:"Times New Roman";} </style> <![endif]-->
在以上代碼中
Show
方法有一個參數,如果為
true
,則以模式窗口的形式顯示,否則以非模式窗口的形式顯示。
6.
向窗體中加入事件
到目前為止,這個程序的界面已經完成了,但還未響應任何事件,下面就詳細闡述如何向這個應用程序中加入事件代碼。
對于事件來說,一般都會由兩部分組成。
(1)
調用事件部分
當程序發生某個動作時,如點擊按鈕;選中某個控件,可能需要執行一段代碼。而這段代碼一般是由系統負責調用的,也就是說系統通過事件函數指針調用相應的代碼。
(2)
事件函數本身
事件函數與普通函數一樣,只不過它是在發生了事件之后,由系統調用的。
在
wxWidgets
中是通過事件哈希表
(Event Hash Table)
來進行事件處理的,即將相應的事件函數指針保存在一個哈希表中,然后當事件發生時,從這個哈希表中找到相應的事件函數指針,然后通過函數指針調用函數。在使用事件哈希表之前,必須定義它。由于定義哈希表非常復雜,而且每個需要處理事件的類都需要同樣的代碼,因此,
wxWidgets
為此定義了一個宏
DECLARE_EVENT_TABLE()
來定義哈希表。可將這個宏寫在
MyFrame
類的任何位置。它相當于將以下語句放到了
MyFrame
類中。
<!--<br /> <br /> Code highlighting produced by Actipro CodeHighlighter (freeware)<br /> http://www.CodeHighlighter.com/<br /> <br /> -->
private
:
static
const
wxEventTableEntrysm_eventTableEntries[];
protected
:
static
const
wxEventTablesm_eventTable;
virtual
const
wxEventTable
*
GetEventTable()
const
;
static
wxEventHashTablesm_eventHashTable;
virtual
wxEventHashTable
&
GetEventHashTable()
const
;
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="ProgId" content="Word.Document"><meta name="Generator" content="Microsoft Word 11"><meta name="Originator" content="Microsoft Word 11"><link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtml1%5C01%5Cclip_filelist.xml"><!--[if gte mso 9]><xml> Normal 0 7.8 磅 0 2 false false false MicrosoftInternetExplorer4 </xml><![endif]--><!--[if gte mso 9]><![endif]--><style> <!-- /* Font Definitions */ @font-face {font-family:宋體; panose-1:2 1 6 0 3 1 1 1 1 1;} @font-face {font-family:""@宋體"; panose-1:2 1 6 0 3 1 1 1 1 1;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; text-align:justify; text-justify:inter-ideograph; font-size:10.5pt; font-family:"Times New Roman";} /* Page Definitions */ @page {} @page Section1 {size:612.0pt 792.0pt; margin:72.0pt 90.0pt 72.0pt 90.0pt;} div.Section1 {page:Section1;} --> </style><!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable { mso-style-parent:""; font-size:10.0pt; font-family:"Times New Roman";} </style> <![endif]-->
其中靜態數組變量
sm_eventTableEntries
保存了
MyFrame
類中的所有的事件信息。
上面的代碼聲明了處理事件哈希表的一些方法,即然聲明了,就得實現。由于實現代碼也都一樣,因此,
wxWidgets
也為實現這些方法定義了一組宏。實現這些方法的宏如下所示。
<!--<br /> <br /> Code highlighting produced by Actipro CodeHighlighter (freeware)<br /> http://www.CodeHighlighter.com/<br /> <br /> -->
BEGIN_EVENT_TABLE(MyFrame,wxFrame)
EVT_MENU(wxID_EXIT,MyFrame::OnQuit)
EVT_MENU(wxID_ABOUT,MyFrame::OnAbout)
EVT_BUTTON(wxID_ABOUT,MyFrame::OnAbout)
END_EVENT_TABLE()
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="ProgId" content="Word.Document"><meta name="Generator" content="Microsoft Word 11"><meta name="Originator" content="Microsoft Word 11"><link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtml1%5C01%5Cclip_filelist.xml"><!--[if gte mso 9]><xml> Normal 0 7.8 磅 0 2 false false false MicrosoftInternetExplorer4 </xml><![endif]--><!--[if gte mso 9]><![endif]--><style> <!-- /* Font Definitions */ @font-face {font-family:宋體; panose-1:2 1 6 0 3 1 1 1 1 1;} @font-face {font-family:""@宋體"; panose-1:2 1 6 0 3 1 1 1 1 1;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; text-align:justify; text-justify:inter-ideograph; font-size:10.5pt; font-family:"Times New Roman";} /* Page Definitions */ @page {} @page Section1 {size:612.0pt 792.0pt; margin:72.0pt 90.0pt 72.0pt 90.0pt;} div.Section1 {page:Section1;} --> </style><!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable { mso-style-parent:""; font-size:10.0pt; font-family:"Times New Roman";} </style> <![endif]-->
其中
BEGIN_EVENT_TABLE(…)
實現了上面定義的方法,以及初始化了靜態變量
sm_eventTable
。后面兩個
EVT_MENU
和一個
EVT_BUTTON
宏初始化了靜態變量
sm_eventTableEntries
,即將這兩個事件函數的指針
(button
和
about
菜單使用一個事件函數
OnAbout)
和控件
ID
保存在
sm_eventTableEntries
中,最后的
END_EVENT_TABLE()
宏做為一個空的事件函數指針賦給了
sm_eventTableEntries
,這有些象
C
語言中處理字符串,將最后一個字符賦為
’"0’
,這樣就可以知道哪是結尾了。
向窗體中加入事件的最后一步是聲明和實現事件函數。在本例中聲明了兩個事件函數。
<!--<br /> <br /> Code highlighting produced by Actipro CodeHighlighter (freeware)<br /> http://www.CodeHighlighter.com/<br /> <br /> -->
void
OnQuit(wxCommandEvent
&
event
);
void
OnAbout(wxCommandEvent
&
event
);
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="ProgId" content="Word.Document"><meta name="Generator" content="Microsoft Word 11"><meta name="Originator" content="Microsoft Word 11"><!--[if gte mso 9]><xml> Normal 0 7.8 磅 0 2 false false false MicrosoftInternetExplorer4 </xml><![endif]--><!--[if gte mso 9]><![endif]--><style> <!-- /* Font Definitions */ @font-face {font-family:宋體; panose-1:2 1 6 0 3 1 1 1 1 1;} @font-face {font-family:""@宋體"; panose-1:2 1 6 0 3 1 1 1 1 1;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; text-align:justify; text-justify:inter-ideograph; font-size:10.5pt; font-family:"Times New Roman";} /* Page Definitions */ @page {} @page Section1 {size:612.0pt 792.0pt; margin:72.0pt 90.0pt 72.0pt 90.0pt;} div.Section1 {page:Section1;} --> </style><!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable { mso-style-parent:""; font-size:10.0pt; font-family:"Times New Roman";} </style> <![endif]-->
可以將這兩個函數聲明放到
MyFrame
中的任何位置。下面是它們的實現代碼。
<!--<br /> <br /> Code highlighting produced by Actipro CodeHighlighter (freeware)<br /> http://www.CodeHighlighter.com/<br /> <br /> -->
void
MyFrame::OnQuit(wxCommandEvent
&
WXUNUSED(
event
))
{
Close(
true
);
}
void
MyFrame::OnAbout(wxCommandEvent
&
WXUNUSED(
event
))
{
wxStringmsg;
msg.Printf(_T(
"
這是一個關于對話框的例子.\n
"
)
_T(
"
歡迎使用%s
"
),wxVERSION_STRING);
wxMessageBox(msg,_T(
"
1關于
"
),wxOK
|
wxICON_INFORMATION,
this
);
}
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="ProgId" content="Word.Document"><meta name="Generator" content="Microsoft Word 11"><meta name="Originator" content="Microsoft Word 11"><!--[if gte mso 9]><xml> Normal 0 7.8 磅 0 2 false false false MicrosoftInternetExplorer4 </xml><![endif]--><!--[if gte mso 9]><![endif]--><style> <!-- /* Font Definitions */ @font-face {font-family:Wingdings; panose-1:5 0 0 0 0 0 0 0 0 0;} @font-face {font-family:宋體; panose-1:2 1 6 0 3 1 1 1 1 1;} @font-face {font-family:""@宋體"; panose-1:2 1 6 0 3 1 1 1 1 1;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; text-align:justify; text-justify:inter-ideograph; font-size:10.5pt; font-family:"Times New Roman";} /* Page Definitions */ @page {} @page Section1 {size:612.0pt 792.0pt; margin:72.0pt 90.0pt 72.0pt 90.0pt;} div.Section1 {page:Section1;} /* List Definitions */ @list l0 {} @list l0:level1 { margin-left:42.0pt; text-indent:-21.0pt; font-family:Wingdings;} ol {margin-bottom:0cm;} ul {margin-bottom:0cm;} --> </style><!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable { mso-style-parent:""; font-size:10.0pt; font-family:"Times New Roman";} </style> <![endif]-->
其中
OnQuit
函數調用
Close(true)
關閉
MyFrame
,由于
MyFrame
是主窗體,因此,在
MyFrame
關閉后,應用程序也隨之關閉了。
OnAbout
使用
wxMessageBox
函數彈出一個信息對話框。
7.
運行程序
到目前為止,這個程序的代碼已經基本完成了,但是在前面曾說過,
MyApp
中的
OnInit
方法在應用程序啟動時執行,那么是誰調用了
OnInit
方法呢?答案當然是
wxWidgets
。
wxWidgets
為了調用這個方法,提供了一個宏
IMPLEMENT_APP(…)
,這個宏有一個參數,需要將
MyApp
做為參數傳入。即
IMPLEMENT_APP(MyApp)
。這個宏相當于一個
WinMain
函數(和控制臺程序的
main
函數類似),即在
WinMain
函數中調用了
MyApp
中的
OnInit
函數。在加入這個宏后,就可使用一個
C++
編譯器將以上的源程序編譯生成
exe
文件了。應用程序的界面如圖
1
、圖
2
所示。
圖1 Windows下的程序界面
圖2 Linux下的程序界面
<meta name="ProgId" content="Word.Document"><meta name="Generator" content="Microsoft Word 11"><meta name="Originator" content="Microsoft Word 11"><link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CADMINI%7E1%5CLOCALS%7E1%5CTemp%5Cmsohtml1%5C02%5Cclip_filelist.xml"><!--[if gte mso 9]><xml> Normal 0 7.8 磅 0 2 false false false MicrosoftInternetExplorer4 </xml><![endif]--><!--[if gte mso 9]><![endif]--><!--[if !mso]> <style> st1":*{behavior:url(#ieooui) } </style> <![endif]--><style> <!-- /* Font Definitions */ @font-face {font-family:宋體; panose-1:2 1 6 0 3 1 1 1 1 1;} @font-face {font-family:""@宋體"; panose-1:2 1 6 0 3 1 1 1 1 1;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; text-align:justify; text-justify:inter-ideograph; font-size:10.5pt; font-family:"Times New Roman";} a:link, span.MsoHyperlink {color:blue; text-decoration:underline; text-underline:single;} a:visited, span.MsoHyperlinkFollowed {color:purple; text-decoration:underline; text-underline:single;} /* Page Definitions */ @page {} @page Section1 {size:612.0pt 792.0pt; margin:72.0pt 90.0pt 72.0pt 90.0pt;} div.Section1 {page:Section1;} /* List Definitions */ @list l0 {} @list l0:level1 { text-indent:-18.0pt;} @list l1 {} @list l1:level1 { margin-left:39.0pt; text-indent:-18.0pt;} ol {margin-bottom:0cm;} ul {margin-bottom:0cm;} --> </style><!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable { mso-style-parent:""; font-size:10.0pt; font-family:"Times New Roman";} </style> <![endif]-->
注:在
windows
下使用的
wxWidgets
版本是
wxWidgets2.6.2
,在
linux
下使用的
wxWidgets
版本號是
wxWidgets2.6.3
,因此,在
windows
和
linux
下的
wxVERSION_STRING
值不一樣。
wxWidgets
的優勢和不足
通過上面的介紹,相信讀者已經對如何使用
wxWidgets
編寫
GUI
程序有了一定的了解。
wxWidgets
在開發跨平臺的軟件上有著許多其它軟件開發包不具備的優勢,下面就總結一下
wxWidgets
所具有的優勢。
1. 跨平臺
wxWidgets
支持非常多的操作系統平臺,如
Windows
、
Linux
、
Unix
等。
2.
豐富的組件
wxWidgets
擁有上百個組件可供用戶選擇。有了這些組件,將會給我們帶來更加豐富的用戶體驗。
3.
支持多種語言
wxWidgets
不僅可以在
C++
中使用,而且也可以在其它語言中使用,這些語言包括
python
、
perl
、
c#
等。
4.
使用本地控制
從上面給出的兩個應用程序界面可以看出,在
Windows
和
Linux
下運行這個應用程序保持了各自的風格。這是因為
wxWidgets
采用了本地的
API
,而不象其它的跨平臺庫去模擬它們。因此,使用
wxWidgets
開發和在
Windows
下使用
Win32 API
或在
Linux
下使用
GTK
開發沒有什么區別。
5.
免費開源
這個世界上免費的開發包很多,強大的開發包也很多,當然,開源的開發包就更多了。但是要想同時滿足這三點:免費、開源、強大,又同時具有本地程序一樣的性能,恐怕
wxWidgets
是唯一的選擇,至少是最佳的選擇。
相信上面關于
wxWidgets
的
5
個優勢已經足以成為我們選擇它的理由了。也就是說,如果選擇
wxWidgets
,不僅可以獲得強大的功能、卓越的性能,而且您不必為此付一分錢。當然,人無完人、物無完物。
wxWidgets
也并不是沒有缺點。下面就說一下
wxWidgets
的不足之處。
1. IDE
支持不夠
對于
wxWidgets
來說,最大的優點也就是它最大的缺點。由于
wxWidgets
所提供的組件很多,但到現在為止還沒有一個強大的
IDE
來支持它,這將給大型系統的開發帶來麻煩。
2.
對雙字節字符的支持不理想
wxWidgets
中的有些組件,如
xml
組件,無法識別雙字節字符,如漢字會被認為是非法字符而無法裝載
xml
文檔。
綜合上述,
wxWidgets
從總體上來說還是一個非常強大的跨平臺軟件開發包。如果您沒有足夠的資金來購買商業的軟件開發包,也許
wxWidgets
是最好的選擇。雖然
wxWidgets
也有一些不足,但這并不能阻礙
wxWidgets
的發展。
wxWidgets
的功能還很多,由于篇幅所限,本文只能從一個簡單的例子來討論如何用
wxWidgets
來開發一個跨平臺的
GUI
程序,如果讀者對
wxWidgets
感性趣,可以訪問
http://www.wxWidgets.org
獲得更多的信息。
要在Linux下使用Eclipse開發wxWidgets程序,請讀者參閱
《快速配置Linux + Eclipse + wxWidgets開發環境
》
國內最棒的Google Android技術社區(eoeandroid),歡迎訪問!
《銀河系列原創教程》
發布
《Java Web開發速學寶典》
出版,歡迎定購
使用wxWidgets進行跨平臺的C++開發