mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
* src/scm/report.scm: Defined global identifiers for some option names. * src/scm/report/category-barchart.scm: Added menu tips, menu names. Use Reportname option for report title. Added an explanatory text (only for devel info, will be removed again in some weeks). * src/scm/html-barchart.scm: Fix bug. * src/gnome/gnc-html-guppi.c (guppi_bar_1_callback): Fix bug. And updated de.po. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@3971 57a11ea4-9604-0410-9ed3-97b8803252fd
426 lines
15 KiB
Scheme
426 lines
15 KiB
Scheme
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; html-barchart.scm : generate HTML programmatically, with support
|
|
;; for simple style elements.
|
|
;; Copyright 2000 Bill Gribble <grib@gnumatic.com>
|
|
;;
|
|
;; This program is free software; you can redistribute it and/or
|
|
;; modify it under the terms of the GNU General Public License as
|
|
;; published by the Free Software Foundation; either version 2 of
|
|
;; the License, or (at your option) any later version.
|
|
;;
|
|
;; This program is distributed in the hope that it will be useful,
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;; GNU General Public License for more details.
|
|
;;
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with this program; if not, contact:
|
|
;;
|
|
;; Free Software Foundation Voice: +1-617-542-5942
|
|
;; 59 Temple Place - Suite 330 Fax: +1-617-542-2652
|
|
;; Boston, MA 02111-1307, USA gnu@gnu.org
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(gnc:support "html-barchart.scm")
|
|
|
|
(define <html-barchart>
|
|
(make-record-type "<html-barchart>"
|
|
'(width
|
|
height
|
|
title
|
|
subtitle
|
|
x-axis-label
|
|
y-axis-label
|
|
col-labels
|
|
row-labels
|
|
col-colors
|
|
legend-reversed?
|
|
row-labels-rotated?
|
|
stacked?
|
|
data
|
|
button-1-bar-urls button-2-bar-urls
|
|
button-3-bar-urls
|
|
button-1-legend-urls button-2-legend-urls
|
|
button-3-legend-urls)))
|
|
|
|
(define gnc:html-barchart?
|
|
(record-predicate <html-barchart>))
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; <html-barchart> class
|
|
;; generate the <object> form for a guppi barchart.
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(define gnc:make-html-barchart-internal
|
|
(record-constructor <html-barchart>))
|
|
|
|
(define (gnc:make-html-barchart)
|
|
(gnc:make-html-barchart-internal -1 -1 #f #f #f #f '() '() '()
|
|
#f #f #f '() #f #f #f #f #f #f))
|
|
|
|
(define gnc:html-barchart-data
|
|
(record-accessor <html-barchart> 'data))
|
|
|
|
(define gnc:html-barchart-set-data!
|
|
(record-modifier <html-barchart> 'data))
|
|
|
|
(define gnc:html-barchart-width
|
|
(record-accessor <html-barchart> 'width))
|
|
|
|
(define gnc:html-barchart-set-width!
|
|
(record-modifier <html-barchart> 'width))
|
|
|
|
(define gnc:html-barchart-height
|
|
(record-accessor <html-barchart> 'height))
|
|
|
|
(define gnc:html-barchart-set-height!
|
|
(record-modifier <html-barchart> 'height))
|
|
|
|
(define gnc:html-barchart-x-axis-label
|
|
(record-accessor <html-barchart> 'x-axis-label))
|
|
|
|
(define gnc:html-barchart-set-x-axis-label!
|
|
(record-modifier <html-barchart> 'x-axis-label))
|
|
|
|
(define gnc:html-barchart-y-axis-label
|
|
(record-accessor <html-barchart> 'y-axis-label))
|
|
|
|
(define gnc:html-barchart-set-y-axis-label!
|
|
(record-modifier <html-barchart> 'y-axis-label))
|
|
|
|
(define gnc:html-barchart-row-labels
|
|
(record-accessor <html-barchart> 'row-labels))
|
|
|
|
(define gnc:html-barchart-set-row-labels!
|
|
(record-modifier <html-barchart> 'row-labels))
|
|
|
|
(define gnc:html-barchart-row-labels-rotated?
|
|
(record-accessor <html-barchart> 'row-labels-rotated?))
|
|
|
|
(define gnc:html-barchart-set-row-labels-rotated?!
|
|
(record-modifier <html-barchart> 'row-labels-rotated?))
|
|
|
|
(define gnc:html-barchart-stacked?
|
|
(record-accessor <html-barchart> 'stacked?))
|
|
|
|
(define gnc:html-barchart-set-stacked?!
|
|
(record-modifier <html-barchart> 'stacked?))
|
|
|
|
(define gnc:html-barchart-col-labels
|
|
(record-accessor <html-barchart> 'col-labels))
|
|
|
|
(define gnc:html-barchart-set-col-labels!
|
|
(record-modifier <html-barchart> 'col-labels))
|
|
|
|
(define gnc:html-barchart-col-colors
|
|
(record-accessor <html-barchart> 'col-colors))
|
|
|
|
(define gnc:html-barchart-set-col-colors!
|
|
(record-modifier <html-barchart> 'col-colors))
|
|
|
|
(define gnc:html-barchart-legend-reversed?
|
|
(record-accessor <html-barchart> 'legend-reversed?))
|
|
|
|
(define gnc:html-barchart-set-legend-reversed?!
|
|
(record-modifier <html-barchart> 'legend-reversed?))
|
|
|
|
(define gnc:html-barchart-title
|
|
(record-accessor <html-barchart> 'title))
|
|
|
|
(define gnc:html-barchart-set-title!
|
|
(record-modifier <html-barchart> 'title))
|
|
|
|
(define gnc:html-barchart-subtitle
|
|
(record-accessor <html-barchart> 'subtitle))
|
|
|
|
(define gnc:html-barchart-set-subtitle!
|
|
(record-modifier <html-barchart> 'subtitle))
|
|
|
|
;; Note: ATM you can specify one url per column, but this url will be
|
|
;; used for all of the rows. Otherwise we could have cols*rows urls
|
|
;; (quite a lot), but this first requires fixing
|
|
;; guppi_bar_1_callback() in gnome/gnc-html-guppi.c .
|
|
(define gnc:html-barchart-button-1-bar-urls
|
|
(record-accessor <html-barchart> 'button-1-bar-urls))
|
|
|
|
(define gnc:html-barchart-set-button-1-bar-urls!
|
|
(record-modifier <html-barchart> 'button-1-bar-urls))
|
|
|
|
(define gnc:html-barchart-button-2-bar-urls
|
|
(record-accessor <html-barchart> 'button-2-bar-urls))
|
|
|
|
(define gnc:html-barchart-set-button-2-bar-urls!
|
|
(record-modifier <html-barchart> 'button-2-bar-urls))
|
|
|
|
(define gnc:html-barchart-button-3-bar-urls
|
|
(record-accessor <html-barchart> 'button-3-bar-urls))
|
|
|
|
(define gnc:html-barchart-set-button-3-bar-urls!
|
|
(record-modifier <html-barchart> 'button-3-bar-urls))
|
|
|
|
(define gnc:html-barchart-button-1-legend-urls
|
|
(record-accessor <html-barchart> 'button-1-legend-urls))
|
|
|
|
(define gnc:html-barchart-set-button-1-legend-urls!
|
|
(record-modifier <html-barchart> 'button-1-legend-urls))
|
|
|
|
(define gnc:html-barchart-button-2-legend-urls
|
|
(record-accessor <html-barchart> 'button-2-legend-urls))
|
|
|
|
(define gnc:html-barchart-set-button-2-legend-urls!
|
|
(record-modifier <html-barchart> 'button-2-legend-urls))
|
|
|
|
(define gnc:html-barchart-button-3-legend-urls
|
|
(record-accessor <html-barchart> 'button-3-legend-urls))
|
|
|
|
(define gnc:html-barchart-set-button-3-legend-urls!
|
|
(record-modifier <html-barchart> 'button-3-legend-urls))
|
|
|
|
(define (gnc:html-barchart-append-row! barchart newrow)
|
|
(let ((dd (gnc:html-barchart-data barchart)))
|
|
(set! dd (append dd (list newrow)))
|
|
(gnc:html-barchart-set-data! barchart dd)))
|
|
|
|
(define (gnc:html-barchart-prepend-row! barchart newrow)
|
|
(let ((dd (gnc:html-barchart-data barchart)))
|
|
(set! dd (cons newrow dd))
|
|
(gnc:html-barchart-set-data! barchart dd)))
|
|
|
|
(define (gnc:html-barchart-append-column! barchart newcol)
|
|
(let ((colnum 0)
|
|
(rownum 0)
|
|
(rows (gnc:html-barchart-data barchart))
|
|
(this-row #f)
|
|
(new-row #f))
|
|
;; find out how many cols are already there in the deepest row
|
|
(for-each
|
|
(lambda (row)
|
|
(let ((l (length row)))
|
|
(if (> l colnum)
|
|
(set! colnum l))))
|
|
rows)
|
|
|
|
;; append the elements of 'newrow' to the rowumns
|
|
(for-each-in-order
|
|
(lambda (newelt)
|
|
;; find the row, or append one
|
|
(if (not (null? rows))
|
|
(begin
|
|
(set! new-row #f)
|
|
(set! this-row (car rows))
|
|
(if (null? (cdr rows))
|
|
(set! rows #f)
|
|
(set! rows (cdr rows))))
|
|
(begin
|
|
(set! new-row #t)
|
|
(set! this-row '())))
|
|
|
|
;; make sure the rowumn is long enough, then append the data
|
|
(let loop ((l (length this-row))
|
|
(r (reverse this-row)))
|
|
(if (< l colnum)
|
|
(loop (+ l 1) (cons #f r))
|
|
(set! this-row
|
|
(reverse (cons newelt r)))))
|
|
(if new-row
|
|
(gnc:html-barchart-append-row! barchart this-row)
|
|
(list-set! (gnc:html-barchart-data barchart) rownum this-row))
|
|
(set! rownum (+ 1 rownum)))
|
|
newcol)))
|
|
|
|
(define (gnc:html-barchart-prepend-column! barchart newcol)
|
|
(let ((rows (gnc:html-barchart-data barchart))
|
|
(this-row #f)
|
|
(new-row #f)
|
|
(rownum 0))
|
|
(for-each-in-order
|
|
(lambda (elt)
|
|
(if (not (null? rows))
|
|
(begin
|
|
(set! new-row #f)
|
|
(set! this-row (car rows))
|
|
(if (null? (cdr rows))
|
|
(set! rows #f)
|
|
(set! rows (cdr rows))))
|
|
(begin
|
|
(set! new-row #t)
|
|
(set! this-row '())))
|
|
(if new-row
|
|
(gnc:html-barchart-append-row! barchart (list elt))
|
|
(list-set! (gnc:html-barchart-data barchart) rownum
|
|
(cons elt this-row)))
|
|
(set! rownum (+ 1 rownum)))
|
|
newcol)))
|
|
|
|
(define (gnc:html-barchart-render barchart doc)
|
|
(define (ensure-numeric elt)
|
|
(cond ((number? elt)
|
|
elt)
|
|
((string? elt)
|
|
(with-input-from-string elt
|
|
(lambda ()
|
|
(let ((n (read)))
|
|
(if (number? n) n 0.0)))))
|
|
((gnc:gnc-numeric? elt)
|
|
(gnc:numeric-to-double elt))
|
|
(#t
|
|
0.0)))
|
|
|
|
(define (catenate-escaped-strings nlist)
|
|
(if (not (list? nlist))
|
|
""
|
|
(with-output-to-string
|
|
(lambda ()
|
|
(for-each
|
|
(lambda (s)
|
|
(let ((escaped
|
|
(regexp-substitute/global
|
|
#f " "
|
|
(regexp-substitute/global
|
|
#f "\\\\" s
|
|
'pre "\\\\" 'post)
|
|
'pre "\\ " 'post)))
|
|
(display escaped)
|
|
(display " ")))
|
|
nlist)))))
|
|
|
|
(let* ((retval '())
|
|
(push (lambda (l) (set! retval (cons l retval))))
|
|
(title (gnc:html-barchart-title barchart))
|
|
(subtitle (gnc:html-barchart-subtitle barchart))
|
|
(url-1
|
|
(catenate-escaped-strings
|
|
(gnc:html-barchart-button-1-bar-urls barchart)))
|
|
(url-2
|
|
(catenate-escaped-strings
|
|
(gnc:html-barchart-button-2-bar-urls barchart)))
|
|
(url-3
|
|
(catenate-escaped-strings
|
|
(gnc:html-barchart-button-3-bar-urls barchart)))
|
|
(legend-1
|
|
(catenate-escaped-strings
|
|
(gnc:html-barchart-button-1-legend-urls barchart)))
|
|
(legend-2
|
|
(catenate-escaped-strings
|
|
(gnc:html-barchart-button-2-legend-urls barchart)))
|
|
(legend-3
|
|
(catenate-escaped-strings
|
|
(gnc:html-barchart-button-3-legend-urls barchart)))
|
|
(x-label (gnc:html-barchart-x-axis-label barchart))
|
|
(y-label (gnc:html-barchart-y-axis-label barchart))
|
|
(data (gnc:html-barchart-data barchart))
|
|
(row-labels (catenate-escaped-strings
|
|
(gnc:html-barchart-row-labels barchart)))
|
|
(col-labels (catenate-escaped-strings
|
|
(gnc:html-barchart-col-labels barchart)))
|
|
(col-colors (catenate-escaped-strings
|
|
(gnc:html-barchart-col-colors barchart))))
|
|
(if (and (list? data)
|
|
(not (null? data)))
|
|
(begin
|
|
(push "<object classid=\"gnc-guppi-bar\" width=")
|
|
(push (gnc:html-barchart-width barchart))
|
|
(push " height=")
|
|
(push (gnc:html-barchart-height barchart))
|
|
(push ">\n")
|
|
(if title
|
|
(begin
|
|
(push " <param name=\"title\" value=\"")
|
|
(push title) (push "\">\n")))
|
|
(if subtitle
|
|
(begin
|
|
(push " <param name=\"subtitle\" value=\"")
|
|
(push subtitle) (push "\">\n")))
|
|
(if url-1
|
|
(begin
|
|
(push " <param name=\"bar_urls_1\" value=\"")
|
|
(push url-1)
|
|
(push "\">\n")))
|
|
(if url-2
|
|
(begin
|
|
(push " <param name=\"bar_urls_2\" value=\"")
|
|
(push url-2)
|
|
(push "\">\n")))
|
|
(if url-3
|
|
(begin
|
|
(push " <param name=\"bar_urls_3\" value=\"")
|
|
(push url-3)
|
|
(push "\">\n")))
|
|
(if legend-1
|
|
(begin
|
|
(push " <param name=\"legend_urls_1\" value=\"")
|
|
(push legend-1)
|
|
(push "\">\n")))
|
|
(if legend-2
|
|
(begin
|
|
(push " <param name=\"legend_urls_2\" value=\"")
|
|
(push legend-2)
|
|
(push "\">\n")))
|
|
(if legend-3
|
|
(begin
|
|
(push " <param name=\"legend_urls_3\" value=\"")
|
|
(push legend-3)
|
|
(push "\">\n")))
|
|
(if (and data (list? data))
|
|
(let ((rows (length data))
|
|
(cols 0))
|
|
(push " <param name=\"data_rows\" value=\"")
|
|
(push rows) (push "\">\n")
|
|
(if (list? (car data))
|
|
(begin
|
|
(set! cols (length (car data)))
|
|
(push " <param name=\"data_cols\" value=\"")
|
|
(push cols)
|
|
(push "\">\n")))
|
|
(push " <param name=\"data\" value=\"")
|
|
(let loop ((col 0))
|
|
(for-each-in-order
|
|
(lambda (row)
|
|
(push (ensure-numeric (list-ref-safe row col)))
|
|
(push " "))
|
|
data)
|
|
(if (< col (- cols 1))
|
|
(loop (+ 1 col))))
|
|
(push "\">\n")))
|
|
(if (and (string? x-label) (> (string-length x-label) 0))
|
|
(begin
|
|
(push " <param name=\"x_axis_label\" value=\"")
|
|
(push x-label)
|
|
(push "\">\n")))
|
|
(if (and (string? y-label) (> (string-length y-label) 0))
|
|
(begin
|
|
(push " <param name=\"y_axis_label\" value=\"")
|
|
(push y-label)
|
|
(push "\">\n")))
|
|
(if (and (string? col-colors) (> (string-length col-colors) 0))
|
|
(begin
|
|
(push " <param name=\"col_colors\" value=\"")
|
|
(push col-colors)
|
|
(push "\">\n")))
|
|
(if (and (string? row-labels) (> (string-length row-labels) 0))
|
|
(begin
|
|
(push " <param name=\"row_labels\" value=\"")
|
|
(push row-labels)
|
|
(push "\">\n")))
|
|
(if (and (string? col-labels) (> (string-length col-labels) 0))
|
|
(begin
|
|
(push " <param name=\"col_labels\" value=\"")
|
|
(push col-labels)
|
|
(push "\">\n")))
|
|
(push " <param name=\"rotate_row_labels\" value=\"")
|
|
(push (if (gnc:html-barchart-row-labels-rotated? barchart)
|
|
"1\">\n"
|
|
"0\">\n"))
|
|
(push " <param name=\"stacked\" value=\"")
|
|
(push (if (gnc:html-barchart-stacked? barchart)
|
|
"1\">\n"
|
|
"0\">\n"))
|
|
(push " <param name=\"legend_reversed\" value=\"")
|
|
(push (if (gnc:html-barchart-legend-reversed? barchart)
|
|
"1\">\n"
|
|
"0\">\n"))
|
|
(push "Unable to push bar chart\n")
|
|
(push "</object> \n"))
|
|
" ")
|
|
retval))
|