當我嘗試在Code :: Blocks中編寫代碼時,我很難讓FLTK兼容。我猜這是因爲我下載/安裝不正確。我試圖尋找安裝指南像使用Code :: Blocks在Windows上構建FLTK
http://hpux.connect.org.uk/hppd/hpux/Development/Tools/fltk-1.1.9/readme.html
,但我真的不知道這意味着什麼。我從這裏獲取我的源文件。
我到目前爲止已經試過被下載的壓縮文件夾並將其解壓到我的C++文件夾,然後設置IDE搜索在FLTK文件夾目錄,但不工作 - 我認爲這不僅僅是尋找標題是一個更大的問題。
任何有使用FLTK經驗的人都能指出我的方向嗎?以下是用於創建簡單窗口的代碼示例。
#include "Simple_window.h" // get access to our windows library
#include "Graph.h" // get access to graphics library facilities
int main()
{
using namespace Graph_lib; // our graphics facilities are in Graph_lib
Point tl(100,100); // to become top left corner of window
Simple_window win(tl,600,400,"Canvas"); // make a simple window
Polygon poly; // make a shape (a polygon)
poly.add(Point(300,200)); // add a point
poly.add(Point(350,100)); // add another point
poly.add(Point(400,200)); // add a third point
poly.set_color(Color::red); // adjust properties of poly
win.attach(poly); // connect poly to the window
win.wait_for_button(); // give control to display engine
}
如果您有興趣,可以在這裏找到程序中的標題。
http://www.stroustrup.com/Programming/
我決定切換到Visual Studio Express。我是否需要創建一個項目來編譯文件?我不能只編譯一個文件嗎? – trikker 2009-08-03 01:56:30