File: fontchooserwidget.vala

package info (click to toggle)
gnome-devel-docs 3.14.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 46,300 kB
  • ctags: 630
  • sloc: xml: 2,321; ansic: 2,040; python: 1,807; makefile: 747; sh: 504; cpp: 131
file content (32 lines) | stat: -rw-r--r-- 1,119 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
public class MyWindow : Gtk.ApplicationWindow {
        internal MyWindow (MyApplication app) {
                Object (application: app, title: "FontChooserWidget");

		var font_chooser = new Gtk.FontChooserWidget ();
		font_chooser.set_font ("Sans");
		font_chooser.set_preview_text ("This is an example of preview text!");
		this.add (font_chooser);

		font_chooser.notify["font"].connect (() => {
			print ("font: %s\n", font_chooser.get_font ().to_string ());
			print ("desc: %s\n", font_chooser.get_font_desc ().to_string ());
			print ("face: %s\n", font_chooser.get_font_face ().get_face_name ());
			print ("size: %d\n", font_chooser.get_font_size ());
			print ("family: %s\n", font_chooser.get_font_family ().get_name ());
			print ("monospace: %s\n\n", font_chooser.get_font_family ().is_monospace ().to_string ());
		});

                this.show_all ();
        }
}

public class MyApplication : Gtk.Application {
        protected override void activate () {
                new MyWindow (this).show ();
        }
}

public int main (string[] args) {
        return new MyApplication ().run (args);
}