/*
* 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) |