File: fontbutton

package info (click to toggle)
rep-gtk 1%3A0.90.8.3-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 824 kB
  • sloc: sh: 3,452; ansic: 3,402; lisp: 1,218; makefile: 96
file content (65 lines) | stat: -rw-r--r-- 1,245 bytes parent folder | download | duplicates (2)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
;; GtkFontButton

(define-object GtkFontButton (GtkButton))

(define-func gtk_font_button_new
  GtkWidget
  ())

(define-func gtk_font_button_new_with_font
  GtkWidget
  ((string font)))

(define-func gtk_font_button_get_title
  static_string
  ((GtkFontButton button)))

(define-func gtk_font_button_set_title
  none
  ((GtkFontButton button)
   (string title)))

(define-func gtk_font_button_get_use_font
  bool
  ((GtkFontButton button)))

(define-func gtk_font_button_set_use_font
  none
  ((GtkFontButton button)
   (bool option)))

(define-func gtk_font_button_get_use_size
  bool
  ((GtkFontButton button)))

(define-func gtk_font_button_set_use_size
  none
  ((GtkFontButton button)
   (bool option)))

(define-func gtk_font_button_get_font_name
  static_string
  ((GtkFontButton button)))

(define-func gtk_font_button_set_font_name
  none
  ((GtkFontButton button)
   (string font)))

(define-func gtk_font_button_get_show_style
  bool
  ((GtkFontButton button)))

(define-func gtk_font_button_set_show_style
  none
  ((GtkFontButton button)
   (bool option)))

(define-func gtk_font_button_get_show_size
  bool
  ((GtkFontButton button)))

(define-func gtk_font_button_set_show_size
  none
  ((GtkFontButton button)
   (bool option)))