Add some screenshots for the help documentation.
2003-01-18 Glynn Foster <glynn.foster@sun.com> * help/C/figures/zenity-calendar-screenshot.png, help/C/figures/zenity-entry-screenshot.png, help/C/figures/zenity-error-screenshot.png, help/C/figures/zenity-fileselection-screenshot.png, help/C/figures/zenity-information-screenshot.png, help/C/figures/zenity-list-screenshot.png, help/C/figures/zenity-progress-screenshot.png, help/C/figures/zenity-question-screenshot.png, help/C/figures/zenity-text-screenshot.png, help/C/figures/zenity-warning-screenshot.png: Add some screenshots for the help documentation. * src/entry.c, src/msg.c: Don't set the text if it's NULL.
16
ChangeLog
@ -1,3 +1,19 @@
|
|||||||
|
2003-01-18 Glynn Foster <glynn.foster@sun.com>
|
||||||
|
|
||||||
|
* help/C/figures/zenity-calendar-screenshot.png,
|
||||||
|
help/C/figures/zenity-entry-screenshot.png,
|
||||||
|
help/C/figures/zenity-error-screenshot.png,
|
||||||
|
help/C/figures/zenity-fileselection-screenshot.png,
|
||||||
|
help/C/figures/zenity-information-screenshot.png,
|
||||||
|
help/C/figures/zenity-list-screenshot.png,
|
||||||
|
help/C/figures/zenity-progress-screenshot.png,
|
||||||
|
help/C/figures/zenity-question-screenshot.png,
|
||||||
|
help/C/figures/zenity-text-screenshot.png,
|
||||||
|
help/C/figures/zenity-warning-screenshot.png: Add some
|
||||||
|
screenshots for the help documentation.
|
||||||
|
|
||||||
|
* src/entry.c, src/msg.c: Don't set the text if it's NULL.
|
||||||
|
|
||||||
2003-01-18 Glynn Foster <glynn.foster@sun.com>
|
2003-01-18 Glynn Foster <glynn.foster@sun.com>
|
||||||
|
|
||||||
* help/C/zenity.xml: Only some examples and some screenshots
|
* help/C/zenity.xml: Only some examples and some screenshots
|
||||||
|
BIN
help/C/figures/zenity-calendar-screenshot.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
help/C/figures/zenity-entry-screenshot.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
help/C/figures/zenity-error-screenshot.png
Normal file
After Width: | Height: | Size: 7.0 KiB |
BIN
help/C/figures/zenity-fileselection-screenshot.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
help/C/figures/zenity-information-screenshot.png
Normal file
After Width: | Height: | Size: 8.6 KiB |
BIN
help/C/figures/zenity-list-screenshot.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
help/C/figures/zenity-progress-screenshot.png
Normal file
After Width: | Height: | Size: 7.1 KiB |
BIN
help/C/figures/zenity-question-screenshot.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
help/C/figures/zenity-text-screenshot.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
help/C/figures/zenity-warning-screenshot.png
Normal file
After Width: | Height: | Size: 9.0 KiB |
@ -56,7 +56,7 @@ zenity_entry (ZenityData *data, ZenityEntryData *entry_data)
|
|||||||
if (data->window_icon)
|
if (data->window_icon)
|
||||||
zenity_util_set_window_icon (dialog, data->window_icon);
|
zenity_util_set_window_icon (dialog, data->window_icon);
|
||||||
else
|
else
|
||||||
/* FIXME: Come up with a nice default window icon */;
|
zenity_util_set_window_icon (dialog, ZENITY_IMAGE_FULLPATH ("zenity-entry.png"));
|
||||||
|
|
||||||
text = glade_xml_get_widget (glade_dialog, "zenity_entry_text");
|
text = glade_xml_get_widget (glade_dialog, "zenity_entry_text");
|
||||||
|
|
||||||
|
@ -104,7 +104,8 @@ zenity_msg (ZenityData *data, ZenityMsgData *msg_data)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
gtk_label_set_text (GTK_LABEL (text), msg_data->dialog_text);
|
if (msg_data->dialog_text)
|
||||||
|
gtk_label_set_text (GTK_LABEL (text), msg_data->dialog_text);
|
||||||
|
|
||||||
gtk_widget_show (dialog);
|
gtk_widget_show (dialog);
|
||||||
gtk_main ();
|
gtk_main ();
|
||||||
|