forked from AuroraMiddleware/gtk
Fix minor issues in the tests
This commit is contained in:
parent
97d26ac9c0
commit
96f9b67b51
@ -17,8 +17,6 @@
|
|||||||
* Boston, MA 02111-1307, USA.
|
* Boston, MA 02111-1307, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
|
||||||
|
|
||||||
#include <gtk/gtk.h>
|
#include <gtk/gtk.h>
|
||||||
|
|
||||||
static void
|
static void
|
||||||
@ -37,31 +35,33 @@ int
|
|||||||
main (int argc, char *argv[])
|
main (int argc, char *argv[])
|
||||||
{
|
{
|
||||||
GtkWidget *window;
|
GtkWidget *window;
|
||||||
GtkWidget *hbox;
|
GtkWidget *box;
|
||||||
GtkWidget *fontchooser;
|
GtkWidget *fontchooser;
|
||||||
|
|
||||||
gtk_init (NULL, NULL);
|
gtk_init (NULL, NULL);
|
||||||
|
|
||||||
fontchooser = gtk_font_chooser_new ();
|
fontchooser = gtk_font_chooser_new ();
|
||||||
|
|
||||||
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
||||||
gtk_widget_set_size_request (window, 600, 600);
|
gtk_widget_set_size_request (window, 600, 600);
|
||||||
hbox = gtk_hbox_new (FALSE, 6);
|
box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
|
||||||
gtk_container_add (GTK_CONTAINER (window), hbox);
|
gtk_container_add (GTK_CONTAINER (window), box);
|
||||||
gtk_container_add (GTK_CONTAINER (hbox), fontchooser);
|
gtk_container_add (GTK_CONTAINER (box), fontchooser);
|
||||||
|
|
||||||
gtk_widget_show_all (window);
|
gtk_widget_show_all (window);
|
||||||
|
|
||||||
g_signal_connect (G_OBJECT (window), "delete-event", G_CALLBACK(gtk_main_quit), NULL);
|
g_signal_connect (window, "delete-event",
|
||||||
g_signal_connect (G_OBJECT (fontchooser), "notify::font-name", G_CALLBACK(notify_font_name_cb), NULL);
|
G_CALLBACK (gtk_main_quit), NULL);
|
||||||
g_signal_connect (G_OBJECT (fontchooser), "notify::preview-text", G_CALLBACK(notify_preview_text_cb), NULL);
|
g_signal_connect (fontchooser, "notify::font-name",
|
||||||
|
G_CALLBACK (notify_font_name_cb), NULL);
|
||||||
|
g_signal_connect (fontchooser, "notify::preview-text",
|
||||||
|
G_CALLBACK (notify_preview_text_cb), NULL);
|
||||||
|
|
||||||
gtk_font_chooser_set_font_name (GTK_FONT_CHOOSER (fontchooser), "Bitstream Vera Sans 45");
|
gtk_font_chooser_set_font_name (GTK_FONT_CHOOSER (fontchooser), "Bitstream Vera Sans 45");
|
||||||
gtk_font_chooser_set_preview_text (GTK_FONT_CHOOSER (fontchooser), "[user@host ~]$ ");
|
gtk_font_chooser_set_preview_text (GTK_FONT_CHOOSER (fontchooser), "[user@host ~]$ ");
|
||||||
|
gtk_font_chooser_set_show_preview_entry (GTK_FONT_CHOOSER (fontchooser), FALSE);
|
||||||
|
|
||||||
gtk_main ();
|
gtk_main ();
|
||||||
|
|
||||||
gtk_widget_destroy (window);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -17,7 +17,6 @@
|
|||||||
* Boston, MA 02111-1307, USA.
|
* Boston, MA 02111-1307, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
|
||||||
#include <gtk/gtk.h>
|
#include <gtk/gtk.h>
|
||||||
|
|
||||||
int
|
int
|
||||||
@ -32,5 +31,6 @@ main (int argc, char *argv[])
|
|||||||
gtk_widget_show_all (window);
|
gtk_widget_show_all (window);
|
||||||
|
|
||||||
gtk_main ();
|
gtk_main ();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user