⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ascii.c

📁 The major functionality added in this release includes: - Rootless mode in X11 - Widget Templt
💻 C
字号:
/* X-Chat * Copyright (C) 1998 Peter Zelezny. * * This program 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 2 of the License, or * (at your option) any later version. * * This program 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, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */#include <stdio.h>#include <stdlib.h>#include <string.h>#include "fe-gtk.h"#include "../common/xchat.h"#include "../common/xchatc.h"#include "gtkutil.h"#include "wins.h"#include "ascii.h"static voidascii_click (GtkWidget * wid, int c){	int tmp_pos;	unsigned char str[2];	str[0] = c;	str[1] = 0;	if (menu_sess)	{		wid = menu_sess->gui->inputgad;		tmp_pos = gtk_editable_get_position (GTK_EDITABLE (wid));		gtk_editable_insert_text (GTK_EDITABLE (wid), str, 2, &tmp_pos);		gtk_entry_set_position (GTK_ENTRY (wid), tmp_pos);	}}voidascii_open (void){	int do_unref = TRUE;	int i, j, val;	unsigned char name[2], num[4];	GtkWidget *wid, *but, *hbox, *vbox, *win;	GtkStyle *style;	style = gtk_style_new ();	gdk_font_unref (style->font);	if (menu_sess && menu_sess->type == SESS_DIALOG)	{      style->font = dialog_font_normal;		gdk_font_ref (dialog_font_normal);	} else	{		style->font = font_normal;		gdk_font_ref (font_normal);	}	win = maingui_window ("asciichart", _("Ascii Chart"), TRUE, TRUE, NULL,									NULL, 0, 0, NULL);	vbox = wins_get_vbox (win);	name[1] = 0;	for (i = 0; i < 16; i++)	{		hbox = gtk_hbox_new (0, 0);		sprintf (num, "%03d", i * 16);		wid = gtk_label_new (num);		gtk_widget_set_usize (wid, 36, 20);		gtk_container_add (GTK_CONTAINER (hbox), wid);		gtk_widget_show (wid);		for (j = 0; j < 16; j++)		{			val = j + (i * 16);			name[0] = val;			but = gtk_button_new_with_label (name);			gtk_widget_set_style (GTK_BIN (but)->child, style);			if (do_unref)			{				do_unref = FALSE;				gtk_style_unref (style);			}			gtk_signal_connect (GTK_OBJECT (but), "clicked",									  GTK_SIGNAL_FUNC (ascii_click), (gpointer) val);			gtk_widget_set_usize (but, 24, 20);			gtk_container_add (GTK_CONTAINER (hbox), but);			gtk_widget_show (but);		}		gtk_container_add (GTK_CONTAINER (vbox), hbox);		gtk_widget_show (hbox);	}	gtk_widget_show (win);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -