curses 1.3.0 → 1.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/macos.yml +19 -0
- data/.github/workflows/ubuntu.yml +26 -0
- data/.github/workflows/windows.yml +25 -0
- data/History.md +34 -0
- data/README.md +14 -46
- data/Rakefile +0 -86
- data/curses.gemspec +2 -3
- data/ext/curses/curses.c +70 -58
- data/ext/curses/extconf.rb +134 -21
- data/lib/curses.rb +5 -12
- data/sample/addch.rb +16 -0
- data/sample/attr_demo.rb +32 -0
- data/sample/colors.rb +26 -0
- data/sample/menu.rb +3 -3
- data/sample/mouse_move.rb +75 -0
- data/vendor/PDCurses/.gitignore +47 -0
- data/vendor/PDCurses/.travis.yml +49 -0
- data/vendor/PDCurses/CMakeLists.txt +68 -0
- data/vendor/PDCurses/HISTORY.md +2036 -0
- data/vendor/PDCurses/IMPLEMNT.md +327 -0
- data/vendor/PDCurses/README.md +77 -0
- data/vendor/PDCurses/acs_defs.h +265 -0
- data/vendor/PDCurses/appveyor.yml +218 -0
- data/vendor/PDCurses/cmake/README.md +71 -0
- data/vendor/PDCurses/cmake/build_dependencies.cmake +178 -0
- data/vendor/PDCurses/cmake/build_options.cmake +25 -0
- data/vendor/PDCurses/cmake/dll_version.cmake +26 -0
- data/vendor/PDCurses/cmake/gen_config_header.cmake +43 -0
- data/vendor/PDCurses/cmake/get_version.cmake +17 -0
- data/vendor/PDCurses/cmake/make_uninstall.cmake +19 -0
- data/vendor/PDCurses/cmake/project_common.cmake +121 -0
- data/vendor/PDCurses/cmake/resource.in.cmake +52 -0
- data/vendor/PDCurses/cmake/sdl2_ttf/CMakeLists.txt +83 -0
- data/vendor/PDCurses/cmake/target_arch.cmake +36 -0
- data/vendor/PDCurses/cmake/version.in.cmake +73 -0
- data/vendor/PDCurses/cmake/watcom_open_dos16_toolchain.cmake +96 -0
- data/vendor/PDCurses/cmake/watcom_open_dos32_toolchain.cmake +106 -0
- data/vendor/PDCurses/cmake/watcom_open_os2v2_toolchain.cmake +105 -0
- data/vendor/PDCurses/curses.h +1846 -0
- data/vendor/PDCurses/curspriv.h +134 -0
- data/vendor/PDCurses/demos/README.md +25 -0
- data/vendor/PDCurses/demos/firework.c +144 -0
- data/vendor/PDCurses/demos/newtest.c +581 -0
- data/vendor/PDCurses/demos/ozdemo.c +447 -0
- data/vendor/PDCurses/demos/ptest.c +283 -0
- data/vendor/PDCurses/demos/rain.c +157 -0
- data/vendor/PDCurses/demos/testcurs.c +1607 -0
- data/vendor/PDCurses/demos/tui.c +1048 -0
- data/vendor/PDCurses/demos/tui.h +65 -0
- data/vendor/PDCurses/demos/tuidemo.c +233 -0
- data/vendor/PDCurses/demos/version.c +61 -0
- data/vendor/PDCurses/demos/worm.c +432 -0
- data/vendor/PDCurses/demos/xmas.c +955 -0
- data/vendor/PDCurses/dos/CMakeLists.txt +47 -0
- data/vendor/PDCurses/dos/Makefile.bcc +83 -0
- data/vendor/PDCurses/dos/Makefile.dmc +257 -0
- data/vendor/PDCurses/dos/Makefile.msc +113 -0
- data/vendor/PDCurses/dos/Makefile.wcc +107 -0
- data/vendor/PDCurses/dos/README.md +51 -0
- data/vendor/PDCurses/dos/bccdos.lrf +9 -0
- data/vendor/PDCurses/dos/mscdos.lrf +50 -0
- data/vendor/PDCurses/dos/pdcclip.c +132 -0
- data/vendor/PDCurses/dos/pdcdisp.c +135 -0
- data/vendor/PDCurses/dos/pdcdos.h +194 -0
- data/vendor/PDCurses/dos/pdcgetsc.c +98 -0
- data/vendor/PDCurses/dos/pdckbd.c +513 -0
- data/vendor/PDCurses/dos/pdcscrn.c +785 -0
- data/vendor/PDCurses/dos/pdcsetsc.c +101 -0
- data/vendor/PDCurses/dos/pdcutil.c +212 -0
- data/vendor/PDCurses/libobjs.mif +26 -0
- data/vendor/PDCurses/makedist.mif +20 -0
- data/vendor/PDCurses/man/README.md +21 -0
- data/vendor/PDCurses/man/intro.md +361 -0
- data/vendor/PDCurses/man/manext.c +119 -0
- data/vendor/PDCurses/man/sdl.md +152 -0
- data/vendor/PDCurses/man/sdl2.md +58 -0
- data/vendor/PDCurses/man/x11.md +407 -0
- data/vendor/PDCurses/ncurses/CMakeLists.txt +66 -0
- data/vendor/PDCurses/ncurses/README.md +26 -0
- data/vendor/PDCurses/ncurses/makefile +29 -0
- data/vendor/PDCurses/os2/CMakeLists.txt +41 -0
- data/vendor/PDCurses/os2/Makefile.bcc +90 -0
- data/vendor/PDCurses/os2/Makefile.wcc +43 -0
- data/vendor/PDCurses/os2/README.md +43 -0
- data/vendor/PDCurses/os2/iccos2.lrf +50 -0
- data/vendor/PDCurses/os2/iccos2.mak +256 -0
- data/vendor/PDCurses/os2/pdcclip.c +188 -0
- data/vendor/PDCurses/os2/pdcdisp.c +93 -0
- data/vendor/PDCurses/os2/pdcgetsc.c +89 -0
- data/vendor/PDCurses/os2/pdckbd.c +521 -0
- data/vendor/PDCurses/os2/pdcos2.h +55 -0
- data/vendor/PDCurses/os2/pdcscrn.c +449 -0
- data/vendor/PDCurses/os2/pdcsetsc.c +112 -0
- data/vendor/PDCurses/os2/pdcutil.c +52 -0
- data/vendor/PDCurses/panel.h +56 -0
- data/vendor/PDCurses/pdcurses/README.md +25 -0
- data/vendor/PDCurses/pdcurses/addch.c +693 -0
- data/vendor/PDCurses/pdcurses/addchstr.c +245 -0
- data/vendor/PDCurses/pdcurses/addstr.c +240 -0
- data/vendor/PDCurses/pdcurses/attr.c +359 -0
- data/vendor/PDCurses/pdcurses/beep.c +68 -0
- data/vendor/PDCurses/pdcurses/bkgd.c +223 -0
- data/vendor/PDCurses/pdcurses/border.c +411 -0
- data/vendor/PDCurses/pdcurses/clear.c +159 -0
- data/vendor/PDCurses/pdcurses/color.c +298 -0
- data/vendor/PDCurses/pdcurses/debug.c +109 -0
- data/vendor/PDCurses/pdcurses/delch.c +96 -0
- data/vendor/PDCurses/pdcurses/deleteln.c +211 -0
- data/vendor/PDCurses/pdcurses/deprec.c +27 -0
- data/vendor/PDCurses/pdcurses/getch.c +417 -0
- data/vendor/PDCurses/pdcurses/getstr.c +474 -0
- data/vendor/PDCurses/pdcurses/getyx.c +139 -0
- data/vendor/PDCurses/pdcurses/inch.c +127 -0
- data/vendor/PDCurses/pdcurses/inchstr.c +214 -0
- data/vendor/PDCurses/pdcurses/initscr.c +367 -0
- data/vendor/PDCurses/pdcurses/inopts.c +324 -0
- data/vendor/PDCurses/pdcurses/insch.c +271 -0
- data/vendor/PDCurses/pdcurses/insstr.c +264 -0
- data/vendor/PDCurses/pdcurses/instr.c +246 -0
- data/vendor/PDCurses/pdcurses/kernel.c +259 -0
- data/vendor/PDCurses/pdcurses/keyname.c +157 -0
- data/vendor/PDCurses/pdcurses/mouse.c +438 -0
- data/vendor/PDCurses/pdcurses/move.c +57 -0
- data/vendor/PDCurses/pdcurses/outopts.c +159 -0
- data/vendor/PDCurses/pdcurses/overlay.c +214 -0
- data/vendor/PDCurses/pdcurses/pad.c +260 -0
- data/vendor/PDCurses/pdcurses/panel.c +633 -0
- data/vendor/PDCurses/pdcurses/printw.c +126 -0
- data/vendor/PDCurses/pdcurses/refresh.c +279 -0
- data/vendor/PDCurses/pdcurses/scanw.c +578 -0
- data/vendor/PDCurses/pdcurses/scr_dump.c +213 -0
- data/vendor/PDCurses/pdcurses/scroll.c +101 -0
- data/vendor/PDCurses/pdcurses/slk.c +591 -0
- data/vendor/PDCurses/pdcurses/termattr.c +182 -0
- data/vendor/PDCurses/pdcurses/terminfo.c +217 -0
- data/vendor/PDCurses/pdcurses/touch.c +163 -0
- data/vendor/PDCurses/pdcurses/util.c +312 -0
- data/vendor/PDCurses/pdcurses/window.c +569 -0
- data/vendor/PDCurses/sdl1/Makefile.mng +110 -0
- data/vendor/PDCurses/sdl1/README.md +31 -0
- data/vendor/PDCurses/sdl1/deffont.h +385 -0
- data/vendor/PDCurses/sdl1/deficon.h +23 -0
- data/vendor/PDCurses/sdl1/pdcclip.c +131 -0
- data/vendor/PDCurses/sdl1/pdcdisp.c +373 -0
- data/vendor/PDCurses/sdl1/pdcgetsc.c +30 -0
- data/vendor/PDCurses/sdl1/pdckbd.c +405 -0
- data/vendor/PDCurses/sdl1/pdcscrn.c +414 -0
- data/vendor/PDCurses/sdl1/pdcsdl.h +31 -0
- data/vendor/PDCurses/sdl1/pdcsetsc.c +64 -0
- data/vendor/PDCurses/sdl1/pdcutil.c +40 -0
- data/vendor/PDCurses/sdl1/sdltest.c +79 -0
- data/vendor/PDCurses/sdl2/CMakeLists.txt +76 -0
- data/vendor/PDCurses/sdl2/Makefile.vc +164 -0
- data/vendor/PDCurses/sdl2/README.md +34 -0
- data/vendor/PDCurses/sdl2/deffont.h +385 -0
- data/vendor/PDCurses/sdl2/deficon.h +23 -0
- data/vendor/PDCurses/sdl2/pdcclip.c +93 -0
- data/vendor/PDCurses/sdl2/pdcdisp.c +534 -0
- data/vendor/PDCurses/sdl2/pdcgetsc.c +30 -0
- data/vendor/PDCurses/sdl2/pdckbd.c +480 -0
- data/vendor/PDCurses/sdl2/pdcscrn.c +443 -0
- data/vendor/PDCurses/sdl2/pdcsdl.h +33 -0
- data/vendor/PDCurses/sdl2/pdcsetsc.c +67 -0
- data/vendor/PDCurses/sdl2/pdcutil.c +39 -0
- data/vendor/PDCurses/sdl2/sdltest.c +81 -0
- data/vendor/PDCurses/term.h +48 -0
- data/vendor/PDCurses/version.mif +7 -0
- data/vendor/PDCurses/vt/CMakeLists.txt +28 -0
- data/vendor/PDCurses/vt/Makefile.bcc +111 -0
- data/vendor/PDCurses/vt/Makefile.dmc +258 -0
- data/vendor/PDCurses/vt/Makefile.vc +144 -0
- data/vendor/PDCurses/vt/Makefile.wcc +107 -0
- data/vendor/PDCurses/vt/README.md +64 -0
- data/vendor/PDCurses/vt/pdcclip.c +20 -0
- data/vendor/PDCurses/vt/pdcdisp.c +284 -0
- data/vendor/PDCurses/vt/pdcgetsc.c +27 -0
- data/vendor/PDCurses/vt/pdckbd.c +394 -0
- data/vendor/PDCurses/vt/pdcscrn.c +434 -0
- data/vendor/PDCurses/vt/pdcsetsc.c +45 -0
- data/vendor/PDCurses/vt/pdcutil.c +43 -0
- data/vendor/PDCurses/vt/pdcvt.h +16 -0
- data/vendor/PDCurses/watcom.mif +68 -0
- data/vendor/PDCurses/wincon/CMakeLists.txt +27 -0
- data/vendor/PDCurses/wincon/Makefile.bcc +88 -0
- data/vendor/PDCurses/wincon/Makefile.dmc +256 -0
- data/vendor/PDCurses/wincon/Makefile.lcc +273 -0
- data/vendor/PDCurses/wincon/Makefile.mng +176 -0
- data/vendor/PDCurses/wincon/Makefile.vc +144 -0
- data/vendor/PDCurses/wincon/Makefile.wcc +51 -0
- data/vendor/PDCurses/wincon/README.md +85 -0
- data/vendor/PDCurses/wincon/pdcclip.c +174 -0
- data/vendor/PDCurses/wincon/pdcdisp.c +143 -0
- data/vendor/PDCurses/wincon/pdcgetsc.c +55 -0
- data/vendor/PDCurses/wincon/pdckbd.c +786 -0
- data/vendor/PDCurses/wincon/pdcscrn.c +717 -0
- data/vendor/PDCurses/wincon/pdcsetsc.c +91 -0
- data/vendor/PDCurses/wincon/pdcurses.ico +0 -0
- data/vendor/PDCurses/wincon/pdcurses.rc +28 -0
- data/vendor/PDCurses/wincon/pdcutil.c +41 -0
- data/vendor/PDCurses/wincon/pdcwin.h +31 -0
- data/vendor/PDCurses/wingui/CMakeLists.txt +27 -0
- data/vendor/PDCurses/wingui/Makefile.bcc +85 -0
- data/vendor/PDCurses/wingui/Makefile.dmc +259 -0
- data/vendor/PDCurses/wingui/Makefile.lcc +273 -0
- data/vendor/PDCurses/wingui/Makefile.mng +171 -0
- data/vendor/PDCurses/wingui/Makefile.vc +144 -0
- data/vendor/PDCurses/wingui/Makefile.wcc +51 -0
- data/vendor/PDCurses/wingui/README.md +93 -0
- data/vendor/PDCurses/wingui/pdcclip.c +174 -0
- data/vendor/PDCurses/wingui/pdcdisp.c +718 -0
- data/vendor/PDCurses/wingui/pdcgetsc.c +30 -0
- data/vendor/PDCurses/wingui/pdckbd.c +143 -0
- data/vendor/PDCurses/wingui/pdcscrn.c +2797 -0
- data/vendor/PDCurses/wingui/pdcsetsc.c +89 -0
- data/vendor/PDCurses/wingui/pdcurses.ico +0 -0
- data/vendor/PDCurses/wingui/pdcurses.rc +28 -0
- data/vendor/PDCurses/wingui/pdcutil.c +61 -0
- data/vendor/PDCurses/wingui/pdcwin.h +122 -0
- data/vendor/PDCurses/x11/Makefile.in +754 -0
- data/vendor/PDCurses/x11/PDCurses.spec +82 -0
- data/vendor/PDCurses/x11/README.md +62 -0
- data/vendor/PDCurses/x11/ScrollBox.c +319 -0
- data/vendor/PDCurses/x11/ScrollBox.h +51 -0
- data/vendor/PDCurses/x11/ScrollBoxP.h +70 -0
- data/vendor/PDCurses/x11/aclocal.m4 +994 -0
- data/vendor/PDCurses/x11/big_icon.xbm +46 -0
- data/vendor/PDCurses/x11/compose.h +201 -0
- data/vendor/PDCurses/x11/config.guess +1500 -0
- data/vendor/PDCurses/x11/config.h.in +100 -0
- data/vendor/PDCurses/x11/config.sub +1616 -0
- data/vendor/PDCurses/x11/configure +6700 -0
- data/vendor/PDCurses/x11/configure.ac +295 -0
- data/vendor/PDCurses/x11/debian/changelog +6 -0
- data/vendor/PDCurses/x11/debian/compat +1 -0
- data/vendor/PDCurses/x11/debian/control +11 -0
- data/vendor/PDCurses/x11/debian/copyright +27 -0
- data/vendor/PDCurses/x11/debian/rules +98 -0
- data/vendor/PDCurses/x11/install-sh +253 -0
- data/vendor/PDCurses/x11/little_icon.xbm +14 -0
- data/vendor/PDCurses/x11/ncurses_cfg.h +45 -0
- data/vendor/PDCurses/x11/pdcclip.c +173 -0
- data/vendor/PDCurses/x11/pdcdisp.c +85 -0
- data/vendor/PDCurses/x11/pdcgetsc.c +28 -0
- data/vendor/PDCurses/x11/pdckbd.c +104 -0
- data/vendor/PDCurses/x11/pdcscrn.c +258 -0
- data/vendor/PDCurses/x11/pdcsetsc.c +95 -0
- data/vendor/PDCurses/x11/pdcutil.c +52 -0
- data/vendor/PDCurses/x11/pdcx11.c +316 -0
- data/vendor/PDCurses/x11/pdcx11.h +191 -0
- data/vendor/PDCurses/x11/sb.c +155 -0
- data/vendor/PDCurses/x11/x11.c +3686 -0
- data/vendor/PDCurses/x11/xcurses-config.in +81 -0
- metadata +258 -24
- data/.travis.yml +0 -16
- data/appveyor.yml +0 -16
@@ -0,0 +1,82 @@
|
|
1
|
+
# $Id: PDCurses.spec,v 1.6 2013/07/23 01:35:31 mark Exp $
|
2
|
+
%define debug_package %{nil}
|
3
|
+
%define base /usr
|
4
|
+
|
5
|
+
Summary: Public Domain Curses for X11
|
6
|
+
Name: PDCurses
|
7
|
+
Version: %{myversion}
|
8
|
+
Release: 1
|
9
|
+
License: Public Domain
|
10
|
+
Group: Development/Libraries
|
11
|
+
Source: %{name}-%{version}.tar.gz
|
12
|
+
URL: http://pdcurses.org
|
13
|
+
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
14
|
+
Prefix: %base
|
15
|
+
BuildRequires: libXaw-devel
|
16
|
+
|
17
|
+
%package devel
|
18
|
+
Summary: Public Domain Curses for X11 Development Files
|
19
|
+
Group: Development/Libraries
|
20
|
+
Requires: %{name}%{?_isa} = %{version}-%{release}
|
21
|
+
|
22
|
+
%description
|
23
|
+
PDCurses for X11 is an implementation of the curses library that lets
|
24
|
+
you build text-mode curses programs as native X11 applications.
|
25
|
+
This package contains the runtime library.
|
26
|
+
|
27
|
+
For more information, visit http://pdcurses.org
|
28
|
+
|
29
|
+
%description devel
|
30
|
+
PDCurses for X11 is an implementation of the curses library that lets
|
31
|
+
you build text-mode curses programs as native X11 applications.
|
32
|
+
This package contains the development files.
|
33
|
+
|
34
|
+
For more information, visit http://pdcurses.org
|
35
|
+
|
36
|
+
%prep
|
37
|
+
%setup -q
|
38
|
+
|
39
|
+
%build
|
40
|
+
cd x11
|
41
|
+
./configure --prefix=%{base} --libdir=%{_libdir} --enable-libdir-change=no
|
42
|
+
make
|
43
|
+
|
44
|
+
%install
|
45
|
+
cd x11
|
46
|
+
make DESTDIR=$RPM_BUILD_ROOT install
|
47
|
+
|
48
|
+
%clean
|
49
|
+
rm -rf $RPM_BUILD_ROOT
|
50
|
+
rm -rf $RPM_BUILD_DIR/%{name}-%{version}
|
51
|
+
|
52
|
+
%files
|
53
|
+
%defattr(-,root,root)
|
54
|
+
%{_libdir}/libXCurses.so.%{version}
|
55
|
+
%{_libdir}/libXpanel.so.%{version}
|
56
|
+
|
57
|
+
%files devel
|
58
|
+
%defattr(-,root,root)
|
59
|
+
%{_bindir}/xcurses-config
|
60
|
+
%{_libdir}/libXCurses.a
|
61
|
+
%{_libdir}/libXpanel.a
|
62
|
+
%{_libdir}/libXCurses.so
|
63
|
+
%{_libdir}/libXCurses.so.3
|
64
|
+
%{_libdir}/libXpanel.so
|
65
|
+
%{_libdir}/libXpanel.so.3
|
66
|
+
%{_includedir}/xcurses.h
|
67
|
+
%{_includedir}/xpanel.h
|
68
|
+
%{_includedir}/xcurses/curses.h
|
69
|
+
%{_includedir}/xcurses/panel.h
|
70
|
+
%{_includedir}/xcurses/term.h
|
71
|
+
|
72
|
+
%post
|
73
|
+
ldconfig %{_libdir}
|
74
|
+
|
75
|
+
%postun
|
76
|
+
ldconfig %{_libdir}
|
77
|
+
|
78
|
+
%post devel
|
79
|
+
ldconfig %{_libdir}
|
80
|
+
|
81
|
+
%postun devel
|
82
|
+
ldconfig %{_libdir}
|
@@ -0,0 +1,62 @@
|
|
1
|
+
PDCurses for X11
|
2
|
+
================
|
3
|
+
|
4
|
+
This is a port of PDCurses for X11, aka XCurses. It is designed to
|
5
|
+
allow existing curses programs to be re-compiled with PDCurses,
|
6
|
+
resulting in native X11 programs.
|
7
|
+
|
8
|
+
|
9
|
+
Building
|
10
|
+
--------
|
11
|
+
|
12
|
+
- Run "./configure". To build the wide-character version of the library,
|
13
|
+
specify "--enable-widec" as a parameter. To use X Input Methods, add
|
14
|
+
"--enable-xim". I recommend these options, but I haven't yet made
|
15
|
+
them the defaults, for the sake of backwards compatibility and due to
|
16
|
+
their new and relatively untested status.
|
17
|
+
|
18
|
+
If your system is lacking in UTF-8 support, you can force the use of
|
19
|
+
UTF-8 instead of the system locale via "--enable-force-utf8". This is
|
20
|
+
generally more useful in Windows.
|
21
|
+
|
22
|
+
If configure can't find your X include files or X libraries, you can
|
23
|
+
specify the paths with the arguments "--x-includes=inc_path" and/or
|
24
|
+
"--x-libraries=lib_path".
|
25
|
+
|
26
|
+
By default, the library and demo programs are built with the optimizer
|
27
|
+
switch -O2. You can turn this off, and turn on debugging (-g), by
|
28
|
+
adding "--enable-debug" to the configure command.
|
29
|
+
|
30
|
+
- Run "make". This should build libXCurses and all the demo programs.
|
31
|
+
|
32
|
+
- Optionally, run "make install". curses.h and panel.h will be renamed
|
33
|
+
when installed (to xcurses.h and xpanel.h), to avoid conflicts with
|
34
|
+
any existing curses installations. Unrenamed copies of curses.h and
|
35
|
+
panel.h are installed in (by default) /usr/local/include/xcurses.
|
36
|
+
|
37
|
+
libXpanel is just a symlink to libXCurses. Both curses and panel
|
38
|
+
functions are in the main library.
|
39
|
+
|
40
|
+
|
41
|
+
Distribution Status
|
42
|
+
-------------------
|
43
|
+
|
44
|
+
As of April 13, 2006, the files in this directory are released to the
|
45
|
+
Public Domain, except for ScrollBox*, which are under essentially the
|
46
|
+
MIT X License.
|
47
|
+
|
48
|
+
|
49
|
+
To be Done
|
50
|
+
----------
|
51
|
+
|
52
|
+
- have newterm() create a new X window
|
53
|
+
|
54
|
+
- provide a command line parsing function to enable X command line
|
55
|
+
arguments to be parsed and stripped from the arguments passed back
|
56
|
+
to the calling procedure.
|
57
|
+
|
58
|
+
|
59
|
+
Acknowledgements
|
60
|
+
----------------
|
61
|
+
|
62
|
+
X11 port was provided by Mark Hessling <mark@rexx.org>
|
@@ -0,0 +1,319 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright 1989 O'Reilly and Associates, Inc.
|
3
|
+
|
4
|
+
The X Consortium, and any party obtaining a copy of these files from
|
5
|
+
the X Consortium, directly or indirectly, is granted, free of charge, a
|
6
|
+
full and unrestricted irrevocable, world-wide, paid up, royalty-free,
|
7
|
+
nonexclusive right and license to deal in this software and
|
8
|
+
documentation files (the "Software"), including without limitation the
|
9
|
+
rights to use, copy, modify, merge, publish, distribute, sublicense,
|
10
|
+
and/or sell copies of the Software, and to permit persons who receive
|
11
|
+
copies from any such party to do so. This license includes without
|
12
|
+
limitation a license to do the foregoing actions under any patents of
|
13
|
+
the party supplying this software to the X Consortium.
|
14
|
+
*/
|
15
|
+
|
16
|
+
/* ScrollBox.c - scrollBox composite widget */
|
17
|
+
|
18
|
+
#include <X11/IntrinsicP.h>
|
19
|
+
#include <X11/StringDefs.h>
|
20
|
+
#include <X11/Shell.h>
|
21
|
+
|
22
|
+
#include "x11/ScrollBoxP.h"
|
23
|
+
|
24
|
+
#include <stdio.h>
|
25
|
+
|
26
|
+
#define INITIAL_WIDTH 300
|
27
|
+
#define INITIAL_HEIGHT 300
|
28
|
+
|
29
|
+
/************************************************************************
|
30
|
+
* *
|
31
|
+
* scrollBox Resources *
|
32
|
+
* *
|
33
|
+
************************************************************************/
|
34
|
+
|
35
|
+
static XtResource resources[] =
|
36
|
+
{
|
37
|
+
{ XtNhSpace, XtCHSpace, XtRDimension, sizeof(Dimension),
|
38
|
+
XtOffset(ScrollBoxWidget, scrollBox.h_space),
|
39
|
+
XtRImmediate, (XtPointer)4 },
|
40
|
+
{ XtNvSpace, XtCVSpace, XtRDimension, sizeof(Dimension),
|
41
|
+
XtOffset(ScrollBoxWidget, scrollBox.v_space),
|
42
|
+
XtRImmediate, (XtPointer)4 },
|
43
|
+
{ XtNheightInc, XtCHeightInc, XtRDimension, sizeof(Dimension),
|
44
|
+
XtOffset(ScrollBoxWidget, scrollBox.increment_height),
|
45
|
+
XtRImmediate, (XtPointer)13 },
|
46
|
+
{ XtNwidthInc, XtCWidthInc, XtRDimension, sizeof(Dimension),
|
47
|
+
XtOffset(ScrollBoxWidget, scrollBox.increment_width),
|
48
|
+
XtRImmediate, (XtPointer)7 },
|
49
|
+
};
|
50
|
+
|
51
|
+
/************************************************************************
|
52
|
+
* *
|
53
|
+
* Full class record constant *
|
54
|
+
* *
|
55
|
+
************************************************************************/
|
56
|
+
|
57
|
+
static void Initialize(Widget, Widget, ArgList, Cardinal *);
|
58
|
+
static void Resize(Widget);
|
59
|
+
static Boolean SetValues(Widget, Widget, Widget, ArgList, Cardinal *);
|
60
|
+
static void ChangeManaged(Widget);
|
61
|
+
static XtGeometryResult QueryGeometry(Widget, XtWidgetGeometry *,
|
62
|
+
XtWidgetGeometry *);
|
63
|
+
static XtGeometryResult GeometryManager(Widget, XtWidgetGeometry *,
|
64
|
+
XtWidgetGeometry *);
|
65
|
+
static void RefigureLocations(Widget);
|
66
|
+
|
67
|
+
ScrollBoxClassRec scrollBoxClassRec = {
|
68
|
+
{
|
69
|
+
/* core_class fields */
|
70
|
+
/* superclass */ (WidgetClass) &compositeClassRec,
|
71
|
+
/* class_name */ "scrollBox",
|
72
|
+
/* widget_size */ sizeof(ScrollBoxRec),
|
73
|
+
/* class_initialize */ NULL,
|
74
|
+
/* class_part_init */ NULL,
|
75
|
+
/* class_inited */ FALSE,
|
76
|
+
/* initialize */ Initialize,
|
77
|
+
/* initialize_hook */ NULL,
|
78
|
+
/* realize */ XtInheritRealize,
|
79
|
+
/* actions */ NULL,
|
80
|
+
/* num_actions */ 0,
|
81
|
+
/* resources */ resources,
|
82
|
+
/* num_resources */ XtNumber(resources),
|
83
|
+
/* xrm_class */ NULLQUARK,
|
84
|
+
/* compress_motion */ TRUE,
|
85
|
+
/* compress_exposure */ TRUE,
|
86
|
+
/* compress_enterleave */ TRUE,
|
87
|
+
/* visible_interest */ FALSE,
|
88
|
+
/* destroy */ NULL,
|
89
|
+
/* resize */ Resize,
|
90
|
+
/* expose */ NULL,
|
91
|
+
/* set_values */ SetValues,
|
92
|
+
/* set_values_hook */ NULL,
|
93
|
+
/* set_values_almost */ XtInheritSetValuesAlmost,
|
94
|
+
/* get_values_hook */ NULL,
|
95
|
+
/* accept_focus */ NULL,
|
96
|
+
/* version */ XtVersion,
|
97
|
+
/* callback_private */ NULL,
|
98
|
+
/* tm_table */ NULL,
|
99
|
+
/* query_geometry */ QueryGeometry,
|
100
|
+
/* display_accelerator */ XtInheritDisplayAccelerator,
|
101
|
+
/* extension */ NULL
|
102
|
+
},{
|
103
|
+
/* composite_class fields */
|
104
|
+
/* geometry_manager */ GeometryManager,
|
105
|
+
/* change_managed */ ChangeManaged,
|
106
|
+
/* insert_child */ XtInheritInsertChild,
|
107
|
+
/* delete_child */ XtInheritDeleteChild,
|
108
|
+
/* extension */ NULL
|
109
|
+
},{
|
110
|
+
/* scrollBox class fields */
|
111
|
+
/* empty */ 0,
|
112
|
+
}
|
113
|
+
};
|
114
|
+
|
115
|
+
WidgetClass scrollBoxWidgetClass = (WidgetClass)&scrollBoxClassRec;
|
116
|
+
|
117
|
+
|
118
|
+
/************************************************************************
|
119
|
+
* *
|
120
|
+
* Private Routines *
|
121
|
+
* *
|
122
|
+
************************************************************************/
|
123
|
+
|
124
|
+
/* Do a layout, either actually assigning positions, or just
|
125
|
+
calculating size. */
|
126
|
+
|
127
|
+
static void DoLayout(Widget w, Boolean doit)
|
128
|
+
{
|
129
|
+
ScrollBoxWidget sbw = (ScrollBoxWidget)w;
|
130
|
+
Widget wmain, vscroll, hscroll, child;
|
131
|
+
Dimension mw, mh; /* main window */
|
132
|
+
Dimension vh; /* vertical scrollbar length (height) */
|
133
|
+
Dimension hw; /* horizontal scrollbar length (width) */
|
134
|
+
Position vx;
|
135
|
+
Position hy;
|
136
|
+
Cardinal i;
|
137
|
+
|
138
|
+
if (sbw->composite.num_children != 3)
|
139
|
+
XtAppError(XtWidgetToApplicationContext(w),
|
140
|
+
"ScrollBox: must manage exactly three widgets.");
|
141
|
+
|
142
|
+
for (i = 0; i < sbw->composite.num_children; i++)
|
143
|
+
{
|
144
|
+
child = sbw->composite.children[i];
|
145
|
+
|
146
|
+
if (!XtIsManaged(child))
|
147
|
+
XtAppError(XtWidgetToApplicationContext(w),
|
148
|
+
"ScrollBox: all three widgets must be managed.");
|
149
|
+
}
|
150
|
+
|
151
|
+
/* Child one is the main window, two is the vertical scrollbar,
|
152
|
+
and three is the horizontal scrollbar. */
|
153
|
+
|
154
|
+
wmain = sbw->composite.children[0];
|
155
|
+
vscroll = sbw->composite.children[1];
|
156
|
+
hscroll = sbw->composite.children[2];
|
157
|
+
|
158
|
+
/* Size all three widgets so that space is fully utilized. */
|
159
|
+
|
160
|
+
mw = sbw->core.width - (2 * sbw->scrollBox.h_space) -
|
161
|
+
vscroll->core.width - (2 * vscroll->core.border_width) -
|
162
|
+
(2 * wmain->core.border_width);
|
163
|
+
|
164
|
+
mh = sbw->core.height - (2 * sbw->scrollBox.v_space) -
|
165
|
+
hscroll->core.height - (2 * hscroll->core.border_width) -
|
166
|
+
(2 * wmain->core.border_width);
|
167
|
+
|
168
|
+
/* Force the main window to be sized to the appropriate increment. */
|
169
|
+
|
170
|
+
mw = (mw / sbw->scrollBox.increment_width) *
|
171
|
+
sbw->scrollBox.increment_width;
|
172
|
+
|
173
|
+
mh = ((mh / sbw->scrollBox.increment_height) *
|
174
|
+
sbw->scrollBox.increment_height) +
|
175
|
+
sbw->scrollBox.increment_height;
|
176
|
+
|
177
|
+
vx = wmain->core.x + mw + sbw->scrollBox.h_space +
|
178
|
+
wmain->core.border_width + vscroll->core.border_width;
|
179
|
+
|
180
|
+
hy = wmain->core.y + mh + sbw->scrollBox.v_space +
|
181
|
+
wmain->core.border_width + hscroll->core.border_width;
|
182
|
+
|
183
|
+
vh = mh; /* scrollbars are always same length as main window */
|
184
|
+
hw = mw;
|
185
|
+
|
186
|
+
if (doit)
|
187
|
+
{
|
188
|
+
XtResizeWidget(wmain, mw, mh, 1);
|
189
|
+
|
190
|
+
XtResizeWidget(vscroll, vscroll->core.width, vh, 1);
|
191
|
+
XtMoveWidget(vscroll, vx, vscroll->core.y);
|
192
|
+
|
193
|
+
XtResizeWidget(hscroll, hw, hscroll->core.height, 1);
|
194
|
+
XtMoveWidget(hscroll, hscroll->core.x, hy);
|
195
|
+
}
|
196
|
+
}
|
197
|
+
|
198
|
+
static XtGeometryResult GeometryManager(Widget w, XtWidgetGeometry *request,
|
199
|
+
XtWidgetGeometry *reply)
|
200
|
+
{
|
201
|
+
XtWidgetGeometry allowed;
|
202
|
+
|
203
|
+
if (request->request_mode & ~(XtCWQueryOnly | CWWidth | CWHeight))
|
204
|
+
return XtGeometryNo;
|
205
|
+
|
206
|
+
if (request->request_mode & CWWidth)
|
207
|
+
allowed.width = request->width;
|
208
|
+
else
|
209
|
+
allowed.width = w->core.width;
|
210
|
+
|
211
|
+
if (request->request_mode & CWHeight)
|
212
|
+
allowed.height = request->height;
|
213
|
+
else
|
214
|
+
allowed.height = w->core.height;
|
215
|
+
|
216
|
+
if (allowed.width == w->core.width && allowed.height == w->core.height)
|
217
|
+
return XtGeometryNo;
|
218
|
+
|
219
|
+
if (!(request->request_mode & XtCWQueryOnly))
|
220
|
+
RefigureLocations(w);
|
221
|
+
|
222
|
+
return XtGeometryYes;
|
223
|
+
}
|
224
|
+
|
225
|
+
static void RefigureLocations(Widget w)
|
226
|
+
{
|
227
|
+
DoLayout(w, False);
|
228
|
+
}
|
229
|
+
|
230
|
+
/* Calculate preferred size. We can't just use the current sizes
|
231
|
+
of the children, because that calculation would always end up with
|
232
|
+
our current size. Could query each child, and use that size to
|
233
|
+
recalculate a size for us, then if it ends up being larger than width
|
234
|
+
and height passed in, accept bounding box. However, we know our
|
235
|
+
children and they don't have any particular preferred geometry,
|
236
|
+
except the bigger the better. Therefore, if the parent suggested a
|
237
|
+
size, we'll take it. */
|
238
|
+
|
239
|
+
static XtGeometryResult QueryGeometry(Widget w, XtWidgetGeometry *request,
|
240
|
+
XtWidgetGeometry *reply_return)
|
241
|
+
{
|
242
|
+
XtGeometryResult result=XtGeometryNo;
|
243
|
+
|
244
|
+
request->request_mode &= CWWidth | CWHeight;
|
245
|
+
|
246
|
+
/* parent isn't going to change w or h, so nothing to re-compute */
|
247
|
+
|
248
|
+
if (request->request_mode == 0)
|
249
|
+
return XtGeometryYes;
|
250
|
+
|
251
|
+
/* if proposed size is large enough, accept it. Otherwise, suggest
|
252
|
+
our arbitrary initial size. */
|
253
|
+
|
254
|
+
if (request->request_mode & CWHeight)
|
255
|
+
{
|
256
|
+
if (request->height < INITIAL_HEIGHT)
|
257
|
+
{
|
258
|
+
result = XtGeometryAlmost;
|
259
|
+
reply_return->height = INITIAL_HEIGHT;
|
260
|
+
reply_return->request_mode &= CWHeight;
|
261
|
+
}
|
262
|
+
else
|
263
|
+
result = XtGeometryYes;
|
264
|
+
}
|
265
|
+
|
266
|
+
if (request->request_mode & CWWidth)
|
267
|
+
{
|
268
|
+
if (request->width < INITIAL_WIDTH)
|
269
|
+
{
|
270
|
+
result = XtGeometryAlmost;
|
271
|
+
reply_return->width = INITIAL_WIDTH;
|
272
|
+
reply_return->request_mode &= CWWidth;
|
273
|
+
}
|
274
|
+
else
|
275
|
+
result = XtGeometryYes;
|
276
|
+
}
|
277
|
+
|
278
|
+
return result;
|
279
|
+
}
|
280
|
+
|
281
|
+
/* Actually layout the scrollBox */
|
282
|
+
|
283
|
+
static void Resize(Widget w)
|
284
|
+
{
|
285
|
+
DoLayout(w, True);
|
286
|
+
}
|
287
|
+
|
288
|
+
static void ChangeManaged(Widget w)
|
289
|
+
{
|
290
|
+
DoLayout(w, True);
|
291
|
+
}
|
292
|
+
|
293
|
+
static void Initialize(Widget request, Widget new,
|
294
|
+
ArgList args, Cardinal *num_args)
|
295
|
+
{
|
296
|
+
ScrollBoxWidget newsbw = (ScrollBoxWidget)new;
|
297
|
+
|
298
|
+
if (newsbw->core.width == 0)
|
299
|
+
newsbw->core.width = INITIAL_WIDTH;
|
300
|
+
|
301
|
+
if (newsbw->core.height == 0)
|
302
|
+
newsbw->core.height = INITIAL_HEIGHT;
|
303
|
+
|
304
|
+
}
|
305
|
+
|
306
|
+
static Boolean SetValues(Widget current, Widget request, Widget new,
|
307
|
+
ArgList args, Cardinal *num_args)
|
308
|
+
{
|
309
|
+
ScrollBoxWidget sbwcurrent = (ScrollBoxWidget)current;
|
310
|
+
ScrollBoxWidget sbwnew = (ScrollBoxWidget)new;
|
311
|
+
|
312
|
+
/* need to relayout if h_space or v_space change */
|
313
|
+
|
314
|
+
if ((sbwnew->scrollBox.h_space != sbwcurrent->scrollBox.h_space) ||
|
315
|
+
(sbwnew->scrollBox.v_space != sbwcurrent->scrollBox.v_space))
|
316
|
+
DoLayout(new, True);
|
317
|
+
|
318
|
+
return False;
|
319
|
+
}
|