extensions.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 25 Jan 2019 11:29:18 +0000
branchjv
changeset 8620 b4220c12f7ef
parent 8035 8bbd397fe321
permissions -rw-r--r--
Fix typo in (default) mapping for delete key
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
8035
8bbd397fe321 Keyboard mapping: refactored `KeyboardMap` to distinguish between a binding and an alias(es)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 7855
diff changeset
    35
!Object methodsFor:'testing'!
8bbd397fe321 Keyboard mapping: refactored `KeyboardMap` to distinguish between a binding and an alias(es)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 7855
diff changeset
    36
8bbd397fe321 Keyboard mapping: refactored `KeyboardMap` to distinguish between a binding and an alias(es)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 7855
diff changeset
    37
isKeyboardMap
8bbd397fe321 Keyboard mapping: refactored `KeyboardMap` to distinguish between a binding and an alias(es)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 7855
diff changeset
    38
    ^ false
8bbd397fe321 Keyboard mapping: refactored `KeyboardMap` to distinguish between a binding and an alias(es)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 7855
diff changeset
    39
! !
8bbd397fe321 Keyboard mapping: refactored `KeyboardMap` to distinguish between a binding and an alias(es)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 7855
diff changeset
    40
7806
060e50ed6d74 class: Object
Stefan Vogel <sv@exept.de>
parents: 7805
diff changeset
    41
!stx_libview class methodsFor:'documentation'!
060e50ed6d74 class: Object
Stefan Vogel <sv@exept.de>
parents: 7805
diff changeset
    42
7154
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    43
extensionsVersion_HG
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    44
f2d585b5f20e X11/FontConfig: Conditionally compile FontConfig support
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    45
    ^ '$Changeset: <not expanded> $'
7806
060e50ed6d74 class: Object
Stefan Vogel <sv@exept.de>
parents: 7805
diff changeset
    46
! !