码迷,mamicode.com
首页 > 其他好文 > 详细

fltk_hello world

时间:2014-11-25 12:35:49      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   color   sp   on   div   log   bs   

int main(int argc, char *argv[])
{
#define WINDOW_BG FL_BLACK
#define WINDOW_WIDTH 640
#define WINDOW_HEIGHT 480
#define BOX_WIDTH 100
#define BOX_HEIGHT 40
#define TEXT_COLOR FL_GREEN
#define TEXT_FONT FL_BOLD
#define TEXT_SIZE 40
// replace by xml ?

    const char* pszText = "Hello FLTK";
    int iW = 0;
    int iH = 0;

        
    Fl_Double_Window win(640, 480);
    win.color(FL_BLACK);

    fl_font(TEXT_FONT, TEXT_SIZE);
    fl_measure(pszText, iW, iH);

    Fl_Box* box = new Fl_Box(WINDOW_WIDTH/2 - iW/2, WINDOW_HEIGHT/2 - iH/2, iW, iH);
    box->box(FL_FLAT_BOX);
    box->color(TEXT_COLOR);
    box->labelfont(TEXT_FONT);
    box->labelsize(TEXT_SIZE);
    box->label(pszText);

    
    win.show();
    win.end();

    return Fl::run();
}

 

fltk_hello world

标签:style   blog   ar   color   sp   on   div   log   bs   

原文地址:http://www.cnblogs.com/stanley198610281217/p/4120640.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!