extensions.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 01 Feb 2017 22:17:58 +0000
branchjv
changeset 7855 46203abe7d57
parent 7154 f2d585b5f20e
parent 7806 060e50ed6d74
child 8035 8bbd397fe321
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7806
060e50ed6d74 class: Object
Stefan Vogel <sv@exept.de>
parents: 7805
diff changeset
     1
"{ Package: 'stx:libview' }"!
060e50ed6d74 class: Object
Stefan Vogel <sv@exept.de>
parents: 7805
diff changeset
     2
7154
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     3
!ConfigurableFeatures class methodsFor:'queries-features'!
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     4
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     5
hasFontConfig
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     6
%{
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     7
#if defined(HAVE_FONTCONFIG)
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     8
    RETURN ( true );
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     9
#endif	
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    10
%}.
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    11
    ^ false
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    12
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    13
    "Created: / 22-02-2016 / 08:08:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    14
! !
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    15
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    16
!ConfigurableFeatures class methodsFor:'queries-features'!
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    17
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    18
hasXFT
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    19
%{
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    20
#if defined(HAVE_FONTCONFIG) && defined(XFT)
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    21
    RETURN ( true );
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    22
#endif	
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    23
%}.
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    24
    ^ false
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    25
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    26
    "Created: / 22-02-2016 / 08:08:38 / Jan Vrany <jan.vrany@fit.cvut.cz>"
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    27
! !
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    28
7806
060e50ed6d74 class: Object
Stefan Vogel <sv@exept.de>
parents: 7805
diff changeset
    29
!Object methodsFor:'testing'!
060e50ed6d74 class: Object
Stefan Vogel <sv@exept.de>
parents: 7805
diff changeset
    30
060e50ed6d74 class: Object
Stefan Vogel <sv@exept.de>
parents: 7805
diff changeset
    31
isColormap
060e50ed6d74 class: Object
Stefan Vogel <sv@exept.de>
parents: 7805
diff changeset
    32
    ^ false
060e50ed6d74 class: Object
Stefan Vogel <sv@exept.de>
parents: 7805
diff changeset
    33
! !
060e50ed6d74 class: Object
Stefan Vogel <sv@exept.de>
parents: 7805
diff changeset
    34
060e50ed6d74 class: Object
Stefan Vogel <sv@exept.de>
parents: 7805
diff changeset
    35
!stx_libview class methodsFor:'documentation'!
060e50ed6d74 class: Object
Stefan Vogel <sv@exept.de>
parents: 7805
diff changeset
    36
7154
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    37
extensionsVersion_HG
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    38
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    39
    ^ '$Changeset: <not expanded> $'
7806
060e50ed6d74 class: Object
Stefan Vogel <sv@exept.de>
parents: 7805
diff changeset
    40
! !