├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── FILES ├── INSTALL ├── Makefile.am ├── NEWS ├── NLS ├── README ├── README.md ├── TODO ├── acinclude.m4 ├── cole ├── AUTHORS ├── Makefile.am ├── README-cole ├── THANKS ├── cole.c ├── cole.h ├── internal.c ├── internal.h ├── olecod.c ├── oledecod.c ├── support.c ├── support.h └── version.c ├── common ├── Makefile.am ├── any2xpm ├── bitmaps │ ├── Makefile.am │ ├── README │ ├── SO3.xpm │ ├── addressbook.xpm │ ├── back.xpm │ ├── blank.xpm │ ├── bold.gif │ ├── bold.xpm │ ├── book-closed.xpm │ ├── book-open.xpm │ ├── borders.gif │ ├── borders.xpm │ ├── cancel.xpm │ ├── center.xpm │ ├── composer.xpm │ ├── compress.xpm │ ├── copy.xpm │ ├── copyright.gif │ ├── copyright.xpm │ ├── cut.xpm │ ├── data.xpm │ ├── editor.xpm │ ├── egon.xpm │ ├── egon_fg.gif │ ├── fld_closed.xpm │ ├── fld_new.xpm │ ├── fld_open.gif │ ├── fld_open.xpm │ ├── fld_up.xpm │ ├── fonts.xpm │ ├── fromnone │ ├── ghost.xpm │ ├── gnome │ │ ├── Makefile.am │ │ ├── back.xpm │ │ ├── bold.xpm │ │ ├── cancel.xpm │ │ ├── copy.xpm │ │ ├── cut.xpm │ │ ├── fld_open.xpm │ │ ├── forward.xpm │ │ ├── handlebg.xpm │ │ ├── hcenter.xpm │ │ ├── hfull.xpm │ │ ├── hleft.xpm │ │ ├── home.xpm │ │ ├── hright.xpm │ │ ├── info.xpm │ │ ├── italic.xpm │ │ ├── new.xpm │ │ ├── next.xpm │ │ ├── paste.xpm │ │ ├── play.xpm │ │ ├── preview.xpm │ │ ├── previous.xpm │ │ ├── printer.xpm │ │ ├── quit.xpm │ │ ├── redo.xpm │ │ ├── reload.xpm │ │ ├── save.xpm │ │ ├── saveas.xpm │ │ ├── search.xpm │ │ ├── spell.xpm │ │ ├── stop.xpm │ │ ├── uchar.xpm │ │ └── undo.xpm │ ├── grid.gif │ ├── grid.xpm │ ├── gvu.xpm │ ├── handlebg.xpm │ ├── hcenter.gif │ ├── hcenter.xpm │ ├── hfull.xpm │ ├── hleft.gif │ ├── hleft.xpm │ ├── home.xpm │ ├── hright.gif │ ├── hright.xpm │ ├── icons.xpm │ ├── image.xpm │ ├── info.gif │ ├── info.xpm │ ├── insert.xpm │ ├── italic.gif │ ├── italic.xpm │ ├── kde │ │ ├── Makefile.am │ │ ├── back.xpm │ │ ├── cancel.xpm │ │ ├── copy.xpm │ │ ├── cut.xpm │ │ ├── fld_open.xpm │ │ ├── forward.xpm │ │ ├── handlebg.xpm │ │ ├── home.xpm │ │ ├── info.xpm │ │ ├── larger.xpm │ │ ├── new.xpm │ │ ├── next.xpm │ │ ├── paste.xpm │ │ ├── play.xpm │ │ ├── preview.xpm │ │ ├── previous.xpm │ │ ├── printer.xpm │ │ ├── quit.xpm │ │ ├── reload.xpm │ │ ├── save.xpm │ │ ├── saveas.xpm │ │ ├── search.xpm │ │ ├── smaller.xpm │ │ └── stop.xpm │ ├── kde2 │ │ ├── Makefile.am │ │ ├── back.xpm │ │ ├── bold.xpm │ │ ├── borders.xpm │ │ ├── cancel.xpm │ │ ├── copy.xpm │ │ ├── cut.xpm │ │ ├── editor.xpm │ │ ├── fld_new.xpm │ │ ├── fld_open.xpm │ │ ├── fld_up.xpm │ │ ├── forward.xpm │ │ ├── grid.xpm │ │ ├── handlebg.xpm │ │ ├── hcenter.xpm │ │ ├── hfull.xpm │ │ ├── hleft.xpm │ │ ├── home.xpm │ │ ├── hright.xpm │ │ ├── info.xpm │ │ ├── italic.xpm │ │ ├── larger.xpm │ │ ├── lline.xpm │ │ ├── new.xpm │ │ ├── none.xpm │ │ ├── paste.xpm │ │ ├── preview.xpm │ │ ├── printer.xpm │ │ ├── quit.xpm │ │ ├── redo.xpm │ │ ├── reload.xpm │ │ ├── rline.xpm │ │ ├── save.xpm │ │ ├── saveas.xpm │ │ ├── security.xpm │ │ ├── sigma.xpm │ │ ├── smaller.xpm │ │ ├── spell.xpm │ │ ├── stop.xpm │ │ ├── uchar.xpm │ │ ├── uline.xpm │ │ └── undo.xpm │ ├── landscape.xpm │ ├── larger.xpm │ ├── lline.xpm │ ├── mail.xpm │ ├── ms │ │ ├── Makefile.am │ │ ├── bold.xpm │ │ ├── copy.xpm │ │ ├── cut.xpm │ │ ├── fld_open.xpm │ │ ├── handlebg.xpm │ │ ├── hcenter.xpm │ │ ├── hfull.xpm │ │ ├── hleft.xpm │ │ ├── hright.xpm │ │ ├── italic.xpm │ │ ├── new.xpm │ │ ├── paste.xpm │ │ ├── plotter.xpm │ │ ├── printer.xpm │ │ ├── redo.xpm │ │ ├── save.xpm │ │ ├── saveas.xpm │ │ ├── sigma.xpm │ │ ├── sortaz.xpm │ │ ├── sortza.xpm │ │ └── undo.xpm │ ├── navigator.xpm │ ├── netscape.xpm │ ├── new.gif │ ├── new.xpm │ ├── news.xpm │ ├── next.gif │ ├── next.xpm │ ├── none.gif │ ├── none.xpm │ ├── overwrite.xpm │ ├── paste.xpm │ ├── play.gif │ ├── play.xpm │ ├── plotter.gif │ ├── plotter.xpm │ ├── portrait.xpm │ ├── preview.gif │ ├── preview.xpm │ ├── previous.gif │ ├── previous.xpm │ ├── printer.gif │ ├── printer.xpm │ ├── pw.xpm │ ├── pw_fg.gif │ ├── quit.xpm │ ├── rbm.xbm │ ├── redo.xpm │ ├── reload.xpm │ ├── rline.xpm │ ├── save.gif │ ├── save.xpm │ ├── search.xpm │ ├── security.xpm │ ├── siag.xpm │ ├── siag_fg.gif │ ├── siagoffice.xpm │ ├── sigma.gif │ ├── sigma.xpm │ ├── smaller.xpm │ ├── sortaz.xpm │ ├── sortmode.xpm │ ├── sortza.xpm │ ├── spell.xpm │ ├── stop.gif │ ├── stop.xpm │ ├── strike.xpm │ ├── table.xpm │ ├── tonone │ ├── uchar.gif │ ├── uchar.xpm │ ├── uline.gif │ ├── uline.xpm │ ├── undo.xpm │ ├── unknown.xpm │ ├── vbottom.gif │ ├── vbottom.xpm │ ├── viewmode.xpm │ ├── vtop.gif │ ├── vtop.xpm │ ├── xedplus.xpm │ ├── xfiler.xpm │ ├── xpm2gif │ └── xterm16.xpm ├── common.c ├── common.h ├── common.scm ├── dictionary.cs ├── dictionary.da ├── dictionary.de ├── dictionary.es ├── dictionary.fr ├── dictionary.gl ├── dictionary.hr ├── dictionary.hu ├── dictionary.it ├── dictionary.nl ├── dictionary.no ├── dictionary.pl ├── dictionary.pt_BR ├── dictionary.ru ├── dictionary.sv ├── docs │ ├── COPYING │ ├── COPYING.LIB │ ├── Copyright │ ├── Makefile.am │ ├── credits.html │ ├── fonts.html │ ├── form.html │ ├── interpreters.html │ ├── office.html │ ├── plugins.html │ ├── search.html │ ├── siaghelp │ └── siaghelp.html ├── kdeinst ├── newdict ├── o3read.c ├── o3read.h ├── plugin.h ├── position.scm ├── ps.c ├── ps.h ├── rgb.c ├── siag.dfmext ├── siag.magic ├── siagrun ├── themes │ ├── Makefile.am │ ├── README │ ├── theme.athena │ ├── theme.classic │ ├── theme.gnome │ ├── theme.kde │ ├── theme.kde2 │ └── theme.ms └── tools.scm ├── config.guess ├── config.h.in ├── config.sub ├── configure.ac ├── egon ├── Makefile.am ├── animator.scm ├── buffer.c ├── cmds.c ├── docs │ ├── COPYING │ ├── Makefile.am │ ├── commands.html │ ├── concepts.html │ ├── egon.1 │ ├── egon.gif │ ├── egon.html │ ├── fileformats.html │ ├── intro.html │ ├── invocation.html │ ├── keys.html │ ├── mouse.html │ ├── scheme.html │ ├── scrollbars.html │ ├── strings.html │ └── toolbar.html ├── egon.h ├── egon.scm ├── examples │ ├── Makefile.am │ ├── bounce.egon │ ├── ms.egon │ ├── propeller.egon │ └── rondo.egon ├── external.load ├── external.save ├── fileio.c ├── fileio_c.c ├── fileio_egon.c ├── fileio_html.c ├── fileio_mgp.c ├── fileio_ppt.c ├── fileio_scm.c ├── fileio_txt.c ├── guilei.c ├── main.c ├── matrix.c ├── menu.scm ├── mgptotxt ├── pythoni.c ├── railway.c ├── rubyi.c ├── siodi.c ├── tcli.c └── user_interface.h ├── gvu ├── COPYING ├── Gvu.ad ├── Gvu.kdelnk ├── Makefile.am ├── README ├── blank.xpm ├── callbacks.c ├── comments.doc ├── copyright.html ├── dot.xpm ├── gs.interface ├── gv.h ├── gvu-ad.h ├── gvu.1 ├── gvu.html ├── main.c └── misc.c ├── mkinstalldirs ├── o3read ├── Makefile.am ├── dbtohtml.c ├── o3read.c ├── o3read.h ├── o3tohtml.c └── utf8tolatin1.c ├── plugins ├── Form.ad ├── Makefile.am ├── README ├── clipart.c ├── dummy.c ├── dummy.scm ├── dummy_plugin.1 ├── form-ad.h ├── form.c ├── hello.c ├── image.c ├── plot.c ├── plugin.scm ├── siodi.c └── text.c ├── pw ├── Makefile.am ├── buffer.c ├── cmds.c ├── docs │ ├── COPYING │ ├── Makefile.am │ ├── commands.html │ ├── concepts.html │ ├── fileformats.html │ ├── intro.html │ ├── invocation.html │ ├── keys.html │ ├── mouse.html │ ├── pw.1 │ ├── pw.gif │ ├── pw.html │ ├── scheme.html │ ├── scrollbars.html │ ├── spell.html │ ├── strings.html │ └── toolbar.html ├── examples │ ├── Makefile.am │ ├── changes.pw │ ├── chead.doc │ ├── chead.html │ ├── chead.pw │ ├── chead.rtf │ ├── chead.txt │ ├── color.pw │ ├── egon.pw │ ├── egon.rtf │ ├── morefonts.pw │ ├── newpw.pw │ ├── rtfex.rtf │ ├── rtftest.rtf │ ├── rtftest2.rtf │ ├── rtftest3.rtf │ ├── standard.bmk │ ├── styles.html │ ├── styles.pw │ ├── styles2.pw │ ├── svenska.pw │ └── svenska.rtf ├── external.load ├── external.save ├── fileio.c ├── fileio_html.c ├── fileio_pw.c ├── fileio_rtf.c ├── fileio_sxw.c ├── fileio_txt.c ├── guilei.c ├── main.c ├── matrix.c ├── menu.scm ├── position.c ├── pw.h ├── pw.scm ├── pythoni.c ├── railway.c ├── rubyi.c ├── siodi.c ├── styles.scm ├── tcli.c └── user_interface.h ├── siag ├── 123.scm ├── Makefile.am ├── buffer.c ├── calc.h ├── ccmath.c ├── ccmath.scm ├── ci.c ├── cmds.c ├── data.scm ├── db.c ├── docs │ ├── COPYING │ ├── Makefile.am │ ├── README │ ├── c-expr.html │ ├── commands.html │ ├── concepts.html │ ├── excel.html │ ├── fileformats.html │ ├── form.html │ ├── gnuplot.html │ ├── intro.html │ ├── invocation.html │ ├── keys.html │ ├── mouse.html │ ├── scheme.html │ ├── scrollbars.html │ ├── siag-functions.html │ ├── siag.1 │ ├── siag.gif │ ├── siag.html │ ├── strings.html │ └── toolbar.html ├── examples │ ├── Makefile.am │ ├── allfuncs.wk1 │ ├── allfunctions.siag │ ├── cheeses.siag │ ├── complex.siag │ ├── database.siag │ ├── emprestimo.wk1 │ ├── example.wk1 │ ├── fibonacci-c.siag │ ├── fibonacci.siag │ ├── fonts.siag │ ├── foo.siag │ ├── foo.wk1 │ ├── formtest.siag │ ├── gmp.siag │ ├── group.siag │ ├── heaven-c.siag │ ├── heaven-guile.siag │ ├── heaven-tcl.siag │ ├── heaven.siag │ ├── hyperhelp.siag │ ├── image_plugin.siag │ ├── kalkyl.siag │ ├── mailaddr.csv │ ├── morefonts.siag │ ├── multtabl-c.siag │ ├── multtabl.siag │ ├── obras.wk1 │ ├── passwd.siag │ ├── plot.siag │ ├── portfolj.siag │ ├── prestacao.wk1 │ ├── property.siag │ ├── sincos.siag │ ├── strfib.siag │ ├── strings.siag │ ├── surface1.siag │ ├── surface2.siag │ ├── tables.wk1 │ └── tcltest.siag ├── external.load ├── external.save ├── fileio.c ├── fileio.h ├── fileio_abs.c ├── fileio_html.c ├── fileio_latex.c ├── fileio_ps.c ├── fileio_scm.c ├── fileio_siag.c ├── fileio_sxc.c ├── fileio_tbl.c ├── fileio_txt.c ├── fileio_wk1.c ├── fileio_xls.c ├── filemgr.scm ├── find.scm ├── functions.scm ├── globals.c ├── gmp.c ├── guilei.c ├── keytable.scm ├── mailto.scm ├── main.c ├── mathfunc.c ├── mathfunc.h ├── mathwrap.c ├── matrix.c ├── menu.scm ├── plot.scm ├── position.c ├── pythoni.c ├── railway.c ├── roman.c ├── rubyi.c ├── siag-http.scm ├── siag-net.scm ├── siag.scm ├── siodi.c ├── sort.scm ├── splot.scm ├── stocks.c ├── styles.scm ├── tcli.c ├── toolbar.scm ├── trans.scm ├── user_interface.h ├── usermgr.scm └── window.c ├── siod ├── Makefile.am ├── docs │ ├── Makefile.am │ ├── siod.1 │ └── siod.html ├── md5.c ├── md5.h ├── ndbm.c ├── regex.c ├── silence.i ├── siod.h ├── siod.scm ├── siodp.h ├── slib.c ├── sliba.c ├── slibu.c ├── ss.c ├── ss.h ├── tar.c └── trace.c ├── stamp-h.in ├── stocks ├── AUTHORS ├── Makefile.am ├── README ├── csv.c ├── csv.h ├── currency.c ├── history.c ├── http.c ├── http.h ├── lists.c ├── lists.h ├── stocks.c └── stocks.h ├── tsiag ├── Makefile.am ├── MwUtils.c ├── MwUtils.h ├── fonts.c ├── tsiag.c ├── tsiag.h └── window.c ├── xcommon ├── Ghostview.c ├── Ghostview.h ├── GhostviewP.h ├── Makefile.am ├── StringDefs.scm ├── ad2c ├── dialogs-ad.h ├── embed.c ├── embed.h ├── filesel-ad.h ├── form.scm ├── forminput.c ├── nws-ad.h ├── plugin.c ├── plugin.h ├── xcommon-ad.h ├── xcommon.c └── xcommon.h ├── xed ├── Makefile.am ├── README ├── Xed.ad ├── Xedplus.kdelnk ├── app-defaults.h ├── commands.c ├── dnd.c ├── edit.c ├── file.c ├── file_sel.c ├── jump.c ├── search.c ├── special.c ├── warning.c ├── xedit.c ├── xedit.h ├── xedplus.1 └── xedplus.html ├── xegon ├── Egon.ad ├── Egon.kdelnk ├── Makefile.am ├── app-defaults.h ├── fileio_gif.c ├── fileio_ps.c ├── selection.c ├── window.c ├── x-egon.kdelnk ├── xegon.c └── xegon.h ├── xfiler ├── Bitmaps.c ├── Chmod.c ├── Comms.c ├── Comms.h ├── Confirm.c ├── Delete.c ├── Dirs.c ├── Dnd.c ├── Errors.c ├── Exec.c ├── Files.h ├── FilesMagic ├── Filesrc ├── Fw.c ├── FwActions.c ├── FwCb.c ├── Info.c ├── Main.c ├── Makefile.am ├── Ops.c ├── Popup.c ├── README ├── Runcmd.ad ├── Utils.c ├── Xfiler.ad ├── Xfiler.kdelnk ├── bitmaps │ ├── Makefile.am │ ├── xfm_blackhole.xbm │ ├── xfm_cline.xbm │ ├── xfm_dir.xbm │ ├── xfm_dirlnk.xbm │ ├── xfm_dirmsk.xbm │ ├── xfm_excl.xbm │ ├── xfm_exec.xbm │ ├── xfm_execlnk.xbm │ ├── xfm_execmsk.xbm │ ├── xfm_file.xbm │ ├── xfm_filemsk.xbm │ ├── xfm_files.xbm │ ├── xfm_filesmsk.xbm │ ├── xfm_fline.xbm │ ├── xfm_icon.xbm │ ├── xfm_larrow.xbm │ ├── xfm_lline.xbm │ ├── xfm_noentry.xbm │ ├── xfm_noentrymsk.xbm │ ├── xfm_notick.xbm │ ├── xfm_rarrow.xbm │ ├── xfm_symlnk.xbm │ ├── xfm_tick.xbm │ ├── xfm_tline.xbm │ ├── xfm_watch.xbm │ ├── xfm_watchmsk.xbm │ └── xfm_wavy_arrow.xbm ├── blank.xpm ├── dot.xpm ├── exec.c ├── magic.c ├── magic.h ├── makeicons ├── pixmaps │ ├── Makefile.am │ ├── xfm_blackhole.xpm │ ├── xfm_dir.xpm │ ├── xfm_dirlnk.xpm │ ├── xfm_exec.xpm │ ├── xfm_execlnk.xpm │ ├── xfm_file.xpm │ ├── xfm_files.xpm │ ├── xfm_icon.xpm │ ├── xfm_symlnk.xpm │ └── xfm_updir.xpm ├── regerror.c ├── regexp.c ├── regexp.h ├── regmagic.h ├── regsub.c ├── runcmd-ad.h ├── runcmd.1 ├── runcmd.c ├── tycoon.c ├── xfiler-ad.h ├── xfiler.1 ├── xfiler.html └── xfmtype.c ├── xpw ├── Makefile.am ├── PW.kdelnk ├── Pw.ad ├── app-defaults.h ├── fileio_ps.c ├── window.c ├── x-pw.kdelnk ├── xpw.c └── xpw.h └── xsiag ├── Makefile.am ├── Siag.ad ├── Siag.kdelnk ├── app-defaults.h ├── window.c ├── x-siag.kdelnk ├── xsiag.c └── xsiag.h /.gitignore: -------------------------------------------------------------------------------- 1 | # autoconf/automake 2 | Makefile.in 3 | /aclocal.m4 4 | /autom4te.cache/ 5 | /compile 6 | /configure 7 | /depcomp 8 | /install-sh 9 | /ltmain.sh 10 | /missing 11 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | 2 | Siag Office was written by Ulric Eriksson and this impressive crowd: 3 | 4 | Dan Gohman (Tsiag, the Curses interface) 5 | Russ McManus (Guile support) 6 | Daniel Risacher (R1C1 references, Gtk support) 7 | Robert Wittams (More Gtk work) 8 | Daniel M Duley (KDE port) 9 | John Jones ("Smart" filling) 10 | Jon K Hellan (Format support in WK1 code) 11 | Dag Nygren (Date/time formatting) 12 | Emmanuel Bigler (HPUX port) 13 | Rob McMullen (TextField widget) 14 | Cesar Crusius (Drag and drop protocol) 15 | George J Carrette (SIOD Scheme interpreter) 16 | 17 | (Clue me in if I forgot somebody.) 18 | 19 | -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/ChangeLog -------------------------------------------------------------------------------- /NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/NLS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | See README.md 2 | -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | 2 | If the last sheet of a buffer is closed, close buffer. 3 | 4 | If the last buffer is closed, close application. 5 | -------------------------------------------------------------------------------- /cole/AUTHORS: -------------------------------------------------------------------------------- 1 | 2 | Current maintainer: 3 | ******************* 4 | 5 | Roberto Arturo Tena Sanchez 6 | 7 | 8 | Authors (Copyright owners): 9 | *************************** 10 | 11 | Roberto Arturo Tena Sanchez 12 | Andrew Scriven 13 | 14 | 15 | See the file `THANKS' to see the contributors. 16 | 17 | -------------------------------------------------------------------------------- /cole/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Process this file with automake to produce Makefile.in 2 | 3 | EXTRA_DIST = README-cole THANKS AUTHORS 4 | 5 | noinst_LIBRARIES = libcole.a 6 | libcole_a_SOURCES = cole.c internal.c oledecod.c olecod.c support.c version.c internal.h support.h cole.h 7 | 8 | -------------------------------------------------------------------------------- /cole/THANKS: -------------------------------------------------------------------------------- 1 | 2 | Thank you all of you that have contributed with this project! 3 | Thank you for help! 4 | 5 | (If you can't find your name here, please email to the current maintainer). 6 | 7 | Thanks to: 8 | ********** 9 | 10 | The LAOLA guy: Martin Schwartz. Without his pretty hack 11 | into Structure Storage and Compound Files this work could never be 12 | possible. 13 | The Engineering Computer Laboratory of La Salle University 14 | Mexico, Campus Mexico City, for supporting Arturo Tena 15 | in cole development. 16 | Bernhard Reiter . OSF fixes. 17 | Shaw Terwilliger . C++ fix. 18 | Caolan McNamara . Debug and more. 19 | Martin Scharpf . Debug. 20 | David Rysdam. The memory dump function cole used in pre 1.x and 1.x releases. 21 | 22 | -------------------------------------------------------------------------------- /cole/version.c: -------------------------------------------------------------------------------- 1 | #ifndef __BORLANDC__ 2 | int cole_major_version = 2; 3 | int cole_minor_version = 0; 4 | int cole_micro_version = 2; 5 | char * cole_version = "2.0.2"; 6 | char * cole_host_info = "i686-pc-linux (i686-pc-linux-gnu): i686, pc, linux-gnu"; 7 | #else 8 | int cole_major_version = 2; 9 | int cole_minor_version = 0; 10 | int cole_micro_version = 1; 11 | char * cole_version = "2.0.1"; 12 | char * cole_host_info = "BORLANDC (Windows): i386, GPL, Win32"; 13 | #endif 14 | -------------------------------------------------------------------------------- /common/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = docs bitmaps themes 3 | 4 | bin_SCRIPTS = siagrun 5 | 6 | noinst_LIBRARIES = libcommon.a 7 | 8 | libcommon_a_SOURCES = common.c ps.c o3read.c 9 | 10 | noinst_HEADERS = common.h plugin.h ps.h o3read.h 11 | 12 | AM_CPPFLAGS = -DLIBDIR=\"$(libdir)/siag\" \ 13 | -DDATADIR=\"$(datadir)/siag\" \ 14 | -DDOCDIR=\"$(docdir)\" \ 15 | -DVERSION_NO=\"@VERSION@\" \ 16 | $(DEBUG) 17 | 18 | CLEANFILES = rgb comments 19 | 20 | commondir = $(datadir)/siag/common 21 | common_DATA = common.scm position.scm tools.scm \ 22 | dictionary.sv dictionary.es dictionary.de dictionary.fr \ 23 | dictionary.it dictionary.nl \ 24 | dictionary.no dictionary.hr dictionary.hu dictionary.da dictionary.pl \ 25 | dictionary.gl dictionary.ru dictionary.cs dictionary.pt_BR 26 | 27 | common_SCRIPTS = any2xpm 28 | 29 | EXTRA_DIST = $(bin_SCRIPTS) $(common_DATA) $(common_SCRIPTS) rgb.c \ 30 | newdict siag.magic siag.dfmext kdeinst 31 | 32 | comments: comments.c 33 | $(CC) -o comments comments.c 34 | 35 | -------------------------------------------------------------------------------- /common/bitmaps/back.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * back_xpm[] = { 3 | "24 24 3 1", 4 | " s None c None", 5 | ". c blue", 6 | "X c green", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " . ", 16 | " .. ", 17 | " ........... ", 18 | " ..XXXXXXXXX.. ", 19 | " ...XXXXXXXXX.. ", 20 | " ............. ", 21 | " ............ ", 22 | " .. ", 23 | " . ", 24 | " ", 25 | " ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " "}; 31 | -------------------------------------------------------------------------------- /common/bitmaps/blank.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * blank_xpm[] = { 3 | "24 24 1 1", 4 | " s None c None", 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 | -------------------------------------------------------------------------------- /common/bitmaps/bold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/bold.gif -------------------------------------------------------------------------------- /common/bitmaps/bold.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * bold_xpm[] = { 3 | "24 24 2 1", 4 | " s None c None", 5 | ". c black", 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 | -------------------------------------------------------------------------------- /common/bitmaps/book-closed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * book_closed_xpm[] = { 3 | "24 24 6 1", 4 | " s None c None", 5 | ". c black", 6 | "X c red", 7 | "o c yellow", 8 | "O c white", 9 | "+ c #808080", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " .. ", 16 | " ..XX. ", 17 | " ..XXXXX. ", 18 | " ..XXXXXXXX. ", 19 | " .ooXXXXXXXXX. ", 20 | " ..ooXXXXXXXXX. ", 21 | " .X.ooXXXXXXXXX. ", 22 | " .XX.ooXXXXXX.. ", 23 | " .XX.ooXXX..O+ ", 24 | " .XX.oo..OO++. ", 25 | " .XX..OO++.. ", 26 | " .X.O++.. ", 27 | " ..+.. ", 28 | " .. ", 29 | " ", 30 | " ", 31 | " ", 32 | " ", 33 | " "}; 34 | -------------------------------------------------------------------------------- /common/bitmaps/book-open.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * book_open_xpm[] = { 3 | "24 24 4 1", 4 | " s None c None", 5 | ". c black", 6 | "X c #808080", 7 | "o c white", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " .. ", 14 | " .Xo. ... ", 15 | " .Xoo. ..oo. ", 16 | " .Xooo.Xooo... ", 17 | " .Xooo.oooo.X. ", 18 | " .Xooo.Xooo.X. ", 19 | " .Xooo.oooo.X. ", 20 | " .Xooo.Xooo.X. ", 21 | " .Xooo.oooo.X. ", 22 | " .Xoo.Xoo..X. ", 23 | " .Xo.o..ooX. ", 24 | " .X..XXXXX. ", 25 | " ..X....... ", 26 | " .. ", 27 | " ", 28 | " ", 29 | " ", 30 | " ", 31 | " "}; 32 | -------------------------------------------------------------------------------- /common/bitmaps/borders.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/borders.gif -------------------------------------------------------------------------------- /common/bitmaps/borders.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * borders_xpm[] = { 3 | "24 24 3 1", 4 | " s None c None", 5 | ". c black", 6 | "X c white", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " .............. ", 13 | " .............. ", 14 | " ..XXXXXXXXXX.. ", 15 | " ..XXXXXXXXXX.. ", 16 | " ..XXXXXXXXXX.. ", 17 | " ..XXXXXXXXXX.. ", 18 | " ..XXXXXXXXXX.. ", 19 | " ..XXXXXXXXXX.. ", 20 | " ..XXXXXXXXXX.. ", 21 | " ..XXXXXXXXXX.. ", 22 | " ..XXXXXXXXXX.. ", 23 | " ..XXXXXXXXXX.. ", 24 | " .............. ", 25 | " .............. ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " "}; 31 | -------------------------------------------------------------------------------- /common/bitmaps/cancel.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * cancel_xpm[] = { 3 | "24 24 3 1", 4 | " s None c None", 5 | ". c black", 6 | "X c red", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ...... ", 13 | " .XXXXXX. ", 14 | " .XXXXXXXX. ", 15 | " .XXXXXXXXXX. ", 16 | " .X X X X X. ", 17 | " . XXX X X X . ", 18 | " .X XX X X X . ", 19 | " .XX X X X X. ", 20 | " . X X X X XX. ", 21 | " .X XX XX X XX. ", 22 | " .XXXXXXXXXX. ", 23 | " .XXXXXXXX. ", 24 | " .XXXXXX. ", 25 | " ...... ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " "}; 31 | -------------------------------------------------------------------------------- /common/bitmaps/center.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * center_xpm[] = { 3 | "24 24 6 1", 4 | " s None c None", 5 | ". c red", 6 | "X c #808080", 7 | "o c white", 8 | "O c #c0c0c0", 9 | "+ c black", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ... ", 15 | " . . . ", 16 | " XXXXX.XXX ", 17 | " Xoooo.ooOX ", 18 | " Xoooo.ooOoX ", 19 | " .Xooooooo++++. ", 20 | " . XoooooooooO+ . ", 21 | " .....oooooo..... ", 22 | " . XoooooooooO+ . ", 23 | " .XoooooooooO+. ", 24 | " XoooooooooO+ ", 25 | " Xoooo.ooooO+ ", 26 | " XOOOO.OOOOO+ ", 27 | " +++++.++++++ ", 28 | " . . . ", 29 | " ... ", 30 | " ", 31 | " ", 32 | " ", 33 | " "}; 34 | -------------------------------------------------------------------------------- /common/bitmaps/copy.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * copy_xpm[] = { 3 | "24 24 4 1", 4 | " s None c None", 5 | ". c black", 6 | "X c white", 7 | "o c blue", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ..... ", 14 | " .XXX.. ", 15 | " .XXX.X. ", 16 | " .XXX.... ", 17 | " .XXXXXooooo ", 18 | " .XXXXXoXXXoo ", 19 | " .XXXXXoXXXoXo ", 20 | " .XXXXXoXXXoooo ", 21 | " .XXXXXoXXXXXXo ", 22 | " ......oXXXXXXo ", 23 | " oXXXXXXo ", 24 | " oXXXXXXo ", 25 | " oXXXXXXo ", 26 | " oooooooo ", 27 | " ", 28 | " ", 29 | " ", 30 | " ", 31 | " "}; 32 | -------------------------------------------------------------------------------- /common/bitmaps/copyright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/copyright.gif -------------------------------------------------------------------------------- /common/bitmaps/copyright.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * copyright_xpm[] = { 3 | "24 24 3 1", 4 | " s None c None", 5 | ". c black", 6 | "X c white", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " .... ", 13 | " ..XXXX.. ", 14 | " .XXXXXXXX. ", 15 | " .XXX....XXX. ", 16 | " .XXX..XX..XXX. ", 17 | " .XX..XXXXXXXX. ", 18 | " .XX..XXXXXXXX. ", 19 | " .XX..XXXXXXXX. ", 20 | " .XX..XXXXXXXX. ", 21 | " .XXX..XX..XXX. ", 22 | " .XXX....XXX. ", 23 | " .XXXXXXXX. ", 24 | " ..XXXX.. ", 25 | " .... ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " "}; 31 | -------------------------------------------------------------------------------- /common/bitmaps/cut.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * cut_xpm[] = { 3 | "24 24 3 1", 4 | " s None c None", 5 | ". c black", 6 | "X c blue", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " . . ", 13 | " . . ", 14 | " . . ", 15 | " . . ", 16 | " . . ", 17 | " . . ", 18 | " . ", 19 | " . ", 20 | " XXXX XXXX ", 21 | " X X X X ", 22 | " X X X X ", 23 | " X X X X ", 24 | " X X XXX ", 25 | " XXX ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " "}; 31 | -------------------------------------------------------------------------------- /common/bitmaps/editor.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * editor_xpm[] = { 3 | /* width height num_colors chars_per_pixel */ 4 | "24 24 5 1", 5 | /* colors */ 6 | " s None c None", 7 | ". c #808080", 8 | "X c white", 9 | "o c black", 10 | "O c blue", 11 | /* pixels */ 12 | " ", 13 | " ", 14 | " ", 15 | " ", 16 | " ", 17 | " ......... ", 18 | " .XXXXXXX.o ", 19 | " .X.....X.Xo O ", 20 | " .XXXXXXX.ooo OO ", 21 | " .X.....XXXXo OOo ", 22 | " .XXXXXXXXXXoOOo ", 23 | " .X........XOOo ", 24 | " .XXXXXXXXXOOo ", 25 | " .X.......oOo ", 26 | " .XXXXXXXoooo ", 27 | " .X.....oooXo ", 28 | " .XXXXXoXXXXo ", 29 | " .XXXXXXXXXXo ", 30 | " oooooooooooo ", 31 | " ", 32 | " ", 33 | " ", 34 | " ", 35 | " "}; 36 | -------------------------------------------------------------------------------- /common/bitmaps/egon_fg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/egon_fg.gif -------------------------------------------------------------------------------- /common/bitmaps/fld_closed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/fld_closed.xpm -------------------------------------------------------------------------------- /common/bitmaps/fld_new.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * fld_new_xpm[] = { 3 | "24 24 7 1", 4 | " s None c None", 5 | ". c red", 6 | "X c #808080", 7 | "o c #c0c0c0", 8 | "O c yellow", 9 | "+ c white", 10 | "@ c black", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " . ", 16 | " XXXXX . . . ", 17 | " XoOoOoX ... ", 18 | " XoOoOoOoX....... ", 19 | " X++++++++++...@ ", 20 | " X+OoOoOoOo.o.X. ", 21 | " X+oOoOoOoOoO.X@ ", 22 | " X+OoOoOoOoOoOX@ ", 23 | " X+oOoOoOoOoOoX@ ", 24 | " X+OoOoOoOoOoOX@ ", 25 | " X+oOoOoOoOoOoX@ ", 26 | " X+OoOoOoOoOoOX@ ", 27 | " X+oOoOoOoOoOoX@ ", 28 | " XXXXXXXXXXXXXX@ ", 29 | " @@@@@@@@@@@@@@ ", 30 | " ", 31 | " ", 32 | " ", 33 | " ", 34 | " "}; 35 | -------------------------------------------------------------------------------- /common/bitmaps/fld_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/fld_open.gif -------------------------------------------------------------------------------- /common/bitmaps/fld_open.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * fld_open_xpm[] = { 3 | "24 24 6 1", 4 | " s None c None", 5 | ". c #808080", 6 | "X c white", 7 | "o c yellow", 8 | "O c #c0c0c0", 9 | "+ c black", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ..... ", 15 | " .XXXXX. ", 16 | " .XoOoOoX...... ", 17 | " .XOoOoOoXXXXX.+ ", 18 | " .XoOoOoOoOoOo.+ ", 19 | " .XOoOoOoOoOoO.+ ", 20 | " .............o.+ ", 21 | " .XXXXXXXXXX.+O.+ ", 22 | " .XOoOoOoOoOo+..+ ", 23 | " .XOoOoOoOoO.+.+ ", 24 | " .XoOoOoOoOoO+.+ ", 25 | " .XOoOoOoOoOo+.+ ", 26 | " .XOoOoOoOoO.++ ", 27 | " ............++ ", 28 | " +++++++++++++ ", 29 | " ", 30 | " ", 31 | " ", 32 | " ", 33 | " "}; 34 | -------------------------------------------------------------------------------- /common/bitmaps/fld_up.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * fld_up_xpm[] = { 3 | "24 24 7 1", 4 | " s None c None", 5 | ". c #808080", 6 | "X c #c0c0c0", 7 | "o c yellow", 8 | "O c white", 9 | "+ c black", 10 | "@ c red", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " ", 16 | " ..... ", 17 | " .XoXoX. ", 18 | " .XoXoXoX...... ", 19 | " .OOOOOOOOOOOO.+ ", 20 | " .OoXoX@@oXoXo.+ ", 21 | " .OXoX@@@@oXoX.+ ", 22 | " .OoX@X@@o@oXo.+ ", 23 | " .OXoXo@@XoXoX.+ ", 24 | " .OoXoX@@oXoXo.+ ", 25 | " .OXoXo@@XoXoX.+ ", 26 | " .OoXoX@@oXoXo.+ ", 27 | " .OXoXo@@XoXoX.+ ", 28 | " ..............+ ", 29 | " ++++++++++++++ ", 30 | " ", 31 | " ", 32 | " ", 33 | " ", 34 | " "}; 35 | -------------------------------------------------------------------------------- /common/bitmaps/fromnone: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | for f in *.xpm; do 3 | mv $f $f.BAK 4 | sed -e 's/None/#FFFFC30BCB2B/g' < $f.BAK > $f; 5 | done 6 | -------------------------------------------------------------------------------- /common/bitmaps/gnome/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | xpm_DATA = back.xpm bold.xpm cancel.xpm copy.xpm cut.xpm \ 3 | fld_open.xpm save.xpm forward.xpm hcenter.xpm hleft.xpm \ 4 | home.xpm hfull.xpm hright.xpm info.xpm saveas.xpm \ 5 | italic.xpm new.xpm next.xpm paste.xpm play.xpm \ 6 | previous.xpm preview.xpm printer.xpm quit.xpm redo.xpm reload.xpm \ 7 | search.xpm spell.xpm stop.xpm uchar.xpm undo.xpm handlebg.xpm 8 | 9 | xpmdir = $(datadir)/siag/common/bitmaps/gnome 10 | 11 | EXTRA_DIST = $(xpm_DATA) 12 | 13 | -------------------------------------------------------------------------------- /common/bitmaps/gnome/bold.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *noname[] = { 3 | /* width height ncolors chars_per_pixel */ 4 | "24 24 2 1", 5 | /* colors */ 6 | " c #000000", 7 | ". c None", 8 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/gnome/cut.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *noname[] = { 3 | /* width height ncolors chars_per_pixel */ 4 | "24 24 2 1", 5 | /* colors */ 6 | " c #000000", 7 | ". c None", 8 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/gnome/fld_open.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *noname[] = { 3 | /* width height ncolors chars_per_pixel */ 4 | "24 24 5 1", 5 | /* colors */ 6 | " c #000000", 7 | ". c #99907B", 8 | "X c #FFFEF7", 9 | "o c #FFFFFF", 10 | "O c None", 11 | /* pixels */ 12 | "OOOOOOOOOOOOOOOOOOOOOOOO", 13 | "OOOOOOOOOOOOOOOOOOOOOOOO", 14 | "OOOOOOOOOOOOOOOOOOOOOOOO", 15 | "OOOOOOOOOOOOOOOOOOOOOOOO", 16 | "OOOOOOOOOOOOOOOOOOOOOOOO", 17 | "OOOOOOOOOOOOOO OOOOOOOO", 18 | "OOOOOOOOOOO .. OOOOOOO", 19 | "OOOO OO ....XXo OOO", 20 | "OOO .. ....XXXX .. OOO", 21 | "OOO .....XXXXX .... OOO", 22 | "OOOO ..XXXXX ...... OOO", 23 | "OOOO ..XXX ........ OOO", 24 | "OOOOO .XX .......... OOO", 25 | "OOOOO ..X .......... OOO", 26 | "OOOOOO .X .......... OOO", 27 | "OOOOOO .. ........ OOOO", 28 | "OOOOOOO . ...... OOOOOO", 29 | "OOOOOOO . ..... OOOOOOOO", 30 | "OOOOOOOO ... OOOOOOOOO", 31 | "OOOOOOOO . OOOOOOOOOOO", 32 | "OOOOOOOOO OOOOOOOOOOOOO", 33 | "OOOOOOOOOOOOOOOOOOOOOOOO", 34 | "OOOOOOOOOOOOOOOOOOOOOOOO", 35 | "OOOOOOOOOOOOOOOOOOOOOOOO" 36 | }; 37 | -------------------------------------------------------------------------------- /common/bitmaps/gnome/handlebg.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * handlebg_xpm[] = { 3 | "8 29 3 1", 4 | " c black", 5 | ". s None c None", 6 | "X c white", 7 | "........", 8 | "........", 9 | "..X.....", 10 | "... .X..", 11 | "...... .", 12 | "..X.....", 13 | "... .X..", 14 | "...... .", 15 | "..X.....", 16 | "... .X..", 17 | "...... .", 18 | "..X.....", 19 | "... .X..", 20 | "...... .", 21 | "..X.....", 22 | "... .X..", 23 | "...... .", 24 | "..X.....", 25 | "... .X..", 26 | "...... .", 27 | "..X.....", 28 | "... .X..", 29 | "...... .", 30 | "..X.....", 31 | "... .X..", 32 | "...... .", 33 | "..X.....", 34 | "... .X..", 35 | "...... ."}; 36 | -------------------------------------------------------------------------------- /common/bitmaps/gnome/hcenter.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *noname[] = { 3 | /* width height ncolors chars_per_pixel */ 4 | "24 24 2 1", 5 | /* colors */ 6 | " c #000000", 7 | ". c None", 8 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/gnome/hfull.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *noname[] = { 3 | /* width height ncolors chars_per_pixel */ 4 | "24 24 2 1", 5 | /* colors */ 6 | " c #000000", 7 | ". c None", 8 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/gnome/hleft.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *noname[] = { 3 | /* width height ncolors chars_per_pixel */ 4 | "24 24 2 1", 5 | /* colors */ 6 | " c #000000", 7 | ". c None", 8 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/gnome/hright.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *noname[] = { 3 | /* width height ncolors chars_per_pixel */ 4 | "24 24 2 1", 5 | /* colors */ 6 | " c #000000", 7 | ". c None", 8 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/gnome/italic.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *noname[] = { 3 | /* width height ncolors chars_per_pixel */ 4 | "24 24 2 1", 5 | /* colors */ 6 | " c #000000", 7 | ". c None", 8 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/gnome/uchar.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *noname[] = { 3 | /* width height ncolors chars_per_pixel */ 4 | "24 24 2 1", 5 | /* colors */ 6 | " c #000000", 7 | ". c None", 8 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/grid.gif -------------------------------------------------------------------------------- /common/bitmaps/grid.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/grid.xpm -------------------------------------------------------------------------------- /common/bitmaps/handlebg.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * handlebg_xpm[] = { 3 | "6 4 3 1", 4 | " c black", 5 | ". s None c None", 6 | "X c white", 7 | " .....", 8 | "......", 9 | "..X...", 10 | "... .X"}; 11 | -------------------------------------------------------------------------------- /common/bitmaps/hcenter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/hcenter.gif -------------------------------------------------------------------------------- /common/bitmaps/hcenter.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * hcenter_xpm[] = { 3 | "24 24 2 1", 4 | " s None c None", 5 | ". c black", 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 | -------------------------------------------------------------------------------- /common/bitmaps/hfull.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * hfull_xpm[] = { 3 | "24 24 2 1", 4 | " s None c None", 5 | ". c black", 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 | -------------------------------------------------------------------------------- /common/bitmaps/hleft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/hleft.gif -------------------------------------------------------------------------------- /common/bitmaps/hleft.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * hleft_xpm[] = { 3 | "24 24 2 1", 4 | " s None c None", 5 | ". c black", 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 | -------------------------------------------------------------------------------- /common/bitmaps/home.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * home_xpm[] = { 3 | "24 24 5 1", 4 | " s None c None", 5 | ". c black", 6 | "X c red", 7 | "o c yellow", 8 | "O c blue", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " .. ... ", 15 | " .....X. ", 16 | " ..oo..X. ", 17 | " ..oooo... ", 18 | " ..oooooo.. ", 19 | " ..oooooooo.. ", 20 | " ..oooooooooo.. ", 21 | " ...ooo....ooo... ", 22 | " .ooo.OO.ooo. ", 23 | " .ooo.OO.ooo. ", 24 | " .ooo.OO.ooo. ", 25 | " .ooo.OO.ooo. ", 26 | " .ooo.OO.ooo. ", 27 | " ............ ", 28 | " ", 29 | " ", 30 | " ", 31 | " ", 32 | " "}; 33 | -------------------------------------------------------------------------------- /common/bitmaps/hright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/hright.gif -------------------------------------------------------------------------------- /common/bitmaps/hright.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * hright_xpm[] = { 3 | "24 24 2 1", 4 | " s None c None", 5 | ". c black", 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 | -------------------------------------------------------------------------------- /common/bitmaps/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/info.gif -------------------------------------------------------------------------------- /common/bitmaps/info.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * info_xpm[] = { 3 | "24 24 3 1", 4 | " s None c None", 5 | ". c red", 6 | "X c black", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " .. ", 13 | " .... ", 14 | " .... ", 15 | " .. ", 16 | " ", 17 | " XXXXXX ", 18 | " XXXXXX ", 19 | " XXXX ", 20 | " XXXX ", 21 | " XXXX ", 22 | " XXXX ", 23 | " XXXXXXXXXX ", 24 | " XXXXXXXXXX ", 25 | " XXXXXXXXXX ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " "}; 31 | -------------------------------------------------------------------------------- /common/bitmaps/insert.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * insert_xpm[] = { 3 | "24 24 2 1", 4 | " c None", 5 | ". c #000000000000", 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 | -------------------------------------------------------------------------------- /common/bitmaps/italic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/italic.gif -------------------------------------------------------------------------------- /common/bitmaps/italic.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * italic_xpm[] = { 3 | "24 24 2 1", 4 | " s None c None", 5 | ". c black", 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 | -------------------------------------------------------------------------------- /common/bitmaps/kde/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | xpm_DATA = back.xpm cancel.xpm copy.xpm cut.xpm fld_open.xpm \ 3 | save.xpm forward.xpm home.xpm info.xpm larger.xpm \ 4 | new.xpm next.xpm paste.xpm play.xpm preview.xpm \ 5 | previous.xpm printer.xpm quit.xpm reload.xpm saveas.xpm \ 6 | search.xpm smaller.xpm stop.xpm handlebg.xpm 7 | 8 | xpmdir = $(datadir)/siag/common/bitmaps/kde 9 | 10 | EXTRA_DIST = $(xpm_DATA) 11 | 12 | -------------------------------------------------------------------------------- /common/bitmaps/kde/back.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * back_xpm[] = { 3 | /* See http://www.kde.org */ 4 | "24 24 5 1", 5 | " s None c None", 6 | ". c black", 7 | "X c white", 8 | "o c #c0c0c0", 9 | "O c #808080", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " ", 16 | " . ", 17 | " .. ", 18 | " .X. ", 19 | " .XX........ ", 20 | " .XXoXXXXXXX. ", 21 | " .XXooooooooo. ", 22 | " .Xooooooooo. ", 23 | " O.Xo........ ", 24 | " O.X.OOOOOOO ", 25 | " O..O ", 26 | " O.O ", 27 | " OO ", 28 | " O ", 29 | " ", 30 | " ", 31 | " ", 32 | " ", 33 | " "}; 34 | -------------------------------------------------------------------------------- /common/bitmaps/kde/cancel.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * cancel_xpm[] = { 3 | /* See http://www.kde.org */ 4 | "24 24 5 1", 5 | " s None c None", 6 | ". c black", 7 | "X c #ff0000", 8 | "o c #808000", 9 | "O c #008000", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ....... ", 15 | " ........... ", 16 | " ...XXX... ", 17 | " ...XXX... ", 18 | " ......... ", 19 | " ....... ", 20 | " ........... ", 21 | " ...ooo... ", 22 | " ....o.... ", 23 | " ......... ", 24 | " ....... ", 25 | " ........... ", 26 | " ...OOO... ", 27 | " ....O.... ", 28 | " ......... ", 29 | " ....... ", 30 | " ", 31 | " ", 32 | " ", 33 | " "}; 34 | -------------------------------------------------------------------------------- /common/bitmaps/kde/copy.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * copy_xpm[] = { 3 | /* See http://www.kde.org */ 4 | "24 24 4 1", 5 | " s None c None", 6 | ". c black", 7 | "X c white", 8 | "o c #c0c0c0", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " ...... ", 16 | " .XXXX.. ", 17 | " .XXXX.X. ", 18 | " .X..X....... ", 19 | " .XXXXo.XXXX.. ", 20 | " .X.....XXXX.X. ", 21 | " .XXXXo.X..X.... ", 22 | " .X.....XXXXXXX. ", 23 | " .XXXXo.X.....X. ", 24 | " .......XXXXXXX. ", 25 | " .X.....X. ", 26 | " .XXXXXXX. ", 27 | " ......... ", 28 | " ", 29 | " ", 30 | " ", 31 | " ", 32 | " "}; 33 | -------------------------------------------------------------------------------- /common/bitmaps/kde/cut.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * cut_xpm[] = { 3 | /* See http://www.kde.org */ 4 | "24 24 7 1", 5 | " s None c None", 6 | ". c #a0a0a4", 7 | "X c #585858", 8 | "o c #303030", 9 | "O c #c0c0c0", 10 | "+ c #dcdcdc", 11 | "@ c white", 12 | " ", 13 | " ", 14 | " ", 15 | " ", 16 | " ", 17 | " .XoX. ", 18 | " oOOOX. Xo. ", 19 | " XOOOOo .XoXX. ", 20 | " .XXOXX .XoX. ", 21 | " .oXo. .Xo. ", 22 | " .XXXoX. ", 23 | " XXXXXXXX+X.XXXXXX ", 24 | " .oXXXX@@@@@+ ", 25 | " .XXX. .++. ", 26 | " .XoOoX +XoX. ", 27 | " XOOOOo @.XoXo. ", 28 | " oOOOX. @ XX. ", 29 | " .XoX. @ ", 30 | " + ", 31 | " @ ", 32 | " ", 33 | " ", 34 | " ", 35 | " "}; 36 | -------------------------------------------------------------------------------- /common/bitmaps/kde/fld_open.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * fld_open_xpm[] = { 3 | /* See http://www.kde.org */ 4 | "24 24 6 1", 5 | " s None c None", 6 | ". c black", 7 | "X c #dcdcdc", 8 | "o c white", 9 | "O c #c0c0c0", 10 | "+ c #808080", 11 | " ", 12 | " ", 13 | " ", 14 | " .... ", 15 | " .. . ", 16 | " ... ", 17 | " ... ", 18 | " .... ", 19 | " .... ", 20 | " .XoX....... ", 21 | " .oXoXoXoXo. ", 22 | " .XX.......... ", 23 | " .oX.XXOOOOO+. ", 24 | " .X.XXOXOOO+. ", 25 | " .X.XXOOO+O+. ", 26 | " ..XXOXOOO+. ", 27 | " ..XXOOO+O+. ", 28 | " .++++++++. ", 29 | " .......... ", 30 | " ", 31 | " ", 32 | " ", 33 | " ", 34 | " "}; 35 | -------------------------------------------------------------------------------- /common/bitmaps/kde/forward.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | /* Drawn by Mark Donohoe for the K Desktop Environment */ 3 | /* See http://www.kde.org */ 4 | static char*forward[]={ 5 | "24 24 5 1", 6 | "# c #000000", 7 | "a c #ffffff", 8 | "c c #808080", 9 | "b c #c0c0c0", 10 | ". c None", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | ".............#..........", 18 | ".............##.........", 19 | ".............#a#........", 20 | "......########aa#.......", 21 | "......#aaaaaaabaa#......", 22 | "......#bbbbbbbbbaa#.....", 23 | "......#bbbbbbbbba#......", 24 | "......########ba#c......", 25 | "......ccccccc#a#c.......", 26 | "............c##c........", 27 | "............c#c.........", 28 | "............cc..........", 29 | "............c...........", 30 | "........................", 31 | "........................", 32 | "........................", 33 | "........................", 34 | "........................"}; 35 | 36 | -------------------------------------------------------------------------------- /common/bitmaps/kde/handlebg.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * handlebg_xpm[] = { 3 | "8 29 3 1", 4 | " c black", 5 | ". s None c None", 6 | "X c white", 7 | "........", 8 | "........", 9 | "........", 10 | "....X...", 11 | ".X... ..", 12 | ".. .....", 13 | "....X...", 14 | ".X... ..", 15 | ".. .....", 16 | "....X...", 17 | ".X... ..", 18 | ".. .....", 19 | "....X...", 20 | ".X... ..", 21 | ".. .....", 22 | "....X...", 23 | ".X... ..", 24 | ".. .....", 25 | "....X...", 26 | ".X... ..", 27 | ".. .....", 28 | "....X...", 29 | ".X... ..", 30 | ".. .....", 31 | "....X...", 32 | ".X... ..", 33 | ".. .....", 34 | "........", 35 | "........"}; 36 | -------------------------------------------------------------------------------- /common/bitmaps/kde/home.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * home_xpm[] = { 3 | /* See http://www.kde.org */ 4 | "24 24 4 1", 5 | " s None c None", 6 | ". c black", 7 | "X c white", 8 | "o c #c0c0c0", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " .. ", 14 | " . .... ", 15 | " . .XXoo. ", 16 | " . .XXXXoo. ", 17 | " ..XXXXXXoo. ", 18 | " .XXXXXXXXoo. ", 19 | " .XXXXXXXXXooo. ", 20 | " ...XXXXXXXXoo... ", 21 | " .XXXXXXXXoo. ", 22 | " .XXX...XXoo. ", 23 | " .XXX. .XXoo. ", 24 | " .XXX. .XXoo. ", 25 | " .XXX. .XXoo. ", 26 | " .XXX. .XXoo. ", 27 | " ..... ...... ", 28 | " ", 29 | " ", 30 | " ", 31 | " ", 32 | " "}; 33 | -------------------------------------------------------------------------------- /common/bitmaps/kde/info.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * info_xpm[] = { 3 | /* See http://www.kde.org */ 4 | "24 24 5 1", 5 | " s None c None", 6 | ". c #000080", 7 | "X c #585858", 8 | "o c black", 9 | "O c white", 10 | " ", 11 | " ", 12 | " ", 13 | " .....X ", 14 | " .. X..X ", 15 | " ..X ... ", 16 | " ..X ... ", 17 | " X.. X..X ", 18 | " oo ..X ", 19 | " oXOo ooo ..X ", 20 | " oXOOo ooOOoX..X ", 21 | " oXOOOoXOOOoX..X ", 22 | " oXOOOoOOOOoXo ", 23 | " oXOOOoXOOOoX... ", 24 | " oXOOOoOOOOoX... ", 25 | " oXOOOoXOOOoXo ", 26 | " oXOOOoOOOOoXo ", 27 | " oXOOoXOOooXo ", 28 | " oXOoOooOOXo ", 29 | " oXooXXXXXo ", 30 | " ooXooooooo ", 31 | " oo ", 32 | " ", 33 | " "}; 34 | -------------------------------------------------------------------------------- /common/bitmaps/kde/larger.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | /* Drawn by Mark Donohoe for the K Desktop Environment */ 3 | /* See http://www.kde.org */ 4 | static char*viewmag[]={ 5 | "24 24 5 1", 6 | "# c #000000", 7 | "c c #a0a0a4", 8 | "a c #dcdcdc", 9 | "b c #ffffff", 10 | ". c None", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........####............", 18 | ".......#abba#...........", 19 | "......#abcbba#..........", 20 | "......#bcbbbb#..........", 21 | "......#bbbbbb#..........", 22 | "......#abbbba#..........", 23 | ".......#abba##..........", 24 | "........#######.........", 25 | ".............###........", 26 | "..............###.......", 27 | "......#........###......", 28 | ".....###........##......", 29 | "......#.................", 30 | "........................", 31 | "........................", 32 | "........................", 33 | "........................", 34 | "........................"}; 35 | 36 | -------------------------------------------------------------------------------- /common/bitmaps/kde/new.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | /* Drawn by Mark Donohoe for the K Desktop Environment */ 3 | /* See http://www.kde.org */ 4 | static char*filenew[]={ 5 | "24 24 5 1", 6 | "# c #000000", 7 | "c c #c0c0c0", 8 | "a c #ffffff", 9 | "b c #dcdcdc", 10 | ". c None", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | ".......#######..........", 17 | ".......#aaaabb#.........", 18 | ".......#aaaacab#........", 19 | ".......#aaaacaab#.......", 20 | ".......#aaaac####.......", 21 | ".......#aaaaaccc#.......", 22 | ".......#aaaaaaaa#.......", 23 | ".......#aaaaaaaa#.......", 24 | ".......#aaaaaaaa#.......", 25 | ".......#aaaaaaaa#.......", 26 | ".......#aaaaaaaa#.......", 27 | ".......#aaaaaaaa#.......", 28 | ".......#aaaaaaaa#.......", 29 | ".......##########.......", 30 | "........................", 31 | "........................", 32 | "........................", 33 | "........................", 34 | "........................"}; 35 | 36 | -------------------------------------------------------------------------------- /common/bitmaps/kde/next.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * kmid_next_xpm[] = { 3 | "24 24 4 1", 4 | " c None", 5 | ". c #000000", 6 | "o c #FFFFFF", 7 | "O c #808080", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ... . ", 15 | " .oo.. .o. ", 16 | " O.o oo.. .o.O ", 17 | " O.o oo.. .o.O ", 18 | " O.o oo. .o.O ", 19 | " O.o o..o.O ", 20 | " O.o o...o.O ", 21 | " O.o o..O .o.O ", 22 | " O.o o..OO .o.O ", 23 | " O.oo..OOO .o.O ", 24 | " O...OOO . .O ", 25 | " OOOOO .O ", 26 | " O ", 27 | " ", 28 | " ", 29 | " ", 30 | " ", 31 | " "}; 32 | -------------------------------------------------------------------------------- /common/bitmaps/kde/paste.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | /* Drawn by Mark Donohoe for the K Desktop Environment */ 3 | /* See http://www.kde.org */ 4 | static char*editpaste[]={ 5 | "24 24 4 1", 6 | "# c #000000", 7 | "a c #ffffff", 8 | "b c #c0c0c0", 9 | ". c None", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "..........####..........", 17 | "......#####aa#####......", 18 | ".....#bbb#a##a#bbb#.....", 19 | ".....#bb#aaaaaa#bb#.....", 20 | ".....#bb########bb#.....", 21 | ".....#bbbbbb#######.....", 22 | ".....#bbbbbb#aaaa##.....", 23 | ".....#bbbbbb#aaaa#a#....", 24 | ".....#bbbbbb#a##a###....", 25 | ".....#bbbbbb#aaaaaa#....", 26 | ".....#bbbbbb#a####a#....", 27 | "......#######aaaaaa#....", 28 | "............########....", 29 | "........................", 30 | "........................", 31 | "........................", 32 | "........................", 33 | "........................"}; 34 | 35 | -------------------------------------------------------------------------------- /common/bitmaps/kde/play.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * kmid_play_xpm[] = { 3 | "24 24 4 1", 4 | " c None", 5 | "X c #000000", 6 | "o c #FFFFFF", 7 | "O c #808080", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " XXX ", 15 | " XooXX ", 16 | " OXo ooXX ", 17 | " OXo ooXX ", 18 | " OXo ooX ", 19 | " OXo oX ", 20 | " OXo oXX ", 21 | " OXo oXXO ", 22 | " OXo oXXOO ", 23 | " OXooXXOOO ", 24 | " OXXXOOO ", 25 | " OOOOO ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " ", 31 | " "}; 32 | -------------------------------------------------------------------------------- /common/bitmaps/kde/preview.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | /* Drawn for the K Desktop Environment */ 3 | /* See http://www.kde.org */ 4 | static char*kghostview[]={ 5 | "24 24 5 1", 6 | "# c #000000", 7 | "b c #c0c0c0", 8 | "a c #ffffff", 9 | "c c #c0c0c0", 10 | ". c None", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | ".....###########........", 16 | "....#aaaaaaaaaaa#.......", 17 | "....#abbbbabbbaa#.......", 18 | "....#aaaaaaaaaaa#.......", 19 | "....#abaab###baa#.......", 20 | "....#aaab#aaa#ba#.......", 21 | "....#aba#aabaa#a#.......", 22 | "....#aaa#aabba#a#.......", 23 | "....#aaa#aaaaa#a#.......", 24 | "....#aaab#aaa##a#.......", 25 | "....#ccacb####a##.......", 26 | "....#cacccaaaa#a#.......", 27 | "....#ccaacaaaaa#a#......", 28 | "....#caccaaaaaaa#a#.....", 29 | ".....###########.#a#....", 30 | "..................#.....", 31 | "........................", 32 | "........................", 33 | "........................", 34 | "........................"}; 35 | 36 | -------------------------------------------------------------------------------- /common/bitmaps/kde/previous.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *kmid_prev[] = { 3 | "24 24 4 1", 4 | ". c None", 5 | "O c #000000", 6 | "b c #FFFFFF", 7 | "c c #808080", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "......O.........OOO.....", 15 | ".....ObO......OObbO.....", 16 | "....cObO....OObb.bOc....", 17 | "....cObO..OObb...bOc....", 18 | "....cObO.Obb.....bOc....", 19 | "....cObOOb.......bOc....", 20 | "....cObOOOb......bOc....", 21 | "....cObO.cOOb....bOc....", 22 | "....cObO..ccOOb..bOc....", 23 | "....cObO...cccOObbOc....", 24 | "....cO.O.....cccOOOc....", 25 | ".....cO........ccccc....", 26 | "......c.................", 27 | "........................", 28 | "........................", 29 | "........................", 30 | "........................", 31 | "........................" 32 | }; 33 | -------------------------------------------------------------------------------- /common/bitmaps/kde/quit.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * not_marked_xpm[] = { 3 | "24 24 4 1", 4 | " c None", 5 | ". c #000000", 6 | "X c #808080", 7 | "o c #FFFFFF", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " . ", 15 | " ..X .o.X ", 16 | " ..X .ooo.X ", 17 | " .o..oo ..XX ", 18 | " .oo .XXXX ", 19 | " .o .XXX ", 20 | " .o .XX ", 21 | " .o.X.o.X ", 22 | " .o.XX .o.X ", 23 | " .o.XX ..X ", 24 | " ..XX ..X ", 25 | " .XX .X ", 26 | " XX XX ", 27 | " ", 28 | " ", 29 | " ", 30 | " ", 31 | " "}; 32 | -------------------------------------------------------------------------------- /common/bitmaps/kde/reload.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | /* Drawn by Mark Donohoe for the K Desktop Environment */ 3 | /* See http://www.kde.org */ 4 | static char*reload[]={ 5 | "24 24 3 1", 6 | "# c #808080", 7 | "a c #000000", 8 | ". c None", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | ".........##aaa#.........", 15 | "........#aaaaaaa........", 16 | ".......#aa#....#a.......", 17 | ".......aa#..............", 18 | "......aaa.......a.......", 19 | "....aaaaaaa....aaa......", 20 | ".....aaaaa....aaaaa.....", 21 | "......aaa....aaaaaaa....", 22 | ".......a.......aaa......", 23 | "..............#aa.......", 24 | ".......a#....#aa#.......", 25 | "........aaaaaaa#........", 26 | ".........#aaa##.........", 27 | "........................", 28 | "........................", 29 | "........................", 30 | "........................", 31 | "........................", 32 | "........................"}; 33 | 34 | -------------------------------------------------------------------------------- /common/bitmaps/kde/save.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * floppy3_xpm[] = { 3 | /* See http://www.kde.org */ 4 | "24 24 5 1", 5 | " s None c None", 6 | ". c black", 7 | "X c #c0c0c0", 8 | "o c white", 9 | "O c #808080", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " ............. ", 16 | " .XooooooooXX.O ", 17 | " .Xo.....ooXX.O ", 18 | " .XooooooooXX.O ", 19 | " .Xo...ooooXX.O ", 20 | " .XooooooooXX.O ", 21 | " .XooooooooXX.O ", 22 | " .XXXXXXXXXXX.O ", 23 | " .XOOOOOOOOOO.O ", 24 | " .XOOOOOOOOOO.O ", 25 | " .XOOXXXXXOOX.O ", 26 | " .XOOXXOOXOOX.O ", 27 | " .XOOXXOOXOOX.O ", 28 | " .............O ", 29 | " OOOOOOOOOOOOO ", 30 | " ", 31 | " ", 32 | " ", 33 | " "}; 34 | -------------------------------------------------------------------------------- /common/bitmaps/kde/search.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char*search[]={ 3 | "24 24 6 1", 4 | ". c None", 5 | "# c #000000", 6 | "a c #dcdcdc", 7 | "b c #ffffff", 8 | "c c #a0a0a4", 9 | "d c #c3c3c3", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........####............", 17 | ".......#abba#...........", 18 | "......#abcbba#..........", 19 | "......#bcbbbb#..........", 20 | "......#bbbbbb#..........", 21 | "......#abbbba#..........", 22 | ".......#abba##..........", 23 | "........#######.........", 24 | ".............###........", 25 | "..............###.......", 26 | "......dd.......###......", 27 | ".....dddddddd...##......", 28 | ".....dd.................", 29 | ".....dd.................", 30 | "........................", 31 | "........................", 32 | "........................", 33 | "........................"}; 34 | -------------------------------------------------------------------------------- /common/bitmaps/kde/smaller.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | /* Drawn by Mark Donohoe for the K Desktop Environment */ 3 | /* See http://www.kde.org */ 4 | static char*viewmag[]={ 5 | "24 24 5 1", 6 | "# c #000000", 7 | "c c #a0a0a4", 8 | "a c #dcdcdc", 9 | "b c #ffffff", 10 | ". c None", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | "........................", 16 | "........................", 17 | "........####............", 18 | ".......#abba#...........", 19 | "......#abcbba#..........", 20 | "......#bcbbbb#..........", 21 | "......#bbbbbb#..........", 22 | "......#abbbba#..........", 23 | ".......#abba##..........", 24 | "........#######.........", 25 | ".............###........", 26 | "..............###.......", 27 | "...............###......", 28 | ".....###........##......", 29 | "........................", 30 | "........................", 31 | "........................", 32 | "........................", 33 | "........................", 34 | "........................"}; 35 | 36 | -------------------------------------------------------------------------------- /common/bitmaps/kde/stop.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * kmid_pause_xpm[] = { 3 | "24 24 4 1", 4 | " c None", 5 | ". c #000000", 6 | "X c #FFFFFF", 7 | "o c #808080", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ... ... ", 14 | " . XX. . XX. ", 15 | " .X .o .X .o ", 16 | " .X .o .X .o ", 17 | " .X .o .X .o ", 18 | " .X .o .X .o ", 19 | " .X .o .X .o ", 20 | " .X .o .X .o ", 21 | " .X .o .X .o ", 22 | " .X .o .X .o ", 23 | " .X .o .X .o ", 24 | " .X .o .X .o ", 25 | " .X .o .X .o ", 26 | " ... o ... o ", 27 | " ooo ooo ", 28 | " ", 29 | " ", 30 | " ", 31 | " "}; 32 | -------------------------------------------------------------------------------- /common/bitmaps/kde2/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | xpm_DATA = back.xpm bold.xpm borders.xpm cancel.xpm copy.xpm cut.xpm \ 3 | editor.xpm fld_new.xpm fld_open.xpm fld_up.xpm forward.xpm \ 4 | grid.xpm handlebg.xpm hcenter.xpm \ 5 | hfull.xpm hleft.xpm home.xpm hright.xpm info.xpm italic.xpm \ 6 | larger.xpm lline.xpm new.xpm none.xpm paste.xpm preview.xpm \ 7 | printer.xpm quit.xpm redo.xpm reload.xpm rline.xpm save.xpm saveas.xpm \ 8 | security.xpm sigma.xpm smaller.xpm spell.xpm stop.xpm \ 9 | uchar.xpm uline.xpm undo.xpm 10 | 11 | xpmdir = $(datadir)/siag/common/bitmaps/kde2 12 | 13 | EXTRA_DIST = $(xpm_DATA) 14 | -------------------------------------------------------------------------------- /common/bitmaps/kde2/bold.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *magick[] = { 3 | /* columns rows colors chars-per-pixel */ 4 | "24 24 2 1", 5 | " c gray0", 6 | ". c None", 7 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/kde2/borders.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *magick[] = { 3 | /* columns rows colors chars-per-pixel */ 4 | "24 24 2 1", 5 | " c gray0", 6 | ". c None", 7 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/kde2/grid.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *magick[] = { 3 | /* columns rows colors chars-per-pixel */ 4 | "24 24 2 1", 5 | " c gray0", 6 | ". c None", 7 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/kde2/handlebg.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * handlebg_xpm[] = { 3 | "8 29 3 1", 4 | " c black", 5 | ". s None c None", 6 | "X c white", 7 | "........", 8 | "........", 9 | "........", 10 | "....X...", 11 | ".X... ..", 12 | ".. .....", 13 | "....X...", 14 | ".X... ..", 15 | ".. .....", 16 | "....X...", 17 | ".X... ..", 18 | ".. .....", 19 | "....X...", 20 | ".X... ..", 21 | ".. .....", 22 | "....X...", 23 | ".X... ..", 24 | ".. .....", 25 | "....X...", 26 | ".X... ..", 27 | ".. .....", 28 | "....X...", 29 | ".X... ..", 30 | ".. .....", 31 | "....X...", 32 | ".X... ..", 33 | ".. .....", 34 | "........", 35 | "........"}; 36 | -------------------------------------------------------------------------------- /common/bitmaps/kde2/hcenter.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *magick[] = { 3 | /* columns rows colors chars-per-pixel */ 4 | "24 24 2 1", 5 | " c gray0", 6 | ". c None", 7 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/kde2/hfull.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *magick[] = { 3 | /* columns rows colors chars-per-pixel */ 4 | "24 24 2 1", 5 | " c gray0", 6 | ". c None", 7 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/kde2/hleft.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *magick[] = { 3 | /* columns rows colors chars-per-pixel */ 4 | "24 24 2 1", 5 | " c gray0", 6 | ". c None", 7 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/kde2/hright.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *magick[] = { 3 | /* columns rows colors chars-per-pixel */ 4 | "24 24 2 1", 5 | " c gray0", 6 | ". c None", 7 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/kde2/italic.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *magick[] = { 3 | /* columns rows colors chars-per-pixel */ 4 | "24 24 2 1", 5 | " c gray0", 6 | ". c None", 7 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/kde2/lline.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *magick[] = { 3 | /* columns rows colors chars-per-pixel */ 4 | "24 24 2 1", 5 | " c gray0", 6 | ". c None", 7 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/kde2/none.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *magick[] = { 3 | /* columns rows colors chars-per-pixel */ 4 | "24 24 2 1", 5 | " c gray0", 6 | ". c None", 7 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/kde2/rline.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *magick[] = { 3 | /* columns rows colors chars-per-pixel */ 4 | "24 24 2 1", 5 | " c gray0", 6 | ". c None", 7 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/kde2/uchar.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *magick[] = { 3 | /* columns rows colors chars-per-pixel */ 4 | "24 24 2 1", 5 | " c gray0", 6 | ". c None", 7 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/kde2/uline.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *magick[] = { 3 | /* columns rows colors chars-per-pixel */ 4 | "24 24 2 1", 5 | " c gray0", 6 | ". c None", 7 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/landscape.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * landscape_xpm[] = { 3 | "24 24 5 1", 4 | " s None c None", 5 | ". c #808080", 6 | "X c white", 7 | "o c #c0c0c0", 8 | "O c black", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " ............. ", 16 | " .XXXXXXXXXXXo. ", 17 | " .XOOOOOOOOOXoX. ", 18 | " .XXXXXXXXXXXOOOO ", 19 | " .XXXXXXXXXXXXXoO ", 20 | " .XOOOOOOOOOOOXoO ", 21 | " .XXXXXXXXXXXXXoO ", 22 | " .XXXXXXXXXXXXXoO ", 23 | " .XOOOOOOOOOOOXoO ", 24 | " .XXXXXXXXXXXXXoO ", 25 | " .ooooooooooooooO ", 26 | " OOOOOOOOOOOOOOOO ", 27 | " ", 28 | " ", 29 | " ", 30 | " ", 31 | " ", 32 | " "}; 33 | -------------------------------------------------------------------------------- /common/bitmaps/larger.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * larger_xpm[] = { 3 | "24 24 2 1", 4 | " s None c None", 5 | ". c black", 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 | -------------------------------------------------------------------------------- /common/bitmaps/lline.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * uline_xpm[] = { 3 | "24 24 3 1", 4 | " s None c None", 5 | ". c black", 6 | "X c white", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " .............. ", 13 | " ..XXXXXXXXXXX. ", 14 | " ..XXXXXXXXXXX. ", 15 | " ..XXXXXXXXXXX. ", 16 | " ..XXXXXXXXXXX. ", 17 | " ..XXXXXXXXXXX. ", 18 | " ..XXXXXXXXXXX. ", 19 | " ..XXXXXXXXXXX. ", 20 | " ..XXXXXXXXXXX. ", 21 | " ..XXXXXXXXXXX. ", 22 | " ..XXXXXXXXXXX. ", 23 | " ..XXXXXXXXXXX. ", 24 | " ..XXXXXXXXXXX. ", 25 | " .............. ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " "}; 31 | -------------------------------------------------------------------------------- /common/bitmaps/ms/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | xpm_DATA = bold.xpm copy.xpm cut.xpm fld_open.xpm hcenter.xpm \ 3 | handlebg.xpm hfull.xpm hleft.xpm hright.xpm italic.xpm \ 4 | new.xpm paste.xpm plotter.xpm printer.xpm redo.xpm saveas.xpm \ 5 | save.xpm sigma.xpm sortaz.xpm sortza.xpm undo.xpm 6 | 7 | xpmdir = $(datadir)/siag/common/bitmaps/ms 8 | 9 | EXTRA_DIST = $(xpm_DATA) 10 | 11 | -------------------------------------------------------------------------------- /common/bitmaps/ms/bold.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char*notbold_xpm[]={ 3 | "24 24 2 1", 4 | ". c None", 5 | "a c #000000", 6 | "........................", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........aaaaaaa.........", 14 | "........aa....aa........", 15 | "........aa....aa........", 16 | "........aa....aa........", 17 | "........aa....aa........", 18 | "........aaaaaaa.........", 19 | "........aa....aa........", 20 | "........aa....aa........", 21 | "........aa....aa........", 22 | "........aa....aa........", 23 | "........aaaaaaa.........", 24 | "........................", 25 | "........................", 26 | "........................", 27 | "........................", 28 | "........................", 29 | "........................"}; 30 | -------------------------------------------------------------------------------- /common/bitmaps/ms/cut.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * cut_xpm[] = { 3 | /* width height ncolors cpp [x_hot y_hot] */ 4 | "24 24 3 1 -1 -1", 5 | /* colors */ 6 | " c None", 7 | ". s iconColor1 m black c black", 8 | "X c #000000008000", 9 | /* pixels */ 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " . . ", 16 | " . . ", 17 | " . . ", 18 | " .. .. ", 19 | " . . ", 20 | " ... ", 21 | " . ", 22 | " X.X ", 23 | " X XXX ", 24 | " XXX X X ", 25 | " X X X X ", 26 | " X X X X ", 27 | " X X XX ", 28 | " XX ", 29 | " ", 30 | " ", 31 | " ", 32 | " ", 33 | " "}; 34 | -------------------------------------------------------------------------------- /common/bitmaps/ms/handlebg.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * handlebg_xpm[] = { 3 | "9 29 3 1", 4 | " c white", 5 | ". s None c None", 6 | "X c black", 7 | ".........", 8 | ".........", 9 | ". . ...", 10 | ". X. X...", 11 | ". X. X...", 12 | ". X. X...", 13 | ". X. X...", 14 | ". X. X...", 15 | ". X. X...", 16 | ". X. X...", 17 | ". X. X...", 18 | ". X. X...", 19 | ". X. X...", 20 | ". X. X...", 21 | ". X. X...", 22 | ". X. X...", 23 | ". X. X...", 24 | ". X. X...", 25 | ". X. X...", 26 | ". X. X...", 27 | ". X. X...", 28 | ". X. X...", 29 | ". X. X...", 30 | ". X. X...", 31 | ". X. X...", 32 | ". X. X...", 33 | ". X. X...", 34 | ". X. X...", 35 | ". X. X..." 36 | }; 37 | -------------------------------------------------------------------------------- /common/bitmaps/ms/hcenter.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * justcenter_xpm[] = { 3 | /* width height ncolors cpp [x_hot y_hot] */ 4 | "24 24 2 1 -1 -1", 5 | /* colors */ 6 | " c None", 7 | ". s iconColor1 m black c black", 8 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/ms/hleft.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * justcenter_xpm[] = { 3 | /* width height ncolors cpp [x_hot y_hot] */ 4 | "24 24 2 1 -1 -1", 5 | /* colors */ 6 | " c None", 7 | ". s iconColor1 m black c black", 8 | /* pixels */ 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 | -------------------------------------------------------------------------------- /common/bitmaps/ms/italic.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char*notitalic_xpm[]={ 3 | "24 24 2 1", 4 | ". c None", 5 | "# c #000000", 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 | -------------------------------------------------------------------------------- /common/bitmaps/ms/new.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * newfile_xpm[] = { 3 | "24 24 3 1", 4 | ". c None", 5 | "X c #000000000000", 6 | "o c #FFFFFFFFFFFF", 7 | "........................", 8 | "........................", 9 | "........................", 10 | "........................", 11 | "........................", 12 | "........................", 13 | ".......XXXXXXXX.........", 14 | ".......XooooooXX........", 15 | ".......XooooooXoX.......", 16 | ".......XooooooXXXX......", 17 | ".......XoooooooooX......", 18 | ".......XoooooooooX......", 19 | ".......XoooooooooX......", 20 | ".......XoooooooooX......", 21 | ".......XoooooooooX......", 22 | ".......XoooooooooX......", 23 | ".......XoooooooooX......", 24 | ".......XoooooooooX......", 25 | ".......XXXXXXXXXXX......", 26 | "........................", 27 | "........................", 28 | "........................", 29 | "........................", 30 | "........................"}; 31 | -------------------------------------------------------------------------------- /common/bitmaps/ms/printer.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * printfile_xpm[] = { 3 | "24 24 6 1", 4 | ". c None", 5 | "g c #C000C000C000", 6 | "X c #000000000000", 7 | "o c #FFFFFFFFFFFF", 8 | "O c #820782078207", 9 | "+ c #FFFFFFFF0000", 10 | "........................", 11 | "........................", 12 | "........................", 13 | "........................", 14 | "........................", 15 | ".........XXXXXXXXX......", 16 | "........XooooooooX......", 17 | "........XoXXXXXoX.......", 18 | ".......XooooooooX.......", 19 | ".......XoXXXXXoXXXX.....", 20 | "......XooooooooXgXgX....", 21 | ".....XXXXXXXXXXgXgXX....", 22 | "....XggggggggggXgXgX....", 23 | "....XXXXXXXXXXXXXggX....", 24 | "....XggggggOOOggXgX.....", 25 | "....Xgggggg+++ggXXX.....", 26 | "....XXXXXXXXXXXXXgX.....", 27 | ".....XgggggggggXgX......", 28 | "......XXXXXXXXXXX.......", 29 | "........................", 30 | "........................", 31 | "........................", 32 | "........................", 33 | "........................"}; 34 | -------------------------------------------------------------------------------- /common/bitmaps/ms/redo.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *do_xpm[] = { 3 | /* columns rows colors chars-per-pixel */ 4 | "24 24 3 1", 5 | " c None", 6 | ". c #808080", 7 | "X c Gray100", 8 | /* pixels */ 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " ", 16 | " ", 17 | " ..... ", 18 | " ..XXXX.. . ", 19 | " .XX X. ..X ", 20 | " .X ...X ", 21 | " .X ....X ", 22 | " .. .....X ", 23 | " .. XXXXX ", 24 | " XX ", 25 | " ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " ", 31 | " ", 32 | " "}; 33 | -------------------------------------------------------------------------------- /common/bitmaps/ms/undo.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *undo_xpm[] = { 3 | /* columns rows colors chars-per-pixel */ 4 | "24 24 3 1", 5 | " c None", 6 | ". c black", 7 | "X c Gray100", 8 | /* pixels */ 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " ", 16 | " ", 17 | " ..... ", 18 | " . .. XXX.. ", 19 | " .. . XX .X ", 20 | " ... X .X ", 21 | " .... .X ", 22 | " ..... ..X ", 23 | " XXXXX ..XX ", 24 | " XX ", 25 | " ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " ", 31 | " ", 32 | " " 33 | }; 34 | -------------------------------------------------------------------------------- /common/bitmaps/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/new.gif -------------------------------------------------------------------------------- /common/bitmaps/new.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * new_xpm[] = { 3 | "24 24 5 1", 4 | " s None c None", 5 | ". c #808080", 6 | "X c white", 7 | "o c #c0c0c0", 8 | "O c black", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " .......... ", 14 | " .XXXXXXXXo. ", 15 | " .XXXXXXXXoX. ", 16 | " .XXXXXXXXOOOO ", 17 | " .XXXXXXXXXXoO ", 18 | " .XXXXXXXXXXoO ", 19 | " .XXXXXXXXXXoO ", 20 | " .XXXXXXXXXXoO ", 21 | " .XXXXXXXXXXoO ", 22 | " .XXXXXXXXXXoO ", 23 | " .XXXXXXXXXXoO ", 24 | " .XXXXXXXXXXoO ", 25 | " .XXXXXXXXXXoO ", 26 | " .XXXXXXXXXXoO ", 27 | " .oooooooooooO ", 28 | " OOOOOOOOOOOOO ", 29 | " ", 30 | " ", 31 | " ", 32 | " "}; 33 | -------------------------------------------------------------------------------- /common/bitmaps/next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/next.gif -------------------------------------------------------------------------------- /common/bitmaps/next.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * next_xpm[] = { 3 | "24 24 4 1", 4 | " s None c None", 5 | ". c white", 6 | "X c black", 7 | "o c blue", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " .. X ", 14 | " .o.. X ", 15 | " .ooo.. X ", 16 | " .ooooo.. X ", 17 | " .ooooooo.. X ", 18 | " .ooooooooo.. X ", 19 | " .ooooooooooo.X ", 20 | " .oooooooooooXX ", 21 | " .oooooooooXX X ", 22 | " .oooooooXX X ", 23 | " .oooooXX X ", 24 | " .oooXX X ", 25 | " .oXX X ", 26 | " .X X ", 27 | " ", 28 | " ", 29 | " ", 30 | " ", 31 | " "}; 32 | -------------------------------------------------------------------------------- /common/bitmaps/none.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/none.gif -------------------------------------------------------------------------------- /common/bitmaps/none.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * none_xpm[] = { 3 | "24 24 3 1", 4 | " s None c None", 5 | ". c black", 6 | "X c white", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " .............. ", 13 | " .XXXXXXXXXXXX. ", 14 | " .XXXXXXXXXXXX. ", 15 | " .XXXXXXXXXXXX. ", 16 | " .XXXXXXXXXXXX. ", 17 | " .XXXXXXXXXXXX. ", 18 | " .XXXXXXXXXXXX. ", 19 | " .XXXXXXXXXXXX. ", 20 | " .XXXXXXXXXXXX. ", 21 | " .XXXXXXXXXXXX. ", 22 | " .XXXXXXXXXXXX. ", 23 | " .XXXXXXXXXXXX. ", 24 | " .XXXXXXXXXXXX. ", 25 | " .............. ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " "}; 31 | -------------------------------------------------------------------------------- /common/bitmaps/overwrite.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * overwrite_xpm[] = { 3 | "24 24 2 1", 4 | " c None", 5 | ". c #000000000000", 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 | -------------------------------------------------------------------------------- /common/bitmaps/play.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/play.gif -------------------------------------------------------------------------------- /common/bitmaps/play.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * play_xpm[] = { 3 | /**/ 4 | "24 24 4 1", 5 | /*,S @,Y @,Z @|\ @*/ 6 | " s None m None c None", 7 | ". s iconColor2 m white c white", 8 | "X c blue", 9 | "o s iconColor1 m black c black", 10 | /**/ 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " ", 16 | " .. ", 17 | " .X.. ", 18 | " .XXX.. ", 19 | " .XXXXX.. ", 20 | " .XXXXXXX.. ", 21 | " .XXXXXXXXX.. ", 22 | " .XXXXXXXXXXX.. ", 23 | " .XXXXXXXXXXXoo ", 24 | " .XXXXXXXXXoo ", 25 | " .XXXXXXXoo ", 26 | " .XXXXXoo ", 27 | " .XXXoo ", 28 | " .Xoo ", 29 | " .o ", 30 | " ", 31 | " ", 32 | " ", 33 | " ", 34 | " "}; 35 | -------------------------------------------------------------------------------- /common/bitmaps/plotter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/plotter.gif -------------------------------------------------------------------------------- /common/bitmaps/plotter.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * plotter_xpm[] = { 3 | "24 24 4 1", 4 | " s None c None", 5 | ". c black", 6 | "X c blue", 7 | "o c red", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " . ", 14 | " . XXXX ", 15 | " .X X ", 16 | " . XX X ", 17 | " . XXXX ", 18 | " . o ", 19 | " . o ", 20 | " . o o ", 21 | " . o o o ", 22 | " . o o o o ", 23 | " . o o o o o o ", 24 | " . o o o o o o ", 25 | " . o o o o o o ", 26 | " .............. ", 27 | " ", 28 | " ", 29 | " ", 30 | " ", 31 | " "}; 32 | -------------------------------------------------------------------------------- /common/bitmaps/portrait.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * portrait_xpm[] = { 3 | "24 24 5 1", 4 | " s None c None", 5 | ". c #808080", 6 | "X c white", 7 | "o c #c0c0c0", 8 | "O c black", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ......... ", 14 | " .XXXXXXXo. ", 15 | " .XXXXXXXoX. ", 16 | " .XOOOOOXOOOO ", 17 | " .XXXXXXXXXoO ", 18 | " .XXXXXXXXXoO ", 19 | " .XOOOOOOOXoO ", 20 | " .XXXXXXXXXoO ", 21 | " .XXXXXXXXXoO ", 22 | " .XOOOOOOOXoO ", 23 | " .XXXXXXXXXoO ", 24 | " .XXXXXXXXXoO ", 25 | " .XOOOOOOOXoO ", 26 | " .XXXXXXXXXoO ", 27 | " .ooooooooooO ", 28 | " OOOOOOOOOOOO ", 29 | " ", 30 | " ", 31 | " ", 32 | " "}; 33 | -------------------------------------------------------------------------------- /common/bitmaps/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/preview.gif -------------------------------------------------------------------------------- /common/bitmaps/preview.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * preview_xpm[] = { 3 | "24 24 3 1 4 4", 4 | " s None c None", 5 | ". c black", 6 | "X c cyan", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ....... ", 12 | " ....X.... ", 13 | " ...XXXXX... ", 14 | " ..XXXXXXX.. ", 15 | " ..XXXXXXX.. ", 16 | " .XXXXXXXX.. ", 17 | " ..XXXXXXX.. ", 18 | " ..XXXXXXX.. ", 19 | " ...XXXXX... ", 20 | " .......... ", 21 | " .......... ", 22 | " ... ", 23 | " ... ", 24 | " .. ", 25 | " ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " "}; 31 | -------------------------------------------------------------------------------- /common/bitmaps/previous.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/previous.gif -------------------------------------------------------------------------------- /common/bitmaps/previous.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * previous_xpm[] = { 3 | "24 24 4 1", 4 | " s None c None", 5 | ". c black", 6 | "X c white", 7 | "o c blue", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " . XX ", 14 | " . XXo. ", 15 | " . XXooo. ", 16 | " . XXooooo. ", 17 | " . XXooooooo. ", 18 | " . XXooooooooo. ", 19 | " .Xooooooooooo. ", 20 | " ..ooooooooooo. ", 21 | " . ..ooooooooo. ", 22 | " . ..ooooooo. ", 23 | " . ..ooooo. ", 24 | " . ..ooo. ", 25 | " . ..o. ", 26 | " . .. ", 27 | " ", 28 | " ", 29 | " ", 30 | " ", 31 | " "}; 32 | -------------------------------------------------------------------------------- /common/bitmaps/printer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/printer.gif -------------------------------------------------------------------------------- /common/bitmaps/printer.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * printer_xpm[] = { 3 | "24 24 4 1", 4 | " s None c None", 5 | ". c black", 6 | "X c white", 7 | "o c yellow", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " .......... ", 14 | " .XXXXXXX.XX. ", 15 | " .X....X..XX. ", 16 | " .XXXXXXX.XXX. ", 17 | " .X..X..X..... ", 18 | " .XXXXXXX. ", 19 | " ............ ", 20 | " .oooooooooo. ", 21 | " .oooo..o..o.. ", 22 | " .oooooooooo.. ", 23 | " .oooooooooo.. ", 24 | " .oooooooooo.. ", 25 | " .oooooooooo. ", 26 | " ............ ", 27 | " ", 28 | " ", 29 | " ", 30 | " ", 31 | " "}; 32 | -------------------------------------------------------------------------------- /common/bitmaps/pw_fg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/pw_fg.gif -------------------------------------------------------------------------------- /common/bitmaps/quit.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/quit.xpm -------------------------------------------------------------------------------- /common/bitmaps/rbm.xbm: -------------------------------------------------------------------------------- 1 | #define rbm_width 6 2 | #define rbm_height 7 3 | static unsigned char rbm_bits[] = { 4 | 0x01, 0x03, 0x07, 0x0f, 0x07, 0x03, 0x01}; 5 | -------------------------------------------------------------------------------- /common/bitmaps/redo.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * redo_xpm[] = { 3 | "24 24 2 1", 4 | " s None c None", 5 | ". c black", 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 | -------------------------------------------------------------------------------- /common/bitmaps/reload.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * reload_xpm[] = { 3 | "24 24 3 1", 4 | " s None c None", 5 | ". c #808080", 6 | "X c black", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ..XXX. ", 13 | " .XXXXXXX ", 14 | " .XX. .X ", 15 | " XX. ", 16 | " XXX X ", 17 | " XXXXXXX XXX ", 18 | " XXXXX XXXXX ", 19 | " XXX XXXXXXX ", 20 | " X XXX ", 21 | " .XX ", 22 | " X. .XX. ", 23 | " XXXXXXX. ", 24 | " .XXX.. ", 25 | " ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " "}; 31 | -------------------------------------------------------------------------------- /common/bitmaps/rline.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * uline_xpm[] = { 3 | "24 24 3 1", 4 | " s None c None", 5 | ". c black", 6 | "X c white", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " .............. ", 13 | " .XXXXXXXXXXX.. ", 14 | " .XXXXXXXXXXX.. ", 15 | " .XXXXXXXXXXX.. ", 16 | " .XXXXXXXXXXX.. ", 17 | " .XXXXXXXXXXX.. ", 18 | " .XXXXXXXXXXX.. ", 19 | " .XXXXXXXXXXX.. ", 20 | " .XXXXXXXXXXX.. ", 21 | " .XXXXXXXXXXX.. ", 22 | " .XXXXXXXXXXX.. ", 23 | " .XXXXXXXXXXX.. ", 24 | " .XXXXXXXXXXX.. ", 25 | " .............. ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " "}; 31 | -------------------------------------------------------------------------------- /common/bitmaps/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/save.gif -------------------------------------------------------------------------------- /common/bitmaps/search.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * search_xpm[] = { 3 | "24 24 3 1", 4 | " s None c None", 5 | ". c blue", 6 | "X c green", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ... ... ", 13 | " .XXX. .XXX. ", 14 | " .XX.. ..XX. ", 15 | " ...... ...... ", 16 | " ..XXX.. ..XXX.. ", 17 | " ..XXX......XXX.. ", 18 | " ..XXX.. ..XXX.. ", 19 | " ..XXX.. ..XXX.. ", 20 | " ..XXX......XXX.. ", 21 | " ..XXX.. ..XXX.. ", 22 | " ..XXX.. ..XXX.. ", 23 | " ..XXX.. ..XXX.. ", 24 | " ...X... ...X... ", 25 | " ..... ..... ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " "}; 31 | -------------------------------------------------------------------------------- /common/bitmaps/security.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *security[] = { 3 | /* width height num_colors chars_per_pixel */ 4 | " 18 18 12 1", 5 | /* colors */ 6 | ". c #000000", 7 | "# c #222222", 8 | "a c #333366", 9 | "b c #444444", 10 | "c c #6666cc", 11 | "d c #800000", 12 | "e c #808000", 13 | "f c #990066", 14 | "g c #9999ff", 15 | "h c None", 16 | "i c #f5f5f5", 17 | "j c #ffffff", 18 | /* pixels */ 19 | "hhhhhhhhhhhhhhhhhh", 20 | "hhhhhhhhhhhhhhhhhh", 21 | "hhhhhhhhhhhhhhhhhh", 22 | "hhhhhhhhhhcccaaahh", 23 | "hhhhhhhhhchjjhhcah", 24 | "hhhhhhhhhcjh.dcgah", 25 | "hhhhhhhhhahchh#gah", 26 | "hhhccccccahcchc..h", 27 | "hhcj.eeeeccc.hhhhh", 28 | "hhajjjjjjjgd.hhhhh", 29 | "hhajgfffffdc.hhhhh", 30 | "hhajjeeeeeed.hhhhh", 31 | "hhajgfffffdc.hhhhh", 32 | "hhajjeeeeeec.hhhhh", 33 | "hhca######..chhhhh", 34 | "hhhhhhhhhhhhhhhhhh", 35 | "hhhhhhhhhhhhhhhhhh", 36 | "hhhhhhhhhhhhhhhhhh" 37 | }; 38 | -------------------------------------------------------------------------------- /common/bitmaps/siag_fg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/siag_fg.gif -------------------------------------------------------------------------------- /common/bitmaps/sigma.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/sigma.gif -------------------------------------------------------------------------------- /common/bitmaps/sigma.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sigma_xpm[] = { 3 | "24 24 2 1", 4 | " s None c None", 5 | ". c blue", 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 | -------------------------------------------------------------------------------- /common/bitmaps/smaller.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * smaller_xpm[] = { 3 | "24 24 2 1", 4 | " s None c None", 5 | ". c black", 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 | -------------------------------------------------------------------------------- /common/bitmaps/sortaz.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sortaz_xpm[] = { 3 | "24 24 3 1", 4 | " s None c None", 5 | ". c black", 6 | "X c red", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " .... XX ", 13 | " . . XX ", 14 | " . . XX ", 15 | " ...... XX ", 16 | " . . XX ", 17 | " . . XX ", 18 | " XX ", 19 | " XX ", 20 | " ...... XX ", 21 | " . XX ", 22 | " . XX ", 23 | " . XXXXXX ", 24 | " . XXXX ", 25 | " ...... XX ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " "}; 31 | -------------------------------------------------------------------------------- /common/bitmaps/sortmode.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sortmode_xpm[] = { 3 | "24 24 2 1", 4 | " s None c None", 5 | ". c red", 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 | -------------------------------------------------------------------------------- /common/bitmaps/sortza.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sortza_xpm[] = { 3 | "24 24 3 1", 4 | " s None c None", 5 | ". c black", 6 | "X c red", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ...... XX ", 13 | " . XX ", 14 | " . XX ", 15 | " . XX ", 16 | " . XX ", 17 | " ...... XX ", 18 | " XX ", 19 | " XX ", 20 | " .... XX ", 21 | " . . XX ", 22 | " . . XX ", 23 | " ...... XXXXXX ", 24 | " . . XXXX ", 25 | " . . XX ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " "}; 31 | -------------------------------------------------------------------------------- /common/bitmaps/spell.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * spell_xpm[] = { 3 | "24 24 3 1", 4 | " s None c None", 5 | ". c red", 6 | "X c black", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " . .. ", 13 | " .. ... ", 14 | " .. .. ", 15 | " .. ... ", 16 | " .. .... ", 17 | " X...... XXX ", 18 | " X ... X X ", 19 | " X ..X X X ", 20 | " X X X X X ", 21 | " XXXX XXX X ", 22 | " X X X X X ", 23 | " X X X X X ", 24 | " X X X X X ", 25 | " X X XXX XXX ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " "}; 31 | -------------------------------------------------------------------------------- /common/bitmaps/stop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/stop.gif -------------------------------------------------------------------------------- /common/bitmaps/stop.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * stop_xpm[] = { 3 | "24 24 4 1", 4 | " s None c None", 5 | ". c white", 6 | "X c blue", 7 | "o c black", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " .............. ", 14 | " .XXXXXXXXXXXXo ", 15 | " .XXXXXXXXXXXXo ", 16 | " .XXXXXXXXXXXXo ", 17 | " .XXXXXXXXXXXXo ", 18 | " .XXXXXXXXXXXXo ", 19 | " .XXXXXXXXXXXXo ", 20 | " .XXXXXXXXXXXXo ", 21 | " .XXXXXXXXXXXXo ", 22 | " .XXXXXXXXXXXXo ", 23 | " .XXXXXXXXXXXXo ", 24 | " .XXXXXXXXXXXXo ", 25 | " .XXXXXXXXXXXXo ", 26 | " oooooooooooooo ", 27 | " ", 28 | " ", 29 | " ", 30 | " ", 31 | " "}; 32 | -------------------------------------------------------------------------------- /common/bitmaps/strike.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * strike_xpm[] = { 3 | "24 24 2 1", 4 | " c None", 5 | ". c black", 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 | -------------------------------------------------------------------------------- /common/bitmaps/table.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * table_xpm[] = { 3 | "24 24 2 1", 4 | " s None c None", 5 | ". c black", 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 | -------------------------------------------------------------------------------- /common/bitmaps/tonone: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | for f in *.xpm; do 3 | mv $f $f.BAK 4 | sed -e 's/#FFFFC30BCB2B/None/g' < $f.BAK > $f; 5 | done 6 | -------------------------------------------------------------------------------- /common/bitmaps/uchar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/uchar.gif -------------------------------------------------------------------------------- /common/bitmaps/uchar.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * uchar_xpm[] = { 3 | "24 24 2 1", 4 | " s None c None", 5 | ". c black", 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 | -------------------------------------------------------------------------------- /common/bitmaps/uline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/uline.gif -------------------------------------------------------------------------------- /common/bitmaps/uline.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * uline_xpm[] = { 3 | "24 24 3 1", 4 | " s None c None", 5 | ". c black", 6 | "X c white", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " .............. ", 13 | " .XXXXXXXXXXXX. ", 14 | " .XXXXXXXXXXXX. ", 15 | " .XXXXXXXXXXXX. ", 16 | " .XXXXXXXXXXXX. ", 17 | " .XXXXXXXXXXXX. ", 18 | " .XXXXXXXXXXXX. ", 19 | " .XXXXXXXXXXXX. ", 20 | " .XXXXXXXXXXXX. ", 21 | " .XXXXXXXXXXXX. ", 22 | " .XXXXXXXXXXXX. ", 23 | " .XXXXXXXXXXXX. ", 24 | " .............. ", 25 | " .............. ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " "}; 31 | -------------------------------------------------------------------------------- /common/bitmaps/undo.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * undo_xpm[] = { 3 | "24 24 2 1", 4 | " s None c None", 5 | ". c black", 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 | -------------------------------------------------------------------------------- /common/bitmaps/vbottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/vbottom.gif -------------------------------------------------------------------------------- /common/bitmaps/vbottom.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * vbottom_xpm[] = { 3 | "24 24 3 1", 4 | " s None c None", 5 | ". c black", 6 | "X c green", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " .. ... ", 16 | " . . . . ", 17 | " . . . ", 18 | " . X X ... ", 19 | " . X X . . ", 20 | " . X X . . ", 21 | " . . X X . . ", 22 | " .. X X ... ", 23 | " X X ", 24 | " X X ", 25 | " XX ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " "}; 31 | -------------------------------------------------------------------------------- /common/bitmaps/viewmode.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * viewmode_xpm[] = { 3 | "24 24 4 1", 4 | " s None c None", 5 | ". c black", 6 | "X c #808080", 7 | "o c #c0c0c0", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " ", 16 | " ......X ", 17 | " .... ...X ", 18 | " .. . oXo . .. ", 19 | " .. . X.X . .. ", 20 | " .X . oXo . X ", 21 | " XX . . XX ", 22 | " X ... X ", 23 | " ", 24 | " ", 25 | " ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " ", 31 | " "}; 32 | -------------------------------------------------------------------------------- /common/bitmaps/vtop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/bitmaps/vtop.gif -------------------------------------------------------------------------------- /common/bitmaps/vtop.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * vtop_xpm[] = { 3 | "24 24 3 1", 4 | " s None c None", 5 | ". c blue", 6 | "X c black", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " . . ", 13 | " . . ", 14 | " . . ", 15 | " XX . . XXX ", 16 | " X X . . X X ", 17 | " X . . X X ", 18 | " X . . X X ", 19 | " X .. XXX ", 20 | " X X ", 21 | " X X X ", 22 | " XX X ", 23 | " ", 24 | " ", 25 | " ", 26 | " ", 27 | " ", 28 | " ", 29 | " ", 30 | " "}; 31 | -------------------------------------------------------------------------------- /common/bitmaps/xpm2gif: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | GIFNAME=`basename $1 .xpm`.gif 3 | echo "xpm2gif $1 ==> $GIFNAME" 4 | cat $1 | sed -e 's/None/pink/g' | xpmtoppm | ppmtogif -transparent pink > $GIFNAME 5 | -------------------------------------------------------------------------------- /common/bitmaps/xterm16.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * xterm16_xpm[] = { 3 | "24 24 6 1", 4 | " s None c None", 5 | ". c steelblue1", 6 | "X c black", 7 | "o c white", 8 | "O c gray45", 9 | "+ c gray55", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " ............... ", 16 | " .X.X.X......XX. ", 17 | " ............... ", 18 | " .ooooooooooooo. ", 19 | " .oOOOOOOo+++oo. ", 20 | " .ooooOoo+oooOo. ", 21 | " .o+++oOOo+oOoo. ", 22 | " .oooo+oooooooo. ", 23 | " .oOOOoOOOOoooo. ", 24 | " .oooo+oooooooo. ", 25 | " .oOo++++ooOOOo. ", 26 | " .ooooooooooooo. ", 27 | " .ooooooooooooo. ", 28 | " ............... ", 29 | " ", 30 | " ", 31 | " ", 32 | " ", 33 | " "}; 34 | -------------------------------------------------------------------------------- /common/dictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/dictionary.cs -------------------------------------------------------------------------------- /common/dictionary.da: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/dictionary.da -------------------------------------------------------------------------------- /common/dictionary.de: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/dictionary.de -------------------------------------------------------------------------------- /common/dictionary.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/dictionary.es -------------------------------------------------------------------------------- /common/dictionary.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/dictionary.fr -------------------------------------------------------------------------------- /common/dictionary.gl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/dictionary.gl -------------------------------------------------------------------------------- /common/dictionary.hr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/dictionary.hr -------------------------------------------------------------------------------- /common/dictionary.hu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/dictionary.hu -------------------------------------------------------------------------------- /common/dictionary.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/dictionary.it -------------------------------------------------------------------------------- /common/dictionary.nl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/dictionary.nl -------------------------------------------------------------------------------- /common/dictionary.no: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/dictionary.no -------------------------------------------------------------------------------- /common/dictionary.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/dictionary.pl -------------------------------------------------------------------------------- /common/dictionary.pt_BR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/dictionary.pt_BR -------------------------------------------------------------------------------- /common/dictionary.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/dictionary.ru -------------------------------------------------------------------------------- /common/dictionary.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/dictionary.sv -------------------------------------------------------------------------------- /common/docs/Copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/docs/Copyright -------------------------------------------------------------------------------- /common/docs/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | commondocdir = $(docdir)/common 3 | 4 | commondoc_DATA = COPYING.LIB Copyright \ 5 | credits.html fonts.html form.html interpreters.html \ 6 | office.html plugins.html search.html siaghelp.html 7 | 8 | bin_SCRIPTS = siaghelp 9 | 10 | EXTRA_DIST = $(commondoc_DATA) $(bin_SCRIPTS) 11 | 12 | -------------------------------------------------------------------------------- /common/docs/credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/docs/credits.html -------------------------------------------------------------------------------- /common/docs/search.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Search 4 | 5 | 6 | 7 |

Search

8 | 9 | Searching the help is currently not implemented. However, each help 10 | file can be searched by pressing Ctrl-S or selecting View - Find from 11 | Chimera's menu. 12 |

13 |

18 | 19 |
20 |
Ulric Eriksson - July 1997 - ulric@siag.nu
21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /common/docs/siaghelp: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # A script to use Netscape as help browser 4 | # Netscape can't be used directly, as it behaves differently depending 5 | # on whether an instance of Netscape is already running. 6 | # Put this script in a directory in your PATH. Then do: 7 | # SIAGHELP=siaghelp; export SIAGHELP 8 | 9 | if [ "$SIAGHELP" = "siaghelp" ]; then 10 | unset SIAGHELP 11 | fi 12 | 13 | WS=`which "$SIAGHELP" 2> /dev/null` 14 | 15 | if [ "$SIAGHELP" = "" -o ! -x "$WS" ]; then 16 | if which netscape > /dev/null; then 17 | SIAGHELP=netscape 18 | elif which lynx > /dev/null; then 19 | SIAGHELP="xterm -e lynx" 20 | else 21 | SIAGHELP=pw 22 | fi 23 | fi 24 | 25 | if [ "$SIAGHELP" = "kdehelp" ]; then 26 | case "$1" in 27 | *.htm* | *.HTM* ) 28 | kdehelp "$1" 29 | ;; 30 | * ) 31 | kedit "$1" 32 | ;; 33 | esac 34 | elif [ "$SIAGHELP" = "netscape" ]; then 35 | (netscape -remote openURL\($@\) || netscape $@) 2> /dev/null 36 | else 37 | $SIAGHELP "$1" 38 | fi 2>&1 39 | 40 | 41 | -------------------------------------------------------------------------------- /common/newdict: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | LC_COLLATE=C 4 | export LC_COLLATE 5 | 6 | # Compare a dictionary.*.in file with all others, looking for missing keys 7 | 8 | # Find all keys from all dictionaries 9 | grep -h -v '^#' dictionary.*.in | cut -f 1 -s | sort | uniq > alldict 10 | 11 | # Find all keys from the named dictionary 12 | grep -v '^#' $1.in | cut -f 1 -s | sort | uniq > olddict 13 | 14 | # Find all keys that are missing from the named dictionary 15 | diff olddict alldict | grep "^> "| cut -c 3- 16 | 17 | -------------------------------------------------------------------------------- /common/o3read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/common/o3read.c -------------------------------------------------------------------------------- /common/siag.dfmext: -------------------------------------------------------------------------------- 1 | # DFM extension file, suitable for ~/.dfmext 2 | *.siag;/usr/local/lib/siag/common/bitmaps/ksiag.xpm;siag !0! 3 | *.wk1;/usr/local/lib/siag/common/bitmaps/ksiag.xpm;siag !0! 4 | *.csv;/usr/local/lib/siag/common/bitmaps/ksiag.xpm;siag !0! 5 | *.pw;/usr/local/lib/siag/common/bitmaps/pw_fg.xpm;pw !0! 6 | *.rtf;/usr/local/lib/siag/common/bitmaps/pw_fg.xpm;pw !0! 7 | *.doc;/usr/local/lib/siag/common/bitmaps/pw_fg.xpm;pw !0! 8 | *.egon;/usr/local/lib/siag/common/bitmaps/egon_fg.xpm;egon !0! 9 | 10 | -------------------------------------------------------------------------------- /common/siag.magic: -------------------------------------------------------------------------------- 1 | # File format identifiers, suitable for /etc/magic 2 | 11 string Siag Siag spreadsheet file 3 | 11 string Pathetic Pathetic Writer word processor document 4 | 11 string Egon Egon Animator graphics file 5 | -------------------------------------------------------------------------------- /common/siagrun: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | if [ ! -f $HOME/.siag/applications.sh ]; then 4 | cat > $HOME/.siag/applications.sh << EOF 5 | viewer=gvu 6 | lpr=lpr 7 | editor=xedplus 8 | help=siaghelp 9 | filer=xfiler 10 | terminal=xterm 11 | calculator=xcalc 12 | EOF 13 | 14 | fi 15 | 16 | . $HOME/.siag/applications.sh 17 | 18 | CMD=$1 19 | shift 20 | #echo "eval \$$CMD $@ || exit 1" 21 | eval \$$CMD $@ 2> /dev/null || exit 1 22 | 23 | -------------------------------------------------------------------------------- /common/themes/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | themesdir = $(datadir)/siag/common/themes 3 | themes_DATA = theme.classic theme.gnome theme.kde theme.kde2 theme.ms \ 4 | theme.athena 5 | 6 | EXTRA_DIST = $(themes_DATA) README 7 | 8 | -------------------------------------------------------------------------------- /common/themes/README: -------------------------------------------------------------------------------- 1 | These files contain resource settings that change the look and feel 2 | of the programs when copied to $HOME/.siag/theme. 3 | -------------------------------------------------------------------------------- /common/themes/theme.classic: -------------------------------------------------------------------------------- 1 | ! This file is theme.classic, which looks like old versions of Siag 2 | 3 | ! Use the old toolbar icons 4 | PIXPATH: .../common/bitmaps 5 | 6 | -------------------------------------------------------------------------------- /egon/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = docs examples 3 | 4 | bin_SCRIPTS = mgptotxt 5 | 6 | noinst_LIBRARIES = libegon.a 7 | 8 | libegon_a_SOURCES = main.c railway.c matrix.c fileio.c cmds.c \ 9 | buffer.c \ 10 | fileio_egon.c fileio_c.c fileio_scm.c \ 11 | fileio_html.c fileio_mgp.c fileio_ppt.c fileio_txt.c \ 12 | siodi.c guilei.c tcli.c pythoni.c rubyi.c 13 | 14 | noinst_HEADERS = egon.h user_interface.h 15 | 16 | AM_CPPFLAGS = $(DEBUG) $(NDBM) 17 | 18 | scmdir = $(datadir)/siag/egon 19 | scm_DATA = animator.scm egon.scm menu.scm external.load external.save 20 | EXTRA_DIST = $(bin_SCRIPTS) $(scm_DATA) 21 | 22 | -------------------------------------------------------------------------------- /egon/docs/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | egondocdir = $(docdir)/egon 3 | 4 | egondoc_DATA = commands.html concepts.html egon.gif egon.html fileformats.html \ 5 | intro.html invocation.html keys.html mouse.html scheme.html \ 6 | scrollbars.html strings.html toolbar.html 7 | 8 | man_MANS = egon.1 9 | 10 | EXTRA_DIST = $(egondoc_DATA) $(man_MANS) 11 | 12 | autodocs: 13 | @echo generating html 14 | ../../siod/siod menus.scm 15 | 16 | -------------------------------------------------------------------------------- /egon/docs/egon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/egon/docs/egon.gif -------------------------------------------------------------------------------- /egon/docs/intro.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Egon Animator - Introduction 4 | 5 | 6 |

Introduction

7 | Egon Animator is an X-based animation development tool for Unix. It uses 8 | Scheme (a Lisp dialect) as an 9 | extension language, which makes it easy to create new 10 | functions (for native Lispers, that is). 11 | It is copyrighted by 12 | me, Ulric Eriksson, but is free for use by anybody 13 | without paying me any money. Read the file 14 | COPYING for 15 | more information. 16 |

17 | Egon Animator is part of the Siag Office package, 18 | together with SIAG and PW. 19 |

20 | Siag home page 21 |

22 | Sources for Siag Office. 23 | I can be reached at ulric@siag.nu. 24 | 25 |


26 |
Ulric Eriksson - May 2000 - ulric@siag.nu
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /egon/docs/keys.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Egon Animator - Keybindings 4 | 5 | 6 |

Keybindings

7 | Here are the standard keybindings that are 8 | available when the stage is visible. 9 |

10 |

11 |
H 12 |
Pop down the stage. 13 |
O 14 |
Pop down the stage and open another file. 15 |
Q 16 |
Quit the program. 17 |
S 18 |
Stop the animation. 19 |
P 20 |
Move to previous animation frame. 21 |
N 22 |
Move to next animation frame. 23 |
C 24 |
Play the animation. 25 |
Space 26 |
Move to the next slide. 27 |
Backspace 28 |
Move to the prevous slide. 29 |
30 |
31 |
Ulric Eriksson - June 2000 - ulric@siag.nu
32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /egon/docs/mouse.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Egon Animator - The Mouse 4 | 5 | 6 | 7 |
8 |

The Mouse

9 |
10 | The mouse is used to set point, mark and the block. 11 | 12 |
    13 |
  • Button 1 moves point 14 |
  • Button 1 movement selects text 15 |
  • Button 2 pastes the selection 16 |
  • Button 3 extends the selection 17 |
18 | Mice with fewer than 3 buttons can be used by changing the app-defaults. 19 | 20 |
21 |
Ulric Eriksson - February 1997 - ulric@siag.nu
22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /egon/docs/scrollbars.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Egon Animator - The Scrollbars 4 | 5 | 6 | 7 |

The Scrollbars

8 | The exact look and feel of the scrollbars depends on the widget set 9 | that Egon Animator is linked with. In the following, I assume that the Xaw3d 10 | widget set is used. Vanilla Athena widgets will also work fine, 11 | but the behaviour is different. 12 |

13 | The scrollbars are used to move the grid one line or one page at a time. 14 | Clicking on the small arrows moves the grid one line and clicking 15 | somewhere else on the bar moves the grid one page. The grid can also 16 | be scrolled by dragging the small handle. 17 |

18 | No matter how the grid is moved, the point is always "protected" so 19 | that it doesn't move outside the visible area. 20 | 21 |


22 |
Ulric Eriksson - February 1997 - ulric@siag.nu
23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /egon/examples/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | egonexamplesdir = $(docdir)/egon/examples 3 | 4 | egonexamples_DATA = bounce.egon ms.egon propeller.egon rondo.egon 5 | 6 | EXTRA_DIST = $(egonexamples_DATA) 7 | 8 | -------------------------------------------------------------------------------- /egon/examples/propeller.egon: -------------------------------------------------------------------------------- 1 | # Creator: Egon Animator 3.0pre1. No Warranty. 2 | # noname.egon 3 | .delta 50 4 | .duration 2000 5 | .geometry 800 600 6 | # Object FilledRectangle1 7 | .object 8 FilledRectangle1 7 34 8 | .tick 0 0 0 800 600 1 9 | # Object Line1 10 | .object 1 Line1 3 34 11 | .tick 0 0 0 800 600 1 12 | .tick 1000 0 600 800 -600 1 13 | .tick 2000 800 600 -800 -600 1 14 | -------------------------------------------------------------------------------- /egon/external.load: -------------------------------------------------------------------------------- 1 | Local File:cat 2 | Compressed File:gzip -d 3 | Archive:tar xf - 4 | Compressed Archive:tar zxf - 5 | FTP:ftpget 6 | HTTP:httpget 7 | Generic: 8 | -------------------------------------------------------------------------------- /egon/external.save: -------------------------------------------------------------------------------- 1 | Local File:cat 2 | Generic: 3 | -------------------------------------------------------------------------------- /egon/mgptotxt: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Print formfeed for %page. Ignore all other directives. 3 | awk '/^%page/ {print "\f"}; !/^%/' $1 4 | -------------------------------------------------------------------------------- /gvu/Gvu.kdelnk: -------------------------------------------------------------------------------- 1 | # KDE Config File 2 | [KDE Desktop Entry] 3 | SwallowExec= 4 | SwallowTitle= 5 | BinaryPattern= 6 | Name[C]=Gvu 7 | Exec=gvu %f 8 | Icon=gvu.xpm 9 | TerminalOptions= 10 | Path= 11 | Type=Application 12 | Terminal=0 13 | -------------------------------------------------------------------------------- /gvu/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | gvudocdir = $(docdir)/gvu 3 | 4 | gvudoc_DATA = README gs.interface comments.doc gvu.html \ 5 | copyright.html 6 | 7 | bin_PROGRAMS = gvu 8 | 9 | gvu_SOURCES = callbacks.c main.c misc.c 10 | 11 | noinst_HEADERS = gvu-ad.h gv.h 12 | 13 | man_MANS = gvu.1 14 | 15 | gvu_LDFLAGS = -L../xcommon -L../common -L../XawM/.libs 16 | 17 | gvu_LDADD = -lxcommon -lcommon \ 18 | -lXpm $(LIBT1) $(LIBT1X) $(X_LIBS) $(MY_X_LIBS) \ 19 | -lXt -lX11 $(X_PRE_LIBS) $(X_EXTRA_LIBS) 20 | 21 | AM_CPPFLAGS = $(DEBUG) $(X_CFLAGS) 22 | 23 | EXTRA_DIST = Gvu.ad Gvu.kdelnk blank.xpm dot.xpm $(gvudoc_DATA) $(man_MANS) 24 | 25 | gvu-ad.h: ../xcommon/ad2c Gvu.ad 26 | sh ../xcommon/ad2c Gvu.ad > gvu-ad.h 27 | 28 | # Add KDE entries for application and mimetypes 29 | 30 | install-data-local: 31 | $(KDEINST) -a Gvu.kdelnk -i ../common/bitmaps/gvu.xpm 32 | 33 | uninstall-local: 34 | $(KDEINST) -u -a Gvu.kdelnk -i gvu.xpm 35 | 36 | -------------------------------------------------------------------------------- /gvu/blank.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * blank_xpm[] = { 3 | "8 8 1 1", 4 | " c None", 5 | " ", 6 | " ", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " "}; 13 | -------------------------------------------------------------------------------- /gvu/dot.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * dot_xpm[] = { 3 | "8 8 2 1", 4 | " c None", 5 | ". c #000000000000", 6 | " ", 7 | " .. ", 8 | " .... ", 9 | " ...... ", 10 | " ...... ", 11 | " .... ", 12 | " .. ", 13 | " "}; 14 | -------------------------------------------------------------------------------- /mkinstalldirs: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | # mkinstalldirs --- make directory hierarchy 3 | # Author: Noah Friedman 4 | # Created: 1993-05-16 5 | # Public domain 6 | 7 | # $Id: mkinstalldirs,v 1.13 1999/01/05 03:18:55 bje Exp $ 8 | 9 | errstatus=0 10 | 11 | for file 12 | do 13 | set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` 14 | shift 15 | 16 | pathcomp= 17 | for d 18 | do 19 | pathcomp="$pathcomp$d" 20 | case "$pathcomp" in 21 | -* ) pathcomp=./$pathcomp ;; 22 | esac 23 | 24 | if test ! -d "$pathcomp"; then 25 | echo "mkdir $pathcomp" 26 | 27 | mkdir "$pathcomp" || lasterr=$? 28 | 29 | if test ! -d "$pathcomp"; then 30 | errstatus=$lasterr 31 | fi 32 | fi 33 | 34 | pathcomp="$pathcomp/" 35 | done 36 | done 37 | 38 | exit $errstatus 39 | 40 | # mkinstalldirs ends here 41 | -------------------------------------------------------------------------------- /o3read/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | bindir = $(libdir)/siag/o3read 3 | 4 | bin_PROGRAMS = o3tohtml dbtohtml utf8tolatin1 5 | 6 | dbtohtml_SOURCES = dbtohtml.c o3read.c 7 | 8 | o3tohtml_SOURCES = o3tohtml.c o3read.c 9 | 10 | utf8tolatin1_SOURCES = utf8tolatin1.c 11 | 12 | noinst_HEADERS = o3read.h 13 | 14 | AM_CPPFLAGS = -DNDEBUG $(DEBUG) 15 | 16 | -------------------------------------------------------------------------------- /o3read/o3read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/o3read/o3read.c -------------------------------------------------------------------------------- /plugins/README: -------------------------------------------------------------------------------- 1 | 2 | This directory contains most of the plugins for Siag Office, small 3 | applets that run inside a main application which also controls what 4 | it does. 5 | 6 | The plugins are: 7 | 8 | clipart Displays Postscript images 9 | dummy Runs "normal" (non-plugin) X applications, allowing them 10 | to be used almost as if they were plugins. 11 | form Displays a form and allows interaction with the user 12 | hello Displays a command button. Sends commands to main app. 13 | image Displays raster images 14 | plot Uses Gnuplot to produce graphs and displays them 15 | text Reads text files or runs shell commands 16 | 17 | -------------------------------------------------------------------------------- /plugins/dummy.scm: -------------------------------------------------------------------------------- 1 | (dummy-handler "GIF Image" "gif" "display %s" "ImageMagick") 2 | (dummy-handler "JPEG Image" "jpg" "display %s" "ImageMagick") 3 | (dummy-handler "Run" "run" "%B -name %W" "Siag Plugin") 4 | (dummy-handler "HTML" "html" "netscape -geometry 400x300+4000+4000 %s" "Netscape") 5 | (dummy-handler "Gnuplot" "cmd" "gnuplot -geometry 300x200+4000+4000 %s" "Gnuplot") 6 | 7 | -------------------------------------------------------------------------------- /pw/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = docs examples 3 | 4 | noinst_LIBRARIES = libpw.a 5 | 6 | libpw_a_SOURCES = railway.c matrix.c fileio.c cmds.c position.c \ 7 | buffer.c main.c \ 8 | fileio_pw.c fileio_txt.c fileio_html.c fileio_rtf.c \ 9 | fileio_sxw.c \ 10 | siodi.c guilei.c tcli.c pythoni.c rubyi.c 11 | 12 | noinst_HEADERS = pw.h user_interface.h 13 | 14 | AM_CPPFLAGS = $(DEBUG) $(NDBM) 15 | 16 | scmdir = $(datadir)/siag/pw 17 | 18 | scm_DATA = external.load external.save \ 19 | menu.scm pw.scm styles.scm 20 | EXTRA_DIST = $(scm_DATA) 21 | 22 | -------------------------------------------------------------------------------- /pw/cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/pw/cmds.c -------------------------------------------------------------------------------- /pw/docs/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | pwdocdir = $(docdir)/pw 3 | 4 | pwdoc_DATA = commands.html concepts.html fileformats.html intro.html \ 5 | invocation.html keys.html mouse.html pw.gif pw.html scheme.html \ 6 | scrollbars.html spell.html strings.html toolbar.html 7 | 8 | man_MANS = pw.1 9 | 10 | EXTRA_DIST = $(pwdoc_DATA) $(man_MANS) 11 | 12 | autodocs: 13 | @echo generating html 14 | ../../siod/siod menus.scm 15 | 16 | -------------------------------------------------------------------------------- /pw/docs/concepts.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Pathetic Writer - Concepts 4 | 5 | 6 | 7 |

Concepts

8 | 9 |
10 |
mark 11 |
The "other" standard position in 12 | the document, which is used 13 | for commands which need two coordinates. 14 |
point or current position 15 |
The position where text is 16 | entered. The current 17 | position can be moved using arrow keys, the mouse and other 18 | methods. 19 |
block 20 |
The block is a rectangular area which 21 | is displayed in inverse. 22 | It is used for commands which operate on a 23 | whole stretch of text. 24 |
25 | 26 |
27 |
Ulric Eriksson - February 1997 - ulric@siag.nu
28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /pw/docs/intro.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Pathetic Writer - Introduction 4 | 5 | 6 |

Introduction

7 | Pathetic Writer is an X-based word processor for Unix. It uses 8 | Scheme (a Lisp dialect) as an 9 | extension language, which makes it easy to create new 10 | functions (for native Lispers, that is). 11 | It is copyrighted by 12 | me, Ulric Eriksson, but is free for use by anybody 13 | without paying me any money. Read the file 14 | COPYING for 15 | more information. 16 |

17 | Pathetic Writer is part of the Siag Office package, 18 | together with SIAG and Egon. 19 |

20 | Siag home page 21 |

22 | Sources for Siag Office. 23 | I can be reached at ulric@siag.nu. 24 | 25 |


26 |
Ulric Eriksson - May 2000 - ulric@siag.nu
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /pw/docs/mouse.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Pathetic Writer - The Mouse 4 | 5 | 6 | 7 |
8 |

The Mouse

9 |
10 | The mouse is used to set point, mark and the block. 11 | 12 |
    13 |
  • Button 1 moves point 14 |
  • Button 1 movement selects text 15 |
  • Button 2 pastes the selection 16 |
  • Button 3 extends the selection 17 |
18 | Mice with fewer than 3 buttons can be used by changing the app-defaults. 19 | 20 |
21 |
Ulric Eriksson - February 1997 - ulric@siag.nu
22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /pw/docs/pw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/pw/docs/pw.gif -------------------------------------------------------------------------------- /pw/docs/scrollbars.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Pathetic Writer - The Scrollbars 4 | 5 | 6 | 7 |

The Scrollbars

8 | The exact look and feel of the scrollbars depends on the widget set 9 | that Pathetic Writer is linked with. In the following, I assume that the Xaw3d 10 | widget set is used. Vanilla Athena widgets will also work fine, 11 | but the behaviour is different. 12 |

13 | The scrollbars are used to move the grid one line or one page at a time. 14 | Clicking on the small arrows moves the grid one line and clicking 15 | somewhere else on the bar moves the grid one page. The grid can also 16 | be scrolled by dragging the small handle. 17 |

18 | No matter how the grid is moved, the point is always "protected" so 19 | that it doesn't move outside the visible area. 20 | 21 |


22 |
Ulric Eriksson - February 1997 - ulric@siag.nu
23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /pw/examples/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | pwexamplesdir = $(docdir)/pw/examples 3 | 4 | pwexamples_DATA = changes.pw chead.doc chead.html chead.pw chead.rtf chead.txt \ 5 | color.pw egon.pw egon.rtf morefonts.pw newpw.pw rtfex.rtf \ 6 | rtftest.rtf rtftest2.rtf rtftest3.rtf standard.bmk \ 7 | styles.html styles.pw styles2.pw svenska.pw svenska.rtf 8 | 9 | EXTRA_DIST = $(pwexamples_DATA) 10 | 11 | -------------------------------------------------------------------------------- /pw/examples/changes.pw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/pw/examples/changes.pw -------------------------------------------------------------------------------- /pw/examples/chead.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/pw/examples/chead.doc -------------------------------------------------------------------------------- /pw/examples/chead.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | This is a Header 5 | 6 | 7 | 8 | 9 |

10 | This is a Header 11 |

12 |

13 | 14 | The proper procedure when installing empty wumpuses is to first remove the 15 | empty frame, so as to not leave room for another batch to develop. This can easiest be 16 | accomplished by rephrasing every question, then directing them to a forum where they 17 | can more appropriately be answered. Here is an example: 18 |

19 | 20 | "How many roads must a man walk down?" 21 |

22 | 23 | "Approximately five, depending on the time of the year." 24 |

25 | 26 |

27 | Courier rules 28 |

29 |

30 | 31 | I must admit that I have a crush on Courier Bold for headers. 32 | 33 | 34 | -------------------------------------------------------------------------------- /pw/examples/chead.pw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/pw/examples/chead.pw -------------------------------------------------------------------------------- /pw/examples/chead.txt: -------------------------------------------------------------------------------- 1 | This is a Header 2 | 3 | The proper procedure when installing empty wumpuses is to first remove the 4 | empty frame, so as to not leave room for another batch to develop. This can easiest be 5 | accomplished by rephrasing every question, then directing them to a forum where they 6 | can more appropriately be answered. Here is an example: 7 | 8 | "How many roads must a man walk down?" 9 | 10 | "Approximately five, depending on the time of the year." 11 | 12 | Courier rules 13 | 14 | I must admit that I have a crush on Courier Bold for headers. 15 | -------------------------------------------------------------------------------- /pw/examples/newpw.pw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/pw/examples/newpw.pw -------------------------------------------------------------------------------- /pw/examples/standard.bmk: -------------------------------------------------------------------------------- 1 | SDBFV4NEStandard -------------------------------------------------------------------------------- /pw/examples/svenska.pw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/pw/examples/svenska.pw -------------------------------------------------------------------------------- /pw/examples/svenska.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi \deff0\deflang1053 2 | {\fonttbl 3 | {\f0\froman Times New Roman;} 4 | {\f1\froman Symbol;} 5 | {\f2\fswiss Arial;} 6 | {\f3\fmodern Courier New;} 7 | } 8 | {\stylesheet 9 | {\s252\sa120\keepn \b\f2\fs20 \sbasedon0\snext0 Rubrik 3;} 10 | {\s253\sa120\keepn \b\f2 \sbasedon252\snext0 Rubrik 2;} 11 | {\s254\sa120\keepn \b\f2\fs28 \sbasedon252\snext0 Rubrik 1;} 12 | {\s255\li708\sa120 \fs20 \sbasedon0\snext255 Indrag;} 13 | {\sa120 \fs20 \snext0 Normal;} 14 | {\s2 \f3\fs20 \sbasedon0\snext2 Programkod;} 15 | } 16 | \paperw11913\paperh16834 17 | \margl1418\margr1418\margt1418\margb1418 18 | \gutter0 \deftab708\widowctrl\ftnbj\hyphhotz425 19 | \sectd 20 | \binfsxn1\binsxn1\linex0\endnhere 21 | \par 22 | \pard\plain 23 | \s254\sa120\keepn \b\f2\fs28 24 | R\'e4ksm\'f6rg\'e5s 25 | \par 26 | 27 | \pard\plain 28 | \sa120 \fs20 29 | \par 30 | 31 | Tr\'f6jf\'f6rr\'e5det har r\'f6jts av f\'f6rr\'e4diska l\'f6nnm\'f6rdare. 32 | 33 | } 34 | -------------------------------------------------------------------------------- /pw/external.load: -------------------------------------------------------------------------------- 1 | Local File:cat 2 | Compressed File:gzip -d 3 | Archive:tar xf - 4 | Compressed Archive:tar zxf - 5 | FTP:ftpget 6 | HTTP:httpget 7 | Generic: 8 | -------------------------------------------------------------------------------- /pw/external.save: -------------------------------------------------------------------------------- 1 | Local File:cat 2 | Generic: 3 | -------------------------------------------------------------------------------- /pw/fileio_rtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/pw/fileio_rtf.c -------------------------------------------------------------------------------- /siag/ccmath.scm: -------------------------------------------------------------------------------- 1 | 2 | ; Helper for cc_solv, because there is no way to define a Scheme 3 | ; function from C with this many parameters. 4 | (define (cc_solv ad ax1 ay1 ax2 ay2 bd bx1 by1 bx2 by2) 5 | (cc_solv1 (cons ax1 ay1) (cons ax2 ay2) (cons bx1 by1) (cons bx2 by2))) 6 | 7 | -------------------------------------------------------------------------------- /siag/docs/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | siagdocdir = $(docdir)/siag 3 | 4 | siagdoc_DATA = README c-expr.html commands.html concepts.html excel.html \ 5 | fileformats.html form.html \ 6 | gnuplot.html intro.html invocation.html keys.html \ 7 | mouse.html scheme.html scrollbars.html siag.gif siag.html \ 8 | siag-functions.html strings.html toolbar.html 9 | 10 | man_MANS = siag.1 11 | 12 | EXTRA_DIST = $(siagdoc_DATA) $(man_MANS) 13 | 14 | autodocs: 15 | @echo generating html 16 | ../../siod/siod keys.scm 17 | ../../siod/siod menus.scm 18 | 19 | -------------------------------------------------------------------------------- /siag/docs/intro.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Siag - Introduction 4 | 5 | 6 |

Introduction

7 | Siag is an X-based spreadsheet for Unix. It uses 8 | Scheme (a Lisp dialect) both for expressions and as an 9 | extension language, which makes it easy to create new 10 | functions (for native Lispers, that is). There is no requirement 11 | to know Scheme to use Siag, expressions can be entered in 12 | traditional spreadsheet syntax as well. 13 |

14 | Siag stands for Siag Is Not An Excel Emulator. It is copyrighted by 15 | me, Ulric Eriksson, but is free for use by anybody 16 | without paying me any money. Read the file 17 | COPYING for 18 | more information. 19 |

20 | Siag home page 21 |

22 | Sources for Siag Office. 23 |

24 | I can be reached at ulric@siag.nu. 25 | 26 |


27 |
Ulric Eriksson - January 2000 - ulric@siag.nu
28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /siag/docs/scrollbars.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Siag - The Scrollbars 4 | 5 | 6 | 7 |

The Scrollbars

8 | The exact look and feel of the scrollbars depends on the widget set 9 | that Siag is linked with. In the following, I assume that the Xaw3d 10 | widget set is used. Vanilla Athena widgets will also work fine, 11 | but the behaviour is different. 12 |

13 | The scrollbars are used to move the grid one line or one page at a time. 14 | Clicking on the small arrows moves the grid one line and clicking 15 | somewhere else on the bar moves the grid one page. The grid can also 16 | be scrolled by dragging the small handle. 17 |

18 | No matter how the grid is moved, the point is always "protected" so 19 | that it doesn't move outside the visible area. 20 | 21 |


22 |
Ulric Eriksson - January 1997 - ulric@siag.nu
23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /siag/docs/siag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/siag/docs/siag.gif -------------------------------------------------------------------------------- /siag/examples/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | siagexamplesdir = $(docdir)/siag/examples 3 | 4 | siagexamples_DATA = allfunctions.siag allfuncs.wk1 cheeses.siag complex.siag \ 5 | database.siag \ 6 | emprestimo.wk1 example.wk1 fibonacci-c.siag fibonacci.siag \ 7 | fonts.siag foo.siag foo.wk1 formtest.siag gmp.siag group.siag \ 8 | heaven-c.siag heaven-guile.siag heaven-tcl.siag heaven.siag \ 9 | hyperhelp.siag image_plugin.siag kalkyl.siag mailaddr.csv \ 10 | morefonts.siag multtabl-c.siag multtabl.siag obras.wk1 \ 11 | passwd.siag plot.siag portfolj.siag \ 12 | prestacao.wk1 property.siag sincos.siag \ 13 | strfib.siag strings.siag surface1.siag surface2.siag \ 14 | tables.wk1 tcltest.siag 15 | 16 | EXTRA_DIST = $(siagexamples_DATA) 17 | 18 | -------------------------------------------------------------------------------- /siag/examples/allfuncs.wk1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/siag/examples/allfuncs.wk1 -------------------------------------------------------------------------------- /siag/examples/emprestimo.wk1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/siag/examples/emprestimo.wk1 -------------------------------------------------------------------------------- /siag/examples/example.wk1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/siag/examples/example.wk1 -------------------------------------------------------------------------------- /siag/examples/fonts.siag: -------------------------------------------------------------------------------- 1 | .sw 80 2 | .sh 20 3 | .sf 33 4 | # /home/ulric/siag-0.93/siag/examples/fonts.siag 5 | # 4 lines 6 | # 7 | .rh 2 25 8 | .rh 3 30 9 | .rh 4 25 10 | # Line 1 11 | 1 1 1395 "Times 14 bold 12 | 1 2 1057 # 13 | 1 3 1057 # 14 | 1 4 1569 # 15 | # Line 2 16 | 2 1 332 "New Century Schoolbook 18 italic 17 | 2 4 545 # 18 | # Line 3 19 | 3 1 317 "Helvetica 24 bold oblique 20 | 3 4 545 # 21 | # Line 4 22 | 4 1 2308 "Courier 18 23 | 4 2 2081 # 24 | 4 3 2081 # 25 | 4 4 2593 # 26 | # End of file /home/ulric/siag-0.93/siag/examples/fonts.siag 27 | -------------------------------------------------------------------------------- /siag/examples/foo.siag: -------------------------------------------------------------------------------- 1 | # Creator: Siag (Scheme In A Grid) 3.0.5. No Warranty. 2 | .sw 80 3 | .sh 20 4 | .sf 33 5 | .fmt131072 %d 6 | .fmt196608 %g 7 | .fmt262144 %.2f 8 | .fmt327680 %m/%d/%y 9 | .fmt393216 %H:%M:%S 10 | .fmt458752 %.2f 11 | .fmt524288 %.2f %% 12 | .fmt589824 %lX 13 | .fmt655360 $%.2f 14 | .fmt720896 %.2f 15 | .fmt786432 %.2f 16 | .fmt851968 %.2f 17 | .fmt917504 %.2f 18 | .fmt983040 %.2f 19 | # /usr/local/siag/siag/examples/foo.siag 20 | # 3 lines 21 | # 22 | # Line 1 23 | 1 1 33 "123 24 | 1 2 33 ==123 25 | # Line 2 26 | 2 1 33 "qwe 27 | 2 2 33 ==r1c2 28 | # Line 3 29 | 3 1 33 "asd 30 | 3 2 33 =(r_sum R1C2..R2C2) 31 | # End of file /usr/local/siag/siag/examples/foo.siag 32 | -------------------------------------------------------------------------------- /siag/examples/foo.wk1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/siag/examples/foo.wk1 -------------------------------------------------------------------------------- /siag/examples/formtest.siag: -------------------------------------------------------------------------------- 1 | # Creator: Siag (Scheme In A Grid) 3.1.4. No Warranty. 2 | .sw 80 3 | .sh 20 4 | .style 0 5 | name Default 6 | fmt %d 7 | type 0 8 | end 9 | .ft 0 10 | size 100 11 | end 12 | .nsf 0 13 | .sheet 0 Ark 1 14 | # /home/ulric/siag/siag/examples/formtest.siag 15 | # 7 lines 16 | # 17 | # Line 1 18 | .ft 2 19 | bold 1 20 | italic 1 21 | end 22 | 1 1 2 "Press Enter on any of the labels below 23 | # Line 2 24 | # Line 3 25 | .ft 3 26 | bold 1 27 | fg Red 28 | end 29 | 3 1 3 "Demo 1 30 | .style 1 31 | name Invisible 32 | fmt %d 33 | type 4 34 | end 35 | .ft 4 36 | size 100 37 | style 1 38 | end 39 | 3 2 4 "(form-test) 40 | # Line 4 41 | 4 1 3 "Demo 2 42 | 4 2 4 "(form-test2) 43 | # Line 5 44 | 5 1 3 "Demo 3 45 | 5 2 4 "(form-test3) 46 | # Line 6 47 | # Line 7 48 | .ft 5 49 | fg Red 50 | end 51 | 7 1 5 "The code for these examples is in form.scm 52 | 7 2 4 "(spawn (string-append siaghelp " " datadir "/xcommon/form.scm")) 53 | # End of file /home/ulric/siag/siag/examples/formtest.siag 54 | -------------------------------------------------------------------------------- /siag/examples/image_plugin.siag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/siag/examples/image_plugin.siag -------------------------------------------------------------------------------- /siag/examples/kalkyl.siag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/siag/examples/kalkyl.siag -------------------------------------------------------------------------------- /siag/examples/mailaddr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/siag/examples/mailaddr.csv -------------------------------------------------------------------------------- /siag/examples/morefonts.siag: -------------------------------------------------------------------------------- 1 | # Creator: Siag (Scheme In A Grid) 3.1.0. No Warranty. 2 | .sw 80 3 | .sh 20 4 | .sf 0 5 | .sheet 0 Sheet 1 6 | # /home/ulric/siag/siag/examples/morefonts.siag 7 | # 6 lines 8 | # 9 | .rh 1 30 10 | .rh 2 34 11 | .rh 3 33 12 | .rh 4 37 13 | .rh 5 33 14 | .rh 6 30 15 | .cw 1 166 16 | # Line 1 17 | .style 0 18 | name Default 19 | fmt %d 20 | type 0 21 | end 22 | .ft 8 23 | font Avant Garde 24 | size 200 25 | end 26 | 1 1 8 "Avant Garde 27 | # Line 2 28 | .ft 9 29 | font Bookman 30 | size 200 31 | end 32 | 2 1 9 "Bookman 33 | # Line 3 34 | .ft 10 35 | font Palatino 36 | size 200 37 | end 38 | 3 1 10 "Palatino 39 | # Line 4 40 | .ft 11 41 | font Symbol 42 | size 200 43 | end 44 | 4 1 11 "Symbol 45 | # Line 5 46 | .ft 12 47 | font Zapf Chancery 48 | size 200 49 | end 50 | 5 1 12 "Zapf Chancery 51 | # Line 6 52 | .ft 13 53 | font Zapf Dingbats 54 | size 200 55 | end 56 | 6 1 13 "Zapf Dingbats 57 | # End of file /home/ulric/siag/siag/examples/morefonts.siag 58 | -------------------------------------------------------------------------------- /siag/examples/obras.wk1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/siag/examples/obras.wk1 -------------------------------------------------------------------------------- /siag/examples/passwd.siag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/siag/examples/passwd.siag -------------------------------------------------------------------------------- /siag/examples/prestacao.wk1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/siag/examples/prestacao.wk1 -------------------------------------------------------------------------------- /siag/examples/property.siag: -------------------------------------------------------------------------------- 1 | # Creator: Siag (Scheme In A Grid) 2.54. No Warranty. 2 | .sw 80 3 | .sh 20 4 | .sf 33 5 | .fmt131072 %d 6 | .fmt196608 %g 7 | .fmt262144 %.2f 8 | .fmt327680 %d/%d/%d 9 | .fmt393216 %d:%d:%d 10 | .fmt458752 %.2f 11 | .fmt524288 %.2f %% 12 | .fmt589824 %lX 13 | .fmt655360 $%.2f 14 | .fmt720896 %.2f 15 | .fmt786432 %.2f 16 | .fmt851968 %.2f 17 | .fmt917504 %.2f 18 | .fmt983040 %.2f 19 | # /usr/local/siag/siag/examples/property.siag 20 | # 1 lines 21 | # 22 | .p1 x 23 | y 24 | .p3 foo 25 | bar 26 | # Line 1 27 | 1 1 33 =(put-property nil "foo" "bar") 28 | # End of file /usr/local/siag/siag/examples/property.siag 29 | -------------------------------------------------------------------------------- /siag/examples/tables.wk1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/siag/examples/tables.wk1 -------------------------------------------------------------------------------- /siag/examples/tcltest.siag: -------------------------------------------------------------------------------- 1 | # Creator: Siag (Scheme In A Grid) 1.63. No Warranty. 2 | .sw 80 3 | .sh 20 4 | .sf 33 5 | .fmt131072 %d 6 | .fmt196608 %g 7 | .fmt262144 %.2f 8 | .fmt327680 %d/%d/%d 9 | .fmt393216 %d:%d:%d 10 | .fmt458752 %.2f 11 | .fmt524288 %.2f %% 12 | .fmt589824 %lX 13 | .fmt655360 $%.2f 14 | .fmt720896 %.2f 15 | .fmt786432 %.2f 16 | .fmt851968 %.2f 17 | .fmt917504 %.2f 18 | .fmt983040 %.2f 19 | # /usr/local/siag/siag/examples/tcltest.siag 20 | # 2 lines 21 | # 22 | # Line 1 23 | 1 1 33 +Tcl,expr 1+2 24 | 1 2 33 +Tcl,expr 234 25 | 1 3 33 +Tcl,expr sin(0.5*3.14) 26 | 1 4 33 +Tcl,set foo "foobar" 27 | # Line 2 28 | 2 1 33 +Guile,(sin 3) 29 | 2 4 33 +Tcl,set bar $foo 30 | # End of file /usr/local/siag/siag/examples/tcltest.siag 31 | -------------------------------------------------------------------------------- /siag/external.load: -------------------------------------------------------------------------------- 1 | Local File:cat 2 | Compressed File:gzip -d -c 3 | Archive:tar xf - 4 | Compressed Archive:tar zxf - 5 | FTP:ftpget 6 | HTTP:httpget 7 | Generic: 8 | -------------------------------------------------------------------------------- /siag/external.save: -------------------------------------------------------------------------------- 1 | Local File:cat 2 | Generic: 3 | -------------------------------------------------------------------------------- /siag/fileio_wk1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/siag/fileio_wk1.c -------------------------------------------------------------------------------- /siag/toolbar.scm: -------------------------------------------------------------------------------- 1 | 2 | ; This is where toolbar buttons should be set up but aren't 3 | 4 | ;(add-toolbar-button "tbNew" "(new-buffer)" "new.xpm") 5 | ;(add-toolbar-button "tbOpen" "(load-buffer)" "fld_open.xpm") 6 | ;(add-toolbar-button "tbSave" "(save-buffer-as)" "floppy3.xpm") 7 | 8 | -------------------------------------------------------------------------------- /siag/usermgr.scm: -------------------------------------------------------------------------------- 1 | ;; 2 | ;; Example of user management from Siag 3 | ;; 4 | 5 | ; Beware of useless salt 6 | (define (passwd clear) 7 | (let ((salt (number->string (rand 99)))) 8 | (crypt clear salt))) 9 | 10 | (define (edit-password) 11 | (set-data nil (passwd (form-ask-for-str "Password:" "")) 0 LABEL (get-point))) 12 | 13 | -------------------------------------------------------------------------------- /siod/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = docs 3 | 4 | noinst_LIBRARIES = libsiod.a 5 | 6 | libsiod_a_SOURCES = md5.c regex.c sliba.c ss.c tar.c \ 7 | ndbm.c slib.c slibu.c trace.c 8 | 9 | noinst_HEADERS = md5.h siod.h siodp.h ss.h silence.i 10 | 11 | AM_CPPFLAGS = -Dunix -DSIAG $(DEBUG) $(NDBM) 12 | 13 | CLEANFILES = siod 14 | 15 | sioddir = $(datadir)/siag/siod 16 | 17 | siod_DATA = siod.scm 18 | 19 | EXTRA_DIST = $(siod_DATA) 20 | 21 | siod: 22 | $(CC) -o siod siod.c libsiod.a -lm -lcrypt 23 | 24 | -------------------------------------------------------------------------------- /siod/docs/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | sioddocdir = $(docdir)/siod 3 | 4 | sioddoc_DATA = siod.html 5 | 6 | man_MANS = siod.1 7 | 8 | EXTRA_DIST = $(sioddoc_DATA) $(man_MANS) 9 | 10 | -------------------------------------------------------------------------------- /siod/silence.i: -------------------------------------------------------------------------------- 1 | 2 | /* This stuff added to keep Siod from printing on stdout. */ 3 | /* 960125 Hacked fput_st to use this instead of stdout */ 4 | /* 980304 Added TRACEME */ 5 | 6 | #include 7 | #include 8 | #define printf statusprint /* gets printed on llpr */ 9 | extern int ok2print; 10 | extern void llpr(char *); 11 | static void statusprint(char *fmt, ...) 12 | { 13 | va_list ap; 14 | char buf[256]; 15 | 16 | va_start(ap, fmt); 17 | vsprintf(buf, fmt, ap); 18 | MW_TRACE((stderr, "statusprint(%s)", buf)); 19 | if (ok2print) llpr(buf); 20 | va_end(ap); 21 | } 22 | -------------------------------------------------------------------------------- /siod/ss.h: -------------------------------------------------------------------------------- 1 | /* $Id: ss.h,v 1.1.1.1 2003/01/15 23:55:07 ulric Exp $ */ 2 | 3 | struct sock_stream { 4 | int sd; 5 | int icnt; 6 | unsigned char *iptr; 7 | unsigned char *ibase; 8 | int ocnt; 9 | unsigned char *optr; 10 | unsigned char *obase; 11 | int bufsiz;}; 12 | 13 | #define SS_GETC(p) (--(p)->icnt < 0 ? ss_filbuf(p) : (int) *(p)->iptr++) 14 | 15 | #define SS_PUTC(c,p) \ 16 | (--(p)->ocnt < 0 ? ss_flsbuf((int)(c),(p)) : \ 17 | (int)(*(p)->optr++ = (unsigned char)(c))) 18 | 19 | 20 | LISP s_open(LISP lhost,LISP lport,LISP aflag); 21 | LISP s_close(LISP s); 22 | int ss_filbuf(struct sock_stream *ss); 23 | int ss_flsbuf(int c,struct sock_stream *ss); 24 | struct sock_stream *get_ss(LISP s,long openchk); 25 | void ss_force(struct sock_stream *ss); 26 | LISP s_accept(LISP s); 27 | -------------------------------------------------------------------------------- /stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /stocks/AUTHORS: -------------------------------------------------------------------------------- 1 | Original Authors 2 | ---------------- 3 | Eric Laeuffer 4 | 5 | -------------------------------------------------------------------------------- /stocks/Makefile.am: -------------------------------------------------------------------------------- 1 | noinst_LIBRARIES = libstocks.a 2 | 3 | libstocks_a_SOURCES = csv.c \ 4 | csv.h \ 5 | http.c \ 6 | http.h \ 7 | lists.c \ 8 | lists.h \ 9 | stocks.c \ 10 | stocks.h \ 11 | currency.c \ 12 | history.c 13 | 14 | noinst_HEADERS = \ 15 | stocks.h 16 | 17 | EXTRA_DIST = README AUTHORS 18 | -------------------------------------------------------------------------------- /tsiag/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | bin_PROGRAMS = tsiag 3 | 4 | tsiag_SOURCES = fonts.c window.c tsiag.c MwUtils.c 5 | 6 | noinst_HEADERS = tsiag.h MwUtils.h 7 | 8 | tsiag_LDFLAGS = -L../siod -L../common -L../siag -L../cole -L../stocks 9 | 10 | tsiag_LDADD = @LIBCCMATH@ -lsiag -lcommon -lsiod -lcole -lstocks \ 11 | @LIBCURSES@ \ 12 | @LIBSYSDEP@ @INTERPRETERS@ \ 13 | @LIBCCMATH@ @LIBT1@ 14 | 15 | AM_CPPFLAGS = $(DEBUG) $(NDBM) $(CCMATH) 16 | 17 | -------------------------------------------------------------------------------- /tsiag/MwUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/tsiag/MwUtils.c -------------------------------------------------------------------------------- /tsiag/tsiag.h: -------------------------------------------------------------------------------- 1 | /* 2 | Siag, Scheme In A Grid 3 | Copyright (C) 1996-1998 Ulric Eriksson 4 | 5 | This program is free software; you can redistribute it and/or modify 6 | it under the terms of the GNU General Public License as published by 7 | the Free Software Foundation; either version 2, or (at your option) 8 | any later version. 9 | 10 | This program is distributed in the hope that it will be useful, 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License 16 | along with this program; if not, write to the Free Software 17 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 18 | */ 19 | 20 | /* 21 | * tsiag.h 22 | */ 23 | 24 | extern int add_str_to_input_queue(textbuf buf); 25 | extern int get_char_from_input_queue(void); 26 | void interp_startup(void); 27 | -------------------------------------------------------------------------------- /xcommon/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | noinst_LIBRARIES = libxcommon.a 3 | 4 | libxcommon_a_SOURCES = forminput.c embed.c xcommon.c plugin.c Ghostview.c 5 | 6 | noinst_HEADERS = Ghostview.h GhostviewP.h \ 7 | embed.h plugin.h xcommon.h \ 8 | filesel-ad.h dialogs-ad.h xcommon-ad.h nws-ad.h 9 | 10 | AM_CPPFLAGS = $(DEBUG) @X_CFLAGS@ 11 | 12 | scmdir = $(datadir)/siag/xcommon 13 | scm_DATA = StringDefs.scm form.scm 14 | EXTRA_DIST = $(scm_DATA) ad2c 15 | 16 | install-data-local: 17 | $(mkinstalldirs) $(DESTDIR)$(docdir)/xcommon 18 | cp $(srcdir)/form.scm $(DESTDIR)$(docdir)/xcommon 19 | 20 | uninstall-local: 21 | rm -rf $(DESTDIR)$(docdir)/xcommon 22 | 23 | drop: drop.c 24 | $(CC) -DTESTDROP -Wall -g -o drop drop.c -L/usr/X11/lib -lXt -lX11 25 | 26 | -------------------------------------------------------------------------------- /xcommon/ad2c: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # ad2c : Convert app-defaults file to C strings decls. 4 | # 5 | # George Ferguson, ferguson@cs.rcohester.edu, 12 Nov 1990. 6 | # 19 Mar 1991 : gf 7 | # Made it self-contained. 8 | # 6 Jan 1992 : mycroft@gnu.ai.mit.edu (Charles Hannum) 9 | # Removed use of "-n" and ":read" label since Gnu and 10 | # IBM sed print pattern space on "n" command. Still works 11 | # with Sun sed, of course. 12 | # 7 Jan 1992: matthew@sunpix.East.Sun.COM (Matthew Stier) 13 | # Escape quotes after escaping backslashes. 14 | # 15 | 16 | sed ' 17 | /^!/d 18 | /^$/d 19 | s/\\/\\\\/g 20 | s/\\$//g 21 | s/"/\\"/g 22 | s/^/"/ 23 | : test 24 | /\\$/b slash 25 | s/$/",/ 26 | p 27 | d 28 | : slash 29 | n 30 | /^!/d 31 | /^$/d 32 | s/"/\\"/g 33 | s/\\\\/\\/g 34 | s/\\n/\\\\n/g 35 | s/\\t/\\\\t/g 36 | s/\\f/\\\\f/g 37 | s/\\b/\\\\b/g 38 | b test' "$@" 39 | -------------------------------------------------------------------------------- /xcommon/form.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/xcommon/form.scm -------------------------------------------------------------------------------- /xed/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | xedplusdocdir = $(docdir)/xedplus 3 | 4 | xedplusdoc_DATA = xedplus.html README 5 | 6 | bin_PROGRAMS = xedplus 7 | 8 | xedplus_SOURCES = xedit.c jump.c edit.c file.c warning.c search.c \ 9 | file_sel.c special.c commands.c dnd.c 10 | 11 | noinst_HEADERS = app-defaults.h xedit.h 12 | 13 | man_MANS = xedplus.1 14 | 15 | xedplus_LDFLAGS = -L../xcommon -L../common -L../XawM/.libs 16 | 17 | xedplus_LDADD = -lxcommon -lcommon \ 18 | -lXpm $(LIBT1) $(LIBT1X) $(X_LIBS) $(MY_X_LIBS) \ 19 | -lXt -lX11 $(X_PRE_LIBS) $(X_EXTRA_LIBS) 20 | 21 | AM_CPPFLAGS = $(DEBUG) $(X_CFLAGS) 22 | 23 | EXTRA_DIST = Xed.ad Xedplus.kdelnk $(xedplusdoc_DATA) $(man_MANS) 24 | 25 | app-defaults.h: ../xcommon/ad2c Xed.ad 26 | sh ../xcommon/ad2c Xed.ad > app-defaults.h 27 | 28 | # Add KDE entries for application and mimetypes 29 | 30 | install-data-local: 31 | $(KDEINST) -a Xedplus.kdelnk -i ../common/bitmaps/xedplus.xpm 32 | 33 | uninstall-local: 34 | $(KDEINST) -u -a Xedplus.kdelnk -i xedplus.xpm 35 | 36 | -------------------------------------------------------------------------------- /xed/Xedplus.kdelnk: -------------------------------------------------------------------------------- 1 | # KDE Config File 2 | [KDE Desktop Entry] 3 | SwallowExec= 4 | SwallowTitle= 5 | BinaryPattern= 6 | Name[C]=Xedplus 7 | Exec=xedplus %f 8 | Icon=xedplus.xpm 9 | TerminalOptions= 10 | Path= 11 | Type=Application 12 | Terminal=0 13 | -------------------------------------------------------------------------------- /xegon/Egon.kdelnk: -------------------------------------------------------------------------------- 1 | # KDE Config File 2 | [KDE Desktop Entry] 3 | SwallowExec= 4 | SwallowTitle= 5 | BinaryPattern= 6 | Name[C]=Egon Animator 7 | MimeType=application/x-egon; 8 | Exec=egon %f 9 | Icon=egon.xpm 10 | TerminalOptions= 11 | Path= 12 | Type=Application 13 | Terminal=0 14 | -------------------------------------------------------------------------------- /xegon/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | bin_PROGRAMS = egon 3 | 4 | egon_SOURCES = window.c selection.c fileio_gif.c fileio_ps.c xegon.c 5 | 6 | noinst_HEADERS = app-defaults.h xegon.h 7 | 8 | egon_LDFLAGS = -L../siod -L../common -L../xcommon -L../egon -L../cole 9 | 10 | egon_LDADD = -legon -lxcommon -lcommon -lcole -lsiod \ 11 | @LIBSYSDEP@ @INTERPRETERS@ \ 12 | -lXpm @LIBT1@ @LIBT1X@ \ 13 | @X_LIBS@ $(MY_X_LIBS) -lXt -lX11 \ 14 | @X_PRE_LIBS@ @X_EXTRA_LIBS@ 15 | 16 | AM_CPPFLAGS = $(DEBUG) $(NDBM) @X_CFLAGS@ 17 | 18 | EXTRA_DIST = Egon.ad Egon.kdelnk x-egon.kdelnk 19 | 20 | app-defaults.h: ../xcommon/ad2c Egon.ad 21 | sh ../xcommon/ad2c Egon.ad > app-defaults.h 22 | 23 | # Add KDE entries for application and mimetypes 24 | 25 | install-data-local: 26 | $(KDEINST) -a Egon.kdelnk -m x-egon.kdelnk \ 27 | -i ../common/bitmaps/egon.xpm 28 | 29 | uninstall-local: 30 | $(KDEINST) -u -a Egon.kdelnk -m x-egon.kdelnk \ 31 | -i egon.xpm 32 | 33 | -------------------------------------------------------------------------------- /xegon/x-egon.kdelnk: -------------------------------------------------------------------------------- 1 | # KDE Config File 2 | [KDE Desktop Entry] 3 | MimeType=application/x-egon 4 | Comment=Egon Animator 5 | DefaultApp=egon 6 | Icon=egon.xpm 7 | Type=MimeType 8 | Patterns=*.egon; 9 | -------------------------------------------------------------------------------- /xfiler/Comms.h: -------------------------------------------------------------------------------- 1 | /*----------------------------------------------------------------------------- 2 | FmComms.h 3 | 4 | (c) Simon Marlow 1992 5 | (c) Albert Graef 1994 6 | 7 | atom definitions for client messages 8 | -----------------------------------------------------------------------------*/ 9 | 10 | #ifndef FMCOMMS_H 11 | #define FMCOMMS_H 12 | 13 | #define FILES_OPEN_WINDOW "FILES_OPEN_WINDOW" 14 | #define FILES_UPDATE_WINDOW "FILES_UPDATE_WINDOW" 15 | #define WM_DELETE_WINDOW "WM_DELETE_WINDOW" 16 | #define WM_PROTOCOLS "WM_PROTOCOLS" 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /xfiler/FilesMagic: -------------------------------------------------------------------------------- 1 | 0 mode&0xF000 0x4000 DIR 2 | >0 lmode&0xF000 0xA000 LNK 3 | 0 mode&0777 ^0111 EXEC 4 | >0 lmode&0xF000 0xA000 LNK 5 | 0 short 0x1F9D COMPRESS 6 | 0 short 0x1F8B GZIP 7 | 0 string HTML 29 | 0 string /*\ XPM\ */ XPM 30 | 0 regexp \ 31 | ^#define[\ \t]+[^\ \t]+_width[\ \t]+[0-9]+ XBM 32 | 0 regexp&512 (^|\n)\\.SH\ NAME MAN 33 | 0 regexp&512 \ 34 | (^|\n)begin[\ \t]+[0-7][0-7][0-7] UUENC 35 | 0 string %! PS 36 | -------------------------------------------------------------------------------- /xfiler/Runcmd.ad: -------------------------------------------------------------------------------- 1 | 2 | ! Global resources 3 | 4 | Runcmd.geometry: 600x200 5 | 6 | 7 | ! Settings for widget classes, in alphabetic order 8 | 9 | Runcmd*Command.cursor: hand2 10 | 11 | -------------------------------------------------------------------------------- /xfiler/Xfiler.kdelnk: -------------------------------------------------------------------------------- 1 | # KDE Config File 2 | [KDE Desktop Entry] 3 | SwallowExec= 4 | SwallowTitle= 5 | BinaryPattern= 6 | Name[C]=Xfiler 7 | Exec=xfiler %f 8 | Icon=xfiler.xpm 9 | TerminalOptions= 10 | Path= 11 | Type=Application 12 | Terminal=0 13 | -------------------------------------------------------------------------------- /xfiler/bitmaps/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = xfm_blackhole.xbm xfm_cline.xbm xfm_dir.xbm xfm_dirlnk.xbm \ 2 | xfm_dirmsk.xbm xfm_excl.xbm xfm_exec.xbm xfm_execlnk.xbm \ 3 | xfm_execmsk.xbm xfm_file.xbm xfm_filemsk.xbm xfm_files.xbm \ 4 | xfm_filesmsk.xbm xfm_fline.xbm xfm_icon.xbm xfm_larrow.xbm \ 5 | xfm_lline.xbm xfm_noentry.xbm xfm_noentrymsk.xbm \ 6 | xfm_notick.xbm xfm_rarrow.xbm xfm_symlnk.xbm xfm_tick.xbm \ 7 | xfm_tline.xbm xfm_watch.xbm xfm_watchmsk.xbm xfm_wavy_arrow.xbm 8 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_blackhole.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_blackhole_width 32 2 | #define xfm_blackhole_height 32 3 | static char xfm_blackhole_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0xa8, 0xaa, 0xaa, 0x00, 0x00, 0x00, 0x80, 0x01, 5 | 0x08, 0x00, 0x00, 0x02, 0x00, 0x00, 0x80, 0x04, 0x08, 0x00, 0x00, 0x08, 6 | 0x00, 0x00, 0x80, 0x1a, 0x08, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x10, 7 | 0x08, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x10, 0x08, 0x00, 0x00, 0x20, 8 | 0x00, 0x00, 0x10, 0x10, 0x08, 0x00, 0x30, 0x20, 0xc0, 0xff, 0x5f, 0x10, 9 | 0x08, 0x00, 0x80, 0x20, 0x00, 0x00, 0x00, 0x11, 0x08, 0x00, 0x00, 0x22, 10 | 0x00, 0x00, 0x00, 0x11, 0x08, 0x00, 0x80, 0x20, 0xc0, 0xff, 0x5f, 0x10, 11 | 0x08, 0x00, 0x30, 0x20, 0x00, 0x00, 0x10, 0x10, 0x08, 0x00, 0x00, 0x20, 12 | 0x00, 0x00, 0x00, 0x10, 0x08, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x10, 13 | 0x08, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x10, 0xa8, 0xaa, 0xaa, 0x2a, 14 | 0x50, 0x55, 0x55, 0x15, 0x00, 0x00, 0x00, 0x00}; 15 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_cline.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_cline_width 12 2 | #define xfm_cline_height 48 3 | static char xfm_cline_bits[] = { 4 | 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 5 | 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 6 | 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 7 | 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0xe0, 0x0f, 8 | 0xe0, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 9 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 10 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 11 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; 12 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_dir.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_dir_width 32 2 | #define xfm_dir_height 32 3 | static char xfm_dir_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 5 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 6 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x3f, 0x00, 0x00, 7 | 0x10, 0x40, 0x00, 0x00, 0x08, 0x80, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 8 | 0xfe, 0xff, 0xff, 0x7f, 0x02, 0x00, 0x00, 0x40, 0x02, 0x00, 0x00, 0x40, 9 | 0x02, 0x00, 0x00, 0x40, 0x02, 0x00, 0x00, 0x40, 0x02, 0x00, 0x00, 0x40, 10 | 0x02, 0x00, 0x00, 0x40, 0x02, 0x00, 0x00, 0x40, 0x02, 0x00, 0x00, 0x40, 11 | 0x02, 0x00, 0x00, 0x40, 0x02, 0x00, 0x00, 0x40, 0x02, 0x00, 0x00, 0x40, 12 | 0x02, 0x00, 0x00, 0x40, 0x02, 0x00, 0x00, 0x40, 0x02, 0x00, 0x00, 0x40, 13 | 0x02, 0x00, 0x00, 0x40, 0x02, 0x00, 0x00, 0x40, 0x02, 0x00, 0x00, 0x40, 14 | 0x02, 0x00, 0x00, 0x40, 0xfe, 0xff, 0xff, 0x7f}; 15 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_dirlnk.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_dirlnk_width 32 2 | #define xfm_dirlnk_height 32 3 | static char xfm_dirlnk_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 5 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x01, 0x00, 0x00, 0x02, 0x02, 6 | 0x00, 0x00, 0x01, 0x04, 0xfe, 0xff, 0xff, 0x1f, 0x01, 0x00, 0x00, 0x20, 7 | 0x01, 0x00, 0x00, 0x60, 0x01, 0x00, 0x00, 0x60, 0x01, 0x00, 0x10, 0x60, 8 | 0x01, 0x00, 0x30, 0x60, 0xf1, 0xff, 0x5f, 0x60, 0x01, 0x00, 0x80, 0x60, 9 | 0x01, 0x00, 0x00, 0x61, 0x01, 0x00, 0x00, 0x62, 0x01, 0x00, 0x00, 0x61, 10 | 0x01, 0x00, 0x80, 0x60, 0xf1, 0xff, 0x5f, 0x60, 0x01, 0x00, 0x30, 0x60, 11 | 0x01, 0x00, 0x10, 0x60, 0x01, 0x00, 0x00, 0x60, 0x01, 0x00, 0x00, 0x60, 12 | 0x01, 0x00, 0x00, 0x60, 0x01, 0x00, 0x00, 0x60, 0x01, 0x00, 0x00, 0x60, 13 | 0x01, 0x00, 0x00, 0x60, 0xff, 0xff, 0xff, 0x7f, 0xfe, 0xff, 0xff, 0x7f, 14 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; 15 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_dirmsk.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_dirmsk_width 32 2 | #define xfm_dirmsk_height 32 3 | static char xfm_dirmsk_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 5 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 6 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x3f, 0x00, 0x00, 7 | 0xf0, 0x7f, 0x00, 0x00, 0xf8, 0xff, 0x00, 0x00, 0xfc, 0xff, 0x01, 0x00, 8 | 0xfe, 0xff, 0xff, 0x7f, 0xfe, 0xff, 0xff, 0x7f, 0xfe, 0xff, 0xff, 0x7f, 9 | 0xfe, 0xff, 0xff, 0x7f, 0xfe, 0xff, 0xff, 0x7f, 0xfe, 0xff, 0xff, 0x7f, 10 | 0xfe, 0xff, 0xff, 0x7f, 0xfe, 0xff, 0xff, 0x7f, 0xfe, 0xff, 0xff, 0x7f, 11 | 0xfe, 0xff, 0xff, 0x7f, 0xfe, 0xff, 0xff, 0x7f, 0xfe, 0xff, 0xff, 0x7f, 12 | 0xfe, 0xff, 0xff, 0x7f, 0xfe, 0xff, 0xff, 0x7f, 0xfe, 0xff, 0xff, 0x7f, 13 | 0xfe, 0xff, 0xff, 0x7f, 0xfe, 0xff, 0xff, 0x7f, 0xfe, 0xff, 0xff, 0x7f, 14 | 0xfe, 0xff, 0xff, 0x7f, 0xfe, 0xff, 0xff, 0x7f}; 15 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_exec.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_exec_width 32 2 | #define xfm_exec_height 32 3 | static char xfm_exec_bits[] = { 4 | 0xf0, 0xff, 0xff, 0x01, 0x10, 0x00, 0x80, 0x02, 0x10, 0x00, 0x80, 0x04, 5 | 0x10, 0x00, 0x80, 0x08, 0x10, 0x00, 0x80, 0x0f, 0x10, 0x00, 0x00, 0x08, 6 | 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 7 | 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 8 | 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 9 | 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 10 | 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 11 | 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 12 | 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 13 | 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 14 | 0xf0, 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00}; 15 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_execlnk.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_execlnk_width 32 2 | #define xfm_execlnk_height 32 3 | static char xfm_execlnk_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xff, 0xff, 0x0f, 5 | 0x10, 0x00, 0x00, 0x18, 0x10, 0x00, 0x00, 0x18, 0xf0, 0xff, 0xff, 0x1f, 6 | 0x10, 0x00, 0x00, 0x18, 0x10, 0x00, 0x00, 0x18, 0x10, 0x00, 0x00, 0x18, 7 | 0x10, 0x00, 0x00, 0x18, 0x10, 0x00, 0x00, 0x18, 0x10, 0x00, 0x10, 0x18, 8 | 0x10, 0x00, 0x30, 0x18, 0xd0, 0xff, 0x5f, 0x18, 0x10, 0x00, 0x80, 0x18, 9 | 0x10, 0x00, 0x00, 0x19, 0x10, 0x00, 0x00, 0x1a, 0x10, 0x00, 0x00, 0x19, 10 | 0x10, 0x00, 0x80, 0x18, 0xd0, 0xff, 0x5f, 0x18, 0x10, 0x00, 0x30, 0x18, 11 | 0x10, 0x00, 0x10, 0x18, 0x10, 0x00, 0x00, 0x18, 0x10, 0x00, 0x00, 0x18, 12 | 0x10, 0x00, 0x00, 0x18, 0x10, 0x00, 0x00, 0x18, 0x10, 0x00, 0x00, 0x18, 13 | 0x10, 0x00, 0x00, 0x18, 0x10, 0x00, 0x00, 0x18, 0xf0, 0xff, 0xff, 0x1f, 14 | 0xe0, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00}; 15 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_execmsk.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_execmsk_width 32 2 | #define xfm_execmsk_height 32 3 | static char xfm_execmsk_bits[] = { 4 | 0xf0, 0xff, 0xff, 0x01, 0xf0, 0xff, 0xff, 0x03, 0xf0, 0xff, 0xff, 0x07, 5 | 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 6 | 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 7 | 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 8 | 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 9 | 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 10 | 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 11 | 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 12 | 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 13 | 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 14 | 0xf0, 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00}; 15 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_file.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_file_width 32 2 | #define xfm_file_height 32 3 | static char xfm_file_bits[] = { 4 | 0xf0, 0xff, 0xff, 0x01, 0x10, 0x00, 0x80, 0x02, 0x10, 0x00, 0x80, 0x04, 5 | 0x10, 0x00, 0x80, 0x08, 0x10, 0x00, 0x80, 0x0f, 0x10, 0x00, 0x00, 0x08, 6 | 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 7 | 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 8 | 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 9 | 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 10 | 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 11 | 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 12 | 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 13 | 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x08, 14 | 0xf0, 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00}; 15 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_filemsk.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_filemsk_width 32 2 | #define xfm_filemsk_height 32 3 | static char xfm_filemsk_bits[] = { 4 | 0xf0, 0xff, 0xff, 0x01, 0xf0, 0xff, 0xff, 0x03, 0xf0, 0xff, 0xff, 0x07, 5 | 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 6 | 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 7 | 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 8 | 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 9 | 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 10 | 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 11 | 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 12 | 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 13 | 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 0xf0, 0xff, 0xff, 0x0f, 14 | 0xf0, 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00}; 15 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_files.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_files_width 32 2 | #define xfm_files_height 32 3 | static char xfm_files_bits[] = { 4 | 0xfe, 0xff, 0x7f, 0x00, 0x02, 0x00, 0xa0, 0x00, 0x02, 0x00, 0x20, 0x01, 5 | 0x02, 0x00, 0x20, 0x02, 0x02, 0x00, 0xe0, 0x07, 0x02, 0x00, 0x00, 0x0a, 6 | 0x02, 0x00, 0x00, 0x1e, 0x02, 0x00, 0x00, 0x2a, 0x02, 0x00, 0x00, 0x3a, 7 | 0x02, 0x00, 0x00, 0x2a, 0x02, 0x00, 0x00, 0x2a, 0x02, 0x00, 0x00, 0x2a, 8 | 0x02, 0x00, 0x00, 0x2a, 0x02, 0x00, 0x00, 0x2a, 0x02, 0x00, 0x00, 0x2a, 9 | 0x02, 0x00, 0x00, 0x2a, 0x02, 0x00, 0x00, 0x2a, 0x02, 0x00, 0x00, 0x2a, 10 | 0x02, 0x00, 0x00, 0x2a, 0x02, 0x00, 0x00, 0x2a, 0x02, 0x00, 0x00, 0x2a, 11 | 0x02, 0x00, 0x00, 0x2a, 0x02, 0x00, 0x00, 0x2a, 0x02, 0x00, 0x00, 0x2a, 12 | 0x02, 0x00, 0x00, 0x2a, 0x02, 0x00, 0x00, 0x2a, 0x02, 0x00, 0x00, 0x2a, 13 | 0xfe, 0xff, 0xff, 0x2b, 0x04, 0x00, 0x00, 0x28, 0xfc, 0xff, 0xff, 0x2f, 14 | 0x08, 0x00, 0x00, 0x20, 0xf8, 0xff, 0xff, 0x3f}; 15 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_filesmsk.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_filesmsk_width 32 2 | #define xfm_filesmsk_height 32 3 | static char xfm_filesmsk_bits[] = { 4 | 0xfe, 0xff, 0x7f, 0x00, 0xfe, 0xff, 0xff, 0x00, 0xfe, 0xff, 0xff, 0x01, 5 | 0xfe, 0xff, 0xff, 0x03, 0xfe, 0xff, 0xff, 0x07, 0xfe, 0xff, 0xff, 0x0f, 6 | 0xfe, 0xff, 0xff, 0x1f, 0xfe, 0xff, 0xff, 0x3f, 0xfe, 0xff, 0xff, 0x3f, 7 | 0xfe, 0xff, 0xff, 0x3f, 0xfe, 0xff, 0xff, 0x3f, 0xfe, 0xff, 0xff, 0x3f, 8 | 0xfe, 0xff, 0xff, 0x3f, 0xfe, 0xff, 0xff, 0x3f, 0xfe, 0xff, 0xff, 0x3f, 9 | 0xfe, 0xff, 0xff, 0x3f, 0xfe, 0xff, 0xff, 0x3f, 0xfe, 0xff, 0xff, 0x3f, 10 | 0xfe, 0xff, 0xff, 0x3f, 0xfe, 0xff, 0xff, 0x3f, 0xfe, 0xff, 0xff, 0x3f, 11 | 0xfe, 0xff, 0xff, 0x3f, 0xfe, 0xff, 0xff, 0x3f, 0xfe, 0xff, 0xff, 0x3f, 12 | 0xfe, 0xff, 0xff, 0x3f, 0xfe, 0xff, 0xff, 0x3f, 0xfe, 0xff, 0xff, 0x3f, 13 | 0xfe, 0xff, 0xff, 0x3f, 0xfc, 0xff, 0xff, 0x3f, 0xfc, 0xff, 0xff, 0x3f, 14 | 0xf8, 0xff, 0xff, 0x3f, 0xf8, 0xff, 0xff, 0x3f}; 15 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_fline.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_fline_width 12 2 | #define xfm_fline_height 48 3 | static char xfm_fline_bits[] = { 4 | 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 5 | 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 6 | 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 7 | 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0xe0, 0x0f, 8 | 0xe0, 0x0f, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 9 | 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 10 | 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 11 | 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00}; 12 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_larrow.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_larrow_width 12 2 | #define xfm_larrow_height 48 3 | static char xfm_larrow_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 5 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 6 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 7 | 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x0e, 0x00, 0xff, 0x0f, 8 | 0xff, 0x0f, 0x0e, 0x00, 0x0c, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 9 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 10 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 11 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; 12 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_lline.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_lline_width 12 2 | #define xfm_lline_height 48 3 | static char xfm_lline_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 5 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 6 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 7 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x0f, 8 | 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 9 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 10 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 11 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; 12 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_notick.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_notick_width 16 2 | #define xfm_notick_height 16 3 | static char xfm_notick_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 5 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 6 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; 7 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_rarrow.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_rarrow_width 12 2 | #define xfm_rarrow_height 48 3 | static char xfm_rarrow_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 5 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 6 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 7 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x07, 0xff, 0x0f, 8 | 0xff, 0x0f, 0x00, 0x07, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 9 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 10 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 11 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; 12 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_symlnk.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_symlnk_width 32 2 | #define xfm_symlnk_height 32 3 | static char xfm_symlnk_bits[] = { 4 | 0xf0, 0xff, 0x3f, 0x00, 0x10, 0x00, 0x60, 0x00, 0x10, 0x00, 0xa0, 0x00, 5 | 0x10, 0x00, 0x20, 0x01, 0x10, 0x00, 0x20, 0x02, 0x10, 0x00, 0x20, 0x04, 6 | 0x10, 0x00, 0x20, 0x08, 0x10, 0x00, 0xe0, 0x1f, 0x10, 0x00, 0x00, 0x18, 7 | 0x10, 0x00, 0x00, 0x18, 0x10, 0x00, 0x00, 0x18, 0x10, 0x00, 0x10, 0x18, 8 | 0x10, 0x00, 0x30, 0x18, 0xd0, 0xff, 0x5f, 0x18, 0x10, 0x00, 0x80, 0x18, 9 | 0x10, 0x00, 0x00, 0x19, 0x10, 0x00, 0x00, 0x1a, 0x10, 0x00, 0x00, 0x19, 10 | 0x10, 0x00, 0x80, 0x18, 0xd0, 0xff, 0x5f, 0x18, 0x10, 0x00, 0x30, 0x18, 11 | 0x10, 0x00, 0x10, 0x18, 0x10, 0x00, 0x00, 0x18, 0x10, 0x00, 0x00, 0x18, 12 | 0x10, 0x00, 0x00, 0x18, 0x10, 0x00, 0x00, 0x18, 0x10, 0x00, 0x00, 0x18, 13 | 0x10, 0x00, 0x00, 0x18, 0x10, 0x00, 0x00, 0x18, 0x10, 0x00, 0x00, 0x18, 14 | 0xf0, 0xff, 0xff, 0x1f, 0xe0, 0xff, 0xff, 0x1f}; 15 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_tick.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_tick_width 16 2 | #define xfm_tick_height 16 3 | static char xfm_tick_bits[] = { 4 | 0x00, 0x00, 0x00, 0x08, 0x00, 0x08, 0x00, 0x04, 0x00, 0x04, 0x00, 0x02, 5 | 0x00, 0x03, 0x00, 0x01, 0x80, 0x01, 0xc0, 0x00, 0xce, 0x00, 0x6e, 0x00, 6 | 0x7c, 0x00, 0x3c, 0x00, 0x38, 0x00, 0x38, 0x00}; 7 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_tline.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_tline_width 12 2 | #define xfm_tline_height 48 3 | static char xfm_tline_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 5 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 6 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 7 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x0f, 8 | 0xff, 0x0f, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 9 | 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 10 | 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 11 | 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00}; 12 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_watch.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_watch_width 16 2 | #define xfm_watch_height 16 3 | static char xfm_watch_bits[] = { 4 | 0xc6, 0x07, 0xf7, 0x1f, 0x3b, 0x38, 0x0c, 0x60, 0x0c, 0x60, 0x06, 0xc0, 5 | 0x06, 0xc0, 0x06, 0xdf, 0x06, 0xc1, 0x06, 0xc1, 0x0c, 0x61, 0x0c, 0x61, 6 | 0x38, 0x38, 0xf0, 0x1f, 0xc0, 0x07, 0x00, 0x00}; 7 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_watchmsk.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_watchmsk_width 16 2 | #define xfm_watchmsk_height 16 3 | static char xfm_watchmsk_bits[] = { 4 | 0xc6, 0x07, 0xf7, 0x1f, 0xff, 0x3f, 0xfc, 0x7f, 0xfc, 0x7f, 0xfe, 0xff, 5 | 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0x7f, 0xfc, 0x7f, 6 | 0xf8, 0x3f, 0xf0, 0x1f, 0xc0, 0x07, 0x00, 0x00}; 7 | -------------------------------------------------------------------------------- /xfiler/bitmaps/xfm_wavy_arrow.xbm: -------------------------------------------------------------------------------- 1 | #define xfm_wavy_arrow_width 12 2 | #define xfm_wavy_arrow_height 48 3 | static char xfm_wavy_arrow_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 5 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 6 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 7 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x06, 0x83, 0x0f, 8 | 0xc7, 0x0f, 0x7c, 0x06, 0x38, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 9 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 10 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 11 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; 12 | -------------------------------------------------------------------------------- /xfiler/blank.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * blank_xpm[] = { 3 | "8 8 1 1", 4 | " c None", 5 | " ", 6 | " ", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " "}; 13 | -------------------------------------------------------------------------------- /xfiler/dot.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * dot_xpm[] = { 3 | "8 8 2 1", 4 | " c None", 5 | ". c #000000000000", 6 | " ", 7 | " .. ", 8 | " .... ", 9 | " ...... ", 10 | " ...... ", 11 | " .... ", 12 | " .. ", 13 | " "}; 14 | -------------------------------------------------------------------------------- /xfiler/exec.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include "Files.h" 4 | 5 | void ExecExternalApplication(Display *dpy, int x, int y, char *label, 6 | char *icon, char *cmd, char *drop, char *dir) 7 | { 8 | char path[1024]; 9 | char *p; 10 | char **argv; 11 | 12 | if (dir) 13 | { 14 | newFileWindow(dir,resources.initial_display_type,True,False); 15 | return; 16 | } 17 | 18 | strcpy(path, cmd); 19 | p= path+strlen(path); 20 | while(*p--!='/'); 21 | p++; 22 | p[0] = '\0'; 23 | 24 | argv = (char **) XtMalloc(2 * sizeof(char *)); 25 | argv[0] = XtNewString(cmd); 26 | argv[1] = NULL; 27 | 28 | executeApplication(cmd, path, argv); 29 | 30 | freeArgv(argv); 31 | 32 | } 33 | -------------------------------------------------------------------------------- /xfiler/pixmaps/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = xfm_blackhole.xpm xfm_dir.xpm xfm_dirlnk.xpm xfm_exec.xpm \ 2 | xfm_execlnk.xpm xfm_file.xpm xfm_files.xpm xfm_icon.xpm \ 3 | xfm_symlnk.xpm xfm_updir.xpm 4 | -------------------------------------------------------------------------------- /xfiler/regerror.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void 4 | regerror(s) 5 | char *s; 6 | { 7 | fprintf(stderr, "regexp(3): %s", s); 8 | } 9 | -------------------------------------------------------------------------------- /xfiler/regexp.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Definitions etc. for regexp(3) routines. 3 | * 4 | * Caveat: this is V8 regexp(3) [actually, a reimplementation thereof], 5 | * not the System V one. 6 | */ 7 | 8 | #include 9 | 10 | #define NSUBEXP 10 11 | typedef struct regexp { 12 | char *startp[NSUBEXP]; 13 | char *endp[NSUBEXP]; 14 | char regstart; /* Internal use only. */ 15 | char reganch; /* Internal use only. */ 16 | char *regmust; /* Internal use only. */ 17 | int regmlen; /* Internal use only. */ 18 | char program[1]; /* Unwarranted chumminess with compiler. */ 19 | } regexp; 20 | 21 | extern regexp *regcomp(); 22 | extern int regexec(); 23 | extern void regsub(); 24 | extern void regerror(); 25 | -------------------------------------------------------------------------------- /xfiler/regmagic.h: -------------------------------------------------------------------------------- 1 | /* 2 | * The first byte of the regexp internal "program" is actually this magic 3 | * number; the start node begins in the second byte. 4 | */ 5 | #define MAGIC 0234 6 | -------------------------------------------------------------------------------- /xfiler/runcmd-ad.h: -------------------------------------------------------------------------------- 1 | "Runcmd.geometry: 600x200", 2 | "Runcmd*Command.cursor: hand2", 3 | -------------------------------------------------------------------------------- /xfiler/runcmd.1: -------------------------------------------------------------------------------- 1 | .TH RUNCMD 1 LOCAL 2 | 3 | .SH NAME 4 | runcmd 5 | 6 | .SH SYNOPSIS 7 | .B runcmd 8 | application [args to application] 9 | 10 | .SH DESCRIPTION 11 | .I Runcmd 12 | is a simple tool that work as a wrapper to non-X applications. It 13 | redirects stdout/stderr of the application to an X window. From that window the 14 | user is able to abort the running program, to quit completely or to restart 15 | the application. 16 | 17 | .I Xfiler 18 | uses Runcmd to launch applications. 19 | 20 | .I Runcmd 21 | was originally written by Andre Hentz for the OffiX project, 22 | then under the name Execute. It was ported by Ulric Eriksson 23 | for Siag Office, but retains full compatibility with OffiX. 24 | 25 | .SH VERSION 26 | Current version (21 March 2000) is Runcmd 3.3.0 by Ulric Eriksson, 27 | ulric\@siag.nu. 28 | 29 | -------------------------------------------------------------------------------- /xfiler/runcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricE/SiagOffice/b3bb705b282640b494f01936662eacd77a575f68/xfiler/runcmd.c -------------------------------------------------------------------------------- /xpw/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | bin_PROGRAMS = pw 3 | 4 | pw_SOURCES = window.c xpw.c fileio_ps.c 5 | 6 | noinst_HEADERS = app-defaults.h xpw.h 7 | 8 | pw_LDFLAGS = -L../siod -L../common -L../xcommon -L../pw 9 | 10 | pw_LDADD = -lpw -lxcommon -lcommon -lsiod \ 11 | @LIBSYSDEP@ @INTERPRETERS@ \ 12 | -lXpm @LIBT1@ @LIBT1X@ \ 13 | @X_LIBS@ $(MY_X_LIBS) -lXt -lX11 \ 14 | @X_PRE_LIBS@ @X_EXTRA_LIBS@ 15 | 16 | AM_CPPFLAGS = $(DEBUG) $(NDBM) @X_CFLAGS@ 17 | 18 | EXTRA_DIST = Pw.ad PW.kdelnk x-pw.kdelnk 19 | 20 | app-defaults.h: ../xcommon/ad2c Pw.ad 21 | sh ../xcommon/ad2c Pw.ad > app-defaults.h 22 | 23 | # Add KDE entries for application and mimetypes 24 | 25 | install-data-local: 26 | $(KDEINST) -a PW.kdelnk -m x-pw.kdelnk \ 27 | -i ../common/bitmaps/pw.xpm 28 | 29 | uninstall-local: 30 | $(KDEINST) -u -a PW.kdelnk -m x-pw.kdelnk \ 31 | -i pw.xpm 32 | 33 | -------------------------------------------------------------------------------- /xpw/PW.kdelnk: -------------------------------------------------------------------------------- 1 | # KDE Config File 2 | [KDE Desktop Entry] 3 | SwallowExec= 4 | SwallowTitle= 5 | BinaryPattern= 6 | Name[C]=Pathetic Writer 7 | MimeType=application/x-pw; 8 | Exec=pw %f 9 | Icon=pw.xpm 10 | TerminalOptions= 11 | Path= 12 | Type=Application 13 | Terminal=0 14 | -------------------------------------------------------------------------------- /xpw/x-pw.kdelnk: -------------------------------------------------------------------------------- 1 | # KDE Config File 2 | [KDE Desktop Entry] 3 | MimeType=application/x-pw 4 | Comment=Pathetic Writer 5 | DefaultApp=pw 6 | Icon=pw.xpm 7 | Type=MimeType 8 | Patterns=*.pw;*.rtf;*.doc; 9 | -------------------------------------------------------------------------------- /xsiag/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | bin_PROGRAMS = siag 3 | 4 | siag_SOURCES = window.c xsiag.c 5 | 6 | noinst_HEADERS = app-defaults.h xsiag.h 7 | 8 | siag_LDFLAGS = -L../siod -L../common -L../xcommon -L../siag -L../cole -L../stocks 9 | 10 | siag_LDADD = @LIBCCMATH@ -lsiag -lxcommon -lcommon -lcole -lstocks -lsiod \ 11 | @LIBSYSDEP@ @INTERPRETERS@ \ 12 | @LIBCCMATH@ -lXpm @LIBT1@ @LIBT1X@ \ 13 | @X_LIBS@ $(MY_X_LIBS) -lXt -lX11 \ 14 | @X_PRE_LIBS@ @X_EXTRA_LIBS@ 15 | 16 | AM_CPPFLAGS = $(DEBUG) $(NDBM) $(CCMATH) @X_CFLAGS@ 17 | 18 | EXTRA_DIST = Siag.ad Siag.kdelnk x-siag.kdelnk 19 | 20 | app-defaults.h: ../xcommon/ad2c Siag.ad 21 | sh ../xcommon/ad2c Siag.ad > app-defaults.h 22 | 23 | # Add KDE entries for application and mimetypes 24 | 25 | install-data-local: 26 | $(KDEINST) -a Siag.kdelnk -m x-siag.kdelnk \ 27 | -i ../common/bitmaps/siag.xpm 28 | 29 | uninstall-local: 30 | $(KDEINST) -u -a Siag.kdelnk -m x-siag.kdelnk \ 31 | -i siag.xpm 32 | 33 | -------------------------------------------------------------------------------- /xsiag/Siag.kdelnk: -------------------------------------------------------------------------------- 1 | # KDE Config File 2 | [KDE Desktop Entry] 3 | SwallowExec= 4 | SwallowTitle= 5 | BinaryPattern= 6 | Name[C]=Siag Spreadsheet 7 | MimeType=application/x-siag; 8 | Exec=siag %f 9 | Icon=siag.xpm 10 | TerminalOptions= 11 | Path= 12 | Type=Application 13 | Terminal=0 14 | -------------------------------------------------------------------------------- /xsiag/x-siag.kdelnk: -------------------------------------------------------------------------------- 1 | # KDE Config File 2 | [KDE Desktop Entry] 3 | MimeType=application/x-siag 4 | Comment=Siag Spreadsheet 5 | DefaultApp=siag 6 | Icon=siag.xpm 7 | Type=MimeType 8 | Patterns=*.siag;*.csv;*.wk1; 9 | --------------------------------------------------------------------------------