/*
* 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 010.exe 010.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)
{
g_print("you click me\n");
}
#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_mnemonic("_Action");
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;
}
阅读(1223) | 评论(0) | 转发(0) |