この章は libgnomeui のリファレンスとなるつもりである。
Cesar Miquel <miquel@df.uba.ar>
「このプログラムについて」のようなボックスを表示するために 非常に特化されたウイジェット
A very specialized widget to display "About this program"-like boxes.
GtkWidget *gnome_about_new(gchar *title, gchar *version, gchar *copyright, gchar **authors, gchar *comments, gchar *logo);このウイジェットを生成する主な関数
gchar *authors[] =
{"author1", "author2",..., NULL};
GtkWidget *about = gnome_about_new (_ ("GnoApp"), "1.2b",
_ ("Copyright FSF (C) 1998"),
authors,
"Comment line 1\nLine 2",
"/usr/local/share/pixmaps/gnoapp-logo.xpm");
gtk_widget_show (about); |
gchar *title
アプリケーションの名前
Name of the application.
gchar *version
バージョン
Version.
gchar *copyright
コピーライトの通知文(一行)
Copyright notice (one line.)
gchar **authors
NULL が最後に来る、作者達のリスト
NULL terminated list of authors.
gchar *comments
その他のコメント
Other comments.
gchar *logo
ロゴのピックスマップファイル名
A logo pixmap file.