]> Pileus Git - ~andy/gtk/blobdiff - tests/testfontchooserdialog.c
stylecontext: Do invalidation on first resize container
[~andy/gtk] / tests / testfontchooserdialog.c
index b06ddb59f4e5efa7aa73d7a84204205472dedb06..0db130bc881fe7e23f20a0f0ebb9343c9fba296e 100644 (file)
  * Library General Public License for more details.
  *
  * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  */
 
-#include "config.h"
+#include <string.h>
 #include <gtk/gtk.h>
+#include "prop-editor.h"
+
+static gboolean
+monospace_filter (const PangoFontFamily *family,
+                  const PangoFontFace   *face,
+                  gpointer               data)
+{
+  return pango_font_family_is_monospace ((PangoFontFamily *) family);
+}
+
+static void
+notify_font_cb (GtkFontChooser *fontchooser, GParamSpec *pspec, gpointer data)
+{
+  PangoFontFamily *family;
+  PangoFontFace *face;
+
+  g_debug ("Changed font name %s", gtk_font_chooser_get_font (fontchooser));
+
+  family = gtk_font_chooser_get_font_family (fontchooser);
+  face = gtk_font_chooser_get_font_face (fontchooser);
+  if (family)
+    {
+       g_debug ("  Family: %s is-monospace:%s",
+                pango_font_family_get_name (family),
+                pango_font_family_is_monospace (family) ? "true" : "false");
+    }
+  else
+    g_debug ("  No font family!");
+
+  if (face)
+    g_debug ("  Face description: %s", pango_font_face_get_face_name (face));
+  else
+    g_debug ("  No font face!");
+}
+
+static void
+notify_preview_text_cb (GObject *fontchooser, GParamSpec *pspec, gpointer data)
+{
+  g_debug ("Changed preview text %s", gtk_font_chooser_get_preview_text (GTK_FONT_CHOOSER (fontchooser)));
+}
+
+static void
+font_activated_cb (GtkFontChooser *chooser, const gchar *font_name, gpointer data)
+{
+  g_debug ("font-activated: %s", font_name);
+}
 
 int
 main (int argc, char *argv[])
 {
-  GtkWidget *dialog;
-  GtkWidget *ok;
+  GtkWidget *window;
+  GtkWidget *font_button;
 
   gtk_init (&argc, &argv);
 
-  dialog = gtk_font_chooser_dialog_new (NULL);
+  window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
+  font_button = gtk_font_button_new ();
+  gtk_container_add (GTK_CONTAINER (window), font_button);
+  gtk_widget_show_all (window);
+
+  g_signal_connect (font_button, "notify::font",
+                    G_CALLBACK (notify_font_cb), NULL);
+  g_signal_connect (font_button, "notify::preview-text",
+                    G_CALLBACK (notify_preview_text_cb), NULL);
+  g_signal_connect (font_button, "font-activated",
+                    G_CALLBACK (font_activated_cb), NULL);
+
+  if (argc >= 2 && strcmp (argv[1], "--monospace") == 0)
+    {
+      gtk_font_chooser_set_filter_func (GTK_FONT_CHOOSER (font_button),
+                                        monospace_filter, NULL, NULL);
+    }
+
+  g_signal_connect (window, "delete-event",
+                    G_CALLBACK (gtk_main_quit), NULL);
 
-  gtk_dialog_run (GTK_DIALOG (dialog));
+  create_prop_editor (G_OBJECT (font_button), 0);
 
-  gtk_widget_destroy (dialog);
+  gtk_main ();
 
   return 0;
 }