Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1720243
  • 博文数量: 171
  • 博客积分: 11553
  • 博客等级: 上将
  • 技术积分: 3986
  • 用 户 组: 普通用户
  • 注册时间: 2006-05-25 20:28
文章分类

全部博文(171)

文章存档

2012年(2)

2011年(70)

2010年(9)

2009年(14)

2008年(76)

分类: C/C++

2011-09-25 21:22:58

/*
 * Copyright (C) Jcodeer Zhang 2011
 * 
 * This application is free software: you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * This application is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License along
 * with this program.  If not, see <
 * 
 * 功能介绍
 * 使用按钮控件
 * 构建命令
 * gcc -g -o 009.exe 009.c `pkg-config --cflags --libs gtk+-2.0`
 */
#include

/**
*callback function of button
*@param w widget
*@param userdata
*/
void hello_proc(GtkWidget* w,gpointer userdata)
{
gtk_button_set_label(GTK_BUTTON(w),"Hello GTK+");
}

#define WIDTH 480
#define HEIGHT 320

int main(int argc,char** argv)
{
    gtk_init(&argc,&argv);
GtkWidget* main_win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
gtk_container_set_border_width(GTK_CONTAINER(main_win),5);

    //创建一个按钮,并将其加入到容器中。
GtkWidget* b = gtk_button_new_with_label("GTK+ Button");
gtk_container_add(GTK_CONTAINER(main_win),b);
//加入按钮单击事件处理函数
g_signal_connect(G_OBJECT(b),"clicked",G_CALLBACK(hello_proc),NULL);
//显示控件
gtk_widget_show(b);
g_signal_connect_swapped(G_OBJECT(main_win),"destroy",
   G_CALLBACK(gtk_main_quit),NULL);
//显示主窗口
gtk_widget_show(main_win);
gtk_main();
    return 0;
}

阅读(1437) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~