
Support GUI scaling in much the same way as on Windows, where the OS setting ("org.gnome.desktop.interface.scaling-factor" times "...text-scaling-factor") determines the scale that is used for both graphics and GUI sizing. As I understand it, a complete solution requires porting to Gtk3. With Gtk2, the graphical part of a widget doesn't scale. Text and image labels should scale correctly, though.
34 lines
1.1 KiB
Racket
34 lines
1.1 KiB
Racket
#lang info
|
|
|
|
(define collection 'multi)
|
|
|
|
(define deps '("srfi-lite-lib"
|
|
"data-lib"
|
|
"base"
|
|
"syntax-color-lib"
|
|
("draw-lib" #:version "1.5")
|
|
"snip-lib"
|
|
"wxme-lib"
|
|
"pict-lib"
|
|
"scheme-lib"
|
|
"scribble-lib"
|
|
"string-constants-lib"
|
|
"unstable-options-lib"
|
|
"unstable-2d"
|
|
"compatibility-lib"
|
|
"tex-table"
|
|
("gui-i386-macosx" #:platform "i386-macosx")
|
|
("gui-x86_64-macosx" #:platform "x86_64-macosx")
|
|
("gui-ppc-macosx" #:platform "ppc-macosx")
|
|
("gui-win32-i386" #:platform "win32\\i386")
|
|
("gui-win32-x86_64" #:platform "win32\\x86_64")
|
|
("gui-x86_64-linux-natipkg" #:platform "x86_64-linux-natipkg")))
|
|
(define build-deps '("at-exp-lib"
|
|
"rackunit-lib"))
|
|
|
|
(define pkg-desc "implementation (no documentation) part of \"gui\"")
|
|
|
|
(define pkg-authors '(mflatt robby))
|
|
|
|
(define version "1.14")
|