/usr/share/gnucash/scm/options-utilities.scm is in gnucash-common 1:2.6.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; options-utilities.scm: Useful option helper functions.
;;
;; By Christian Stimming <stimming@tu-harburg.de>
;;
;; 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
;; 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652
;; Boston, MA 02110-1301, USA gnu@gnu.org
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; These are just a bunch of options which were useful in several
;; reports and hence they got defined in a seperate function.
;; This is one single end-date of a report.
(define (gnc:options-add-report-date!
options pagename optname sort-tag)
(gnc:options-make-end-date! options pagename optname sort-tag
(N_ "Select a date to report on.")))
;; This is a date-interval for a report.
(define (gnc:options-add-date-interval!
options pagename name-from name-to sort-tag)
(gnc:options-make-date-interval! options pagename
name-from (N_ "Start of reporting period.")
name-to (N_ "End of reporting period.")
sort-tag))
;; A date interval multichoice option.
(define (gnc:options-add-interval-choice!
options pagename optname sort-tag default)
(gnc:register-option
options
(gnc:make-multichoice-option
pagename optname
sort-tag (N_ "The amount of time between data points.") default
(list (vector 'DayDelta (N_ "Day") (N_ "One Day."))
(vector 'WeekDelta (N_ "Week") (N_ "One Week."))
(vector 'TwoWeekDelta (N_ "2Week") (N_ "Two Weeks."))
(vector 'MonthDelta (N_ "Month") (N_ "One Month."))
(vector 'QuarterDelta (N_ "Quarter") (N_ "One Quarter."))
(vector 'HalfYearDelta (N_ "Half Year") (N_ "Half Year."))
(vector 'YearDelta (N_ "Year") (N_ "One Year."))
))))
;; A multichoice option intended to chose the account level. Different
;; from the other functions the help string can still be given. Used
;; below.
(define (gnc:options-add-account-levels!
options pagename name-display-depth
sort-tag help-string default-depth)
(gnc:register-option
options
(gnc:make-multichoice-option
pagename name-display-depth
sort-tag
help-string
default-depth
(list (list->vector
(list 'all (N_ "All") (N_ "All accounts")))
(list->vector
(list 1 "1" (N_ "Top-level.")))
(list->vector
(list 2 "2" (N_ "Second-level.")))
(list->vector
(list 3 "3" (N_ "Third-level.")))
(list->vector
(list 4 "4" (N_ "Fourth-level.")))
(list->vector
(list 5 "5" (N_ "Fifth-level.")))
(list->vector
(list 6 "6" (N_ "Sixth-level.")))))))
;; These help for selecting a bunch of accounts.
(define (gnc:options-add-account-selection!
options pagename
name-display-depth name-show-subaccounts name-accounts
sort-tag default-depth default-accounts default-show-subaccounts)
(gnc:options-add-account-levels!
options pagename name-display-depth
(string-append sort-tag "a")
(N_ "Show accounts to this depth, overriding any other option.")
default-depth)
(gnc:register-option
options
(gnc:make-simple-boolean-option
pagename name-show-subaccounts
(string-append sort-tag "b")
(N_ "Override account-selection and show sub-accounts of all selected accounts?")
default-show-subaccounts))
;; Semantics of the account selection, as used in the
;; gnc:html-build-acct-table: An account shows up if ( the
;; tree-depth is large enough AND ( it is selected in the account
;; selector OR ( always show sub-accounts is selected AND one of
;; the parents is selected in the account selector. )))
(gnc:register-option
options
(gnc:make-account-list-option
pagename name-accounts
(string-append sort-tag "c")
(N_ "Report on these accounts, if display depth allows.")
default-accounts
#f #t)))
;; The single checkbox whether to include the sub-account balances
;; into the other balances.
(define (gnc:options-add-include-subaccounts!
options pagename optname sort-tag)
(gnc:register-option
options
(gnc:make-simple-boolean-option
pagename optname
sort-tag (N_ "Include sub-account balances in printed balance?") #t)))
;; The single checkbox whether to group the accounts into main
;; categories and ahow a subtotal for those.
(define (gnc:options-add-group-accounts!
options pagename optname sort-tag default?)
(gnc:register-option
options
(gnc:make-simple-boolean-option
pagename optname
sort-tag (N_ "Group the accounts in main categories?") default?)))
;; To let the user select a currency for the report.
(define (gnc:options-add-currency!
options pagename name-report-currency sort-tag)
(gnc:register-option
options
(gnc:make-currency-option
pagename name-report-currency
sort-tag
(N_ "Select the currency to display the values of this report in.")
(gnc-default-report-currency))))
;; These are common options for the selection of the report's
;; currency/commodity.
(define (gnc:options-add-currency-selection!
options pagename
name-show-foreign name-report-currency sort-tag)
(gnc:register-option
options
(gnc:make-simple-boolean-option
pagename name-show-foreign
(string-append sort-tag "a")
(N_ "Display the account's foreign currency amount?") #f))
(gnc:options-add-currency! options pagename name-report-currency
(string-append sort-tag "b")))
;; A multichoice option for the source of prices
(define (gnc:options-add-price-source!
options pagename optname sort-tag default)
(gnc:register-option
options
(gnc:make-multichoice-option
pagename optname
sort-tag (N_ "The source of price information.") default
(list (vector 'average-cost
(N_ "Average Cost")
(N_ "The volume-weighted average cost of purchases."))
(vector 'weighted-average
(N_ "Weighted Average")
(N_ "The weighted average of all currency transactions of the past."))
(vector 'pricedb-latest
(N_ "Most recent")
(N_ "The most recent recorded price."))
(vector 'pricedb-nearest
(N_ "Nearest in time")
(N_ "The price recorded nearest in time to the report date."))
))))
;; The width- and height- options for charts
(define (gnc:options-add-plot-size!
options pagename
name-width name-height sort-tag
default-width default-height)
(gnc:register-option
options
(gnc:make-number-range-option
pagename name-width
(string-append sort-tag "a")
(N_ "Width of plot in pixels.") default-width
100 20000 0 5))
(gnc:register-option
options
(gnc:make-number-range-option
pagename name-height
(string-append sort-tag "b")
(N_ "Height of plot in pixels.") default-height
100 20000 0 5)))
;; A multicoice option for the marker of a scatter plot.
(define (gnc:options-add-marker-choice!
options pagename optname sort-tag default)
(gnc:register-option
options
(gnc:make-multichoice-option
pagename optname
sort-tag
(N_ "Choose the marker for each data point.")
default
(list
(vector 'diamond (N_ "Diamond") (N_ "Hollow diamond"))
(vector 'circle (N_ "Circle") (N_ "Hollow circle"))
(vector 'square (N_ "Square") (N_ "Hollow square"))
(vector 'cross (N_ "Cross") (N_ "Cross"))
(vector 'plus (N_ "Plus") (N_ "Plus"))
(vector 'dash (N_ "Dash") (N_ "Dash"))
(vector 'filleddiamond (N_ "Filled diamond") (N_ "Diamond filled with color"))
(vector 'filledcircle (N_ "Filled circle") (N_ "Circle filled with color"))
(vector 'filledsquare (N_ "Filled square") (N_ "Square filled with color"))))))
(define (gnc:options-add-sort-method!
options pagename optname sort-tag default)
(gnc:register-option
options
(gnc:make-multichoice-option
pagename optname
sort-tag
(N_ "Choose the method for sorting accounts.")
default
(list
(vector 'acct-code (N_ "Account Code") (N_ "Alphabetical by account code."))
(vector 'alphabetical (N_ "Alphabetical") (N_ "Alphabetical by account name."))
(vector 'amount (N_ "Amount") (N_ "By amount, largest to smallest."))))))
;; These control the calculation and view mode of subtotal balances
(define (gnc:options-add-subtotal-view!
options pagename
optname-parent-balance-mode optname-parent-total-mode
sort-tag)
;; what to show for non-leaf accounts
(gnc:register-option
options
(gnc:make-multichoice-option
pagename
;; usually the option name is: (N_ "Parent account balances")
optname-parent-balance-mode
(string-append sort-tag "a")
(N_ "How to show the balances of parent accounts.")
'immediate-bal
(list (vector 'immediate-bal
(N_ "Account Balance")
(N_ "Show only the balance in the parent account, excluding any subaccounts."))
(vector 'recursive-bal
(N_ "Subtotal")
(N_ "Calculate the subtotal for this parent account and all of its subaccounts, and show this as the parent account balance."))
(vector 'omit-bal
(N_ "Do not show")
(N_ "Do not show any balances of parent accounts.")))))
(gnc:register-option
options
(gnc:make-multichoice-option
pagename
;; usually the option name is: (N_ "Parent account subtotals")
optname-parent-total-mode
(string-append sort-tag "b")
(N_ "How to show account subtotals for parent accounts.")
'f
(list (vector 't
(N_ "Show subtotals")
(N_ "Show subtotals for selected parent accounts which have subaccounts."))
(vector 'f
(N_ "Do not show")
(N_ "Do not show any subtotals for parent accounts."))
(vector 'canonically-tabbed
;;(N_ "Subtotals indented text book style")
(N_ "Text book style (experimental)")
(N_ "Show parent account subtotals, indented per accounting text book practice (experimental)."))))))
|