mirror of
https://github.com/Gnucash/gnucash.git
synced 2026-09-03 20:53:02 -05:00
Collapse the gnome2 branch back into HEAD.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@11565 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
@@ -2,3 +2,5 @@ Makefile
|
||||
Makefile.in
|
||||
gnucash.1
|
||||
gnc-prices.1
|
||||
tip_of_the_day.list
|
||||
*.tmp
|
||||
|
||||
+12
-5
@@ -1,8 +1,6 @@
|
||||
|
||||
docdir = ${GNC_DOC_INSTALL_DIR}
|
||||
|
||||
SUBDIRS = examples
|
||||
|
||||
docdir = ${GNC_DOC_INSTALL_DIR}
|
||||
doc_DATA = \
|
||||
README.francais \
|
||||
README.german \
|
||||
@@ -13,6 +11,9 @@ man_MANS = \
|
||||
gnc-prices.1 \
|
||||
gnucash.1
|
||||
|
||||
tipsdir = $(GNC_SHAREDIR)
|
||||
tips_DATA = tip_of_the_day.list
|
||||
|
||||
EXTRA_DIST = \
|
||||
.cvsignore \
|
||||
${doc_DATA} \
|
||||
@@ -30,7 +31,8 @@ EXTRA_DIST = \
|
||||
generic_objects.txt \
|
||||
gnome-hackers.txt \
|
||||
gnc-prices.1.in \
|
||||
gnucash.1.in
|
||||
gnucash.1.in \
|
||||
tip_of_the_day.list.in
|
||||
|
||||
## We borrow guile's convention and use @-...-@ as the substitution
|
||||
## brackets here, instead of the usual @...@. This prevents autoconf
|
||||
@@ -52,4 +54,9 @@ gnucash.1: gnucash.1.in
|
||||
chmod +x $@.tmp
|
||||
mv $@.tmp $@
|
||||
|
||||
DISTCLEANFILES = gnc-prices.1 gnucash.1
|
||||
tip_of_the_day.list: tip_of_the_day.list.in
|
||||
gcc -E -P -x c -D'N_(x)=x' -o $@.tmp $<
|
||||
cat -s $@.tmp | sed -e 's/^ *\"\(.*\)\" *$$/\1/m' > $@
|
||||
rm -f $@.tmp
|
||||
|
||||
DISTCLEANFILES = gnc-prices.1 gnucash.1 tip_of_the_day.list
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
The following changes occur in the Gnucash GUI when the "Euro support"
|
||||
preference is enabled:
|
||||
|
||||
1) In any register denominated in a national currency that been
|
||||
replaced by the Euro (e.g. an account in DEM), the summarybar will
|
||||
show totals in both the old currency and in EUR.
|
||||
|
||||
2) There is an additional line labeled "EUR, total" in the account
|
||||
tree summarybar. The totals in this line are a sum of all accounts
|
||||
denominated in currencies that have been replaced by the Euro.
|
||||
(E.G. The sum of all accounts in DEM, plus all accounts in FRF,
|
||||
etc., etc.)
|
||||
@@ -0,0 +1,171 @@
|
||||
#
|
||||
# This is an example GTK RC file that can be used with Gnucash.
|
||||
# Simply copy this file to ~/.gtkrc-2.0.gnucash and then restart
|
||||
# gnucash. Yes the colors are hideous, but then this is a (bad)
|
||||
# example that you should customize to your liking.
|
||||
#
|
||||
# On an FC3 system, the RC files (if they exist) are loaded for in
|
||||
# this order:
|
||||
#
|
||||
# /usr/share/gtkrc-2.0
|
||||
# /etc/gtk-2.0/gtkrc
|
||||
# ~/.gtkrc-2.0
|
||||
# ** ~/.gtkrc-2.0.gnucash **
|
||||
# ~/.gnome2/gtkrc-2.0
|
||||
# ~/.themes/Bluecurve/gtk-2.0/gtkrc
|
||||
# /usr/share/themes/Bluecurve/gtk-2.0/gtkrc
|
||||
# ~/.themes/Default/gtk-2.0-key/gtkrc
|
||||
# /usr/share/themes/Default/gtk-2.0-key/gtkrc
|
||||
#
|
||||
|
||||
##########
|
||||
#
|
||||
# Define the various styles here
|
||||
#
|
||||
##########
|
||||
|
||||
style "gnc-button"
|
||||
{
|
||||
# This shows all the possible states for a button. The only one that
|
||||
# doesn't apply is the SELECTED state.
|
||||
|
||||
bg[NORMAL] = "LightBlue"
|
||||
fg[NORMAL] = "IndianRed"
|
||||
|
||||
# Mouse over
|
||||
bg[PRELIGHT] = "SkyBlue"
|
||||
fg[PRELIGHT] = "white"
|
||||
|
||||
# Mouse down
|
||||
bg[ACTIVE] = "SteelBlue"
|
||||
fg[ACTIVE] = "white"
|
||||
|
||||
bg[INSENSITIVE] = { 1.0, 1.0, 1.0 }
|
||||
fg[INSENSITIVE] = { 1.0, 0, 1.0 }
|
||||
}
|
||||
|
||||
style "gnc-button2" = "gnc-button"
|
||||
{
|
||||
bg[NORMAL] = "PeachPuff"
|
||||
fg[NORMAL] = "firebrick"
|
||||
}
|
||||
|
||||
style "gnc-button3" = "gnc-button"
|
||||
{
|
||||
bg[NORMAL] = "LightGoldenrod1"
|
||||
fg[NORMAL] = "firebrick"
|
||||
}
|
||||
|
||||
|
||||
|
||||
style "gnc-entry"
|
||||
{
|
||||
base[NORMAL] = "LightBlue"
|
||||
text[NORMAL] = "firebrick"
|
||||
}
|
||||
|
||||
style "gnc-entry2"
|
||||
{
|
||||
base[NORMAL] = "RoyalBlue"
|
||||
text[NORMAL] = "WhiteSmoke"
|
||||
}
|
||||
|
||||
|
||||
|
||||
style "gnc-treeview"
|
||||
{
|
||||
GtkTreeView::even-row-color = "IndianRed"
|
||||
GtkTreeView::odd-row-color = "LightBlue"
|
||||
}
|
||||
|
||||
|
||||
|
||||
##########
|
||||
#
|
||||
# Program wide changes should go here.
|
||||
#
|
||||
##########
|
||||
class "GtkEntry" style "gnc-entry"
|
||||
class "GtkButton" style "gnc-button"
|
||||
|
||||
|
||||
##########
|
||||
#
|
||||
# Individual window changes should go here.
|
||||
#
|
||||
##########
|
||||
|
||||
#
|
||||
# Price Selection Dialog
|
||||
#
|
||||
# widget "Prices Dialog.*.close_button" style "gnc-button"
|
||||
# widget "Prices Dialog.*.get_quotes_button" style "gnc-button2"
|
||||
# widget "Prices Dialog.*.edit_button" style "gnc-button2"
|
||||
# widget "Prices Dialog.*.add_button" style "gnc-button2"
|
||||
# widget "Prices Dialog.*.remove_button" style "gnc-button2"
|
||||
# widget "Prices Dialog.*.remove_old_button" style "gnc-button2"
|
||||
widget "Prices Dialog.*.price_tree" style "gnc-treeview"
|
||||
widget "Prices Dialog.*.price_tree.GtkButton" style "gnc-button3"
|
||||
|
||||
#
|
||||
# Dialog to edit one price
|
||||
#
|
||||
# widget "Price Dialog.*.cancel_button" style "gnc-button2"
|
||||
# widget "Price Dialog.*.ok_button" style "gnc-button2"
|
||||
# widget "Price Dialog.*.GNCGeneralSelect" style "gnc-entry"
|
||||
# widget "Price Dialog.*.GNCCurrencyEdit" style "gnc-entry"
|
||||
# widget "Price Dialog.*.GNCDateEdit.GtkEntry" style "gnc-entry"
|
||||
# widget "Price Dialog.*.source_entry" style "gnc-entry"
|
||||
# widget "Price Dialog.*.type_option" style "foo"
|
||||
widget "Price Dialog.*.GNCAmountEdit" style "gnc-entry2"
|
||||
|
||||
#
|
||||
# Commodity Dialog
|
||||
#
|
||||
widget "Commodities Dialog.*.commodity_tree" style "gnc-treeview"
|
||||
|
||||
|
||||
#
|
||||
# Register - Font
|
||||
#
|
||||
style "gnc-register"
|
||||
{
|
||||
font_name = "Sans 10"
|
||||
}
|
||||
widget "*.GnucashSheet" style "gnc-register"
|
||||
|
||||
|
||||
#
|
||||
# Register Window - Colors
|
||||
#
|
||||
|
||||
# The header lines at the top of a register.
|
||||
style "gnc-register-header"
|
||||
{
|
||||
base[NORMAL] = "#B18396"
|
||||
}
|
||||
|
||||
# The color of the first line/transaction in a register.
|
||||
style "gnc-register-primary"
|
||||
{
|
||||
base[NORMAL] = "#DEB9BF"
|
||||
base[SELECTED] = "#EF98FF"
|
||||
}
|
||||
|
||||
# The color of the second line/transaction in a register.
|
||||
style "gnc-register-secondary"
|
||||
{
|
||||
base[NORMAL] = "#FFDAF6"
|
||||
base[SELECTED] = "#EF98FF"
|
||||
}
|
||||
|
||||
# The color of any "split" lines in a register.
|
||||
style "gnc-register-split"
|
||||
{
|
||||
base[NORMAL] = "#E7D3ED"
|
||||
base[SELECTED] = "#EF98FF"
|
||||
}
|
||||
widget "GncMainWindow.*.header_color" style : highest "gnc-register-header"
|
||||
widget "GncMainWindow.*.primary_color" style : highest "gnc-register-primary"
|
||||
widget "GncMainWindow.*.secondary_color" style : highest "gnc-register-secondary"
|
||||
widget "GncMainWindow.*.split_color" style : highest "gnc-register-split"
|
||||
@@ -0,0 +1,91 @@
|
||||
N_( "Warning!! This is a DEVELOPMENT version of GnuCash. \
|
||||
It probably has lots of bugs and unstable features! \
|
||||
If you are looking for a stable personal finance application, \
|
||||
you should use the latest release of GnuCash 1.8.")
|
||||
|
||||
N_( "The GnuCash online manual has lots of helpful information. \
|
||||
If you are upgrading from earlier versions of GnuCash, the section \
|
||||
\"What's new in GnuCash 1.8\" is particularly interesting. You can \
|
||||
access the manual under the Help menu.")
|
||||
|
||||
N_( "You can easily import your existing financial data from Quicken, \
|
||||
MS Money or other programs that export QIF files or OFX files. In the \
|
||||
File menu, click on the sub-menu Import and click on QIF or OFX file, \
|
||||
respectively. Then, follow the instructions provided.")
|
||||
|
||||
N_( "If you are familiar with other financial programs such as Quicken, \
|
||||
note that GnuCash uses accounts instead of categories to track \
|
||||
income and expenses. For more information on income and expense \
|
||||
accounts, please see the GnuCash online manual.")
|
||||
|
||||
N_( "Create new accounts by clicking the New button in the main window \
|
||||
tool bar. This will bring up a dialog box where you can enter \
|
||||
account details. For more information on choosing an account type \
|
||||
or setting up a chart of accounts, please see the GnuCash online \
|
||||
manual.")
|
||||
|
||||
N_( "Click the right mouse button in the main window to bring up the \
|
||||
account menu options. Within each register, clicking the right \
|
||||
mouse button brings up the transaction menu options.")
|
||||
|
||||
N_( "To enter multiple-split transactions such as a paycheck with \
|
||||
multiple deductions, click the Split button in the tool bar. \
|
||||
Alternatively, in the View -> Style menu, you can choose the register \
|
||||
style Auto-Split Ledger or Transaction Journal.")
|
||||
|
||||
N_( "As you enter amounts in the register, you can use the GnuCash \
|
||||
calculator to add, subtract, multiply and divide . Simply type \
|
||||
the first value, then select '+', '-','*', or '/'. Type the \
|
||||
second value and press Enter to record the calculated amount.")
|
||||
|
||||
N_( "Quick-fill makes it easy to enter common transactions. When you \
|
||||
type the first letter(s) of a common transaction description, \
|
||||
GnuCash will automatically complete the remainder of the \
|
||||
transaction as it was last entered.")
|
||||
|
||||
N_( "Type the first letter(s) of an existing account name in the \
|
||||
Transfer register column, and GnuCash will complete the name from \
|
||||
your list of accounts. For subaccounts, type the first letter(s) \
|
||||
of the parent account, followed by ':' and the first letter(s) of \
|
||||
the subaccount (e.g. A:C for Assets:Cash.)")
|
||||
|
||||
N_( "Want to see all your subaccount transactions in one register? \
|
||||
From the main menu, highlight the parent account and select \
|
||||
Accounts -> Open Subaccounts from the menu.")
|
||||
|
||||
N_( "When entering dates, you can type '+' or '-' to increment or \
|
||||
decrement the selected date. You can use '+' and '-' to increment and \
|
||||
decrement check numbers as well.")
|
||||
|
||||
N_( "In the reconcile window, you can press the spacebar to mark \
|
||||
transactions as reconciled. You can also press Tab and Shift-Tab to \
|
||||
move between deposits and withdrawals.")
|
||||
|
||||
N_( "To transfer funds between accounts with different currencies, \
|
||||
click on the Transfer button in the register toolbar, select the \
|
||||
accounts, and the Currency Transfer options for entering the exchange \
|
||||
rate or the other currency's amount will be available.")
|
||||
|
||||
N_( "You can pack multiple reports into a single window, \
|
||||
providing all the financial information you want at a glance. \
|
||||
To do so, use the Sample & Custom -> \"Custom Multicolumn Report\" \
|
||||
report.")
|
||||
|
||||
N_( "GnuCash can act as a simple web browser! To display \
|
||||
a web page as a report, use the Sample & Custom -> \
|
||||
\"Custom Web Report\" report.")
|
||||
|
||||
N_( "Style Sheets affect how reports are displayed. Choose \
|
||||
a style sheet for your report as a report option, and use \
|
||||
the Edit -> Style Sheets menu to customize style sheets.")
|
||||
|
||||
N_( "The GnuCash developers are easy to contact. As well \
|
||||
as several mailing lists, you can chat to them live on IRC! \
|
||||
Join them on #gnucash at irc.gnome.org")
|
||||
|
||||
N_( "There is a theory that if ever anyone discovers what \
|
||||
the Universe is for and why it is here, it will instantly \
|
||||
disappear and be replaced with something even more bizarre and \
|
||||
inexplicable. \
|
||||
There is another theory that this has already happened. \
|
||||
Douglas Adams, \"The Restaurant at the End of the Universe\"")
|
||||
Reference in New Issue
Block a user