/usr/include/gnucash/dialog-account.h is in gnucash-common 1:2.6.12-1.
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 | /********************************************************************\
* dialog-account.h -- window for creating and editing accounts for *
* GnuCash *
* Copyright (C) 2000 Dave Peticolas <petcola@cs.ucdavis.edu> *
* *
* 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 *
\********************************************************************/
#ifndef DIALOG_ACCOUNT_H
#define DIALOG_ACCOUNT_H
#include "Account.h"
/** @addtogroup GUI
@{ */
/** @addtogroup GuiAccount Creating and editing accounts in the GUI
@{ */
/** @file dialog-account.h
*
* This file contains the functions to present a gui to the user for
* creating a new account or editing an existing account.
*
* @brief Dialog for create/edit an account.
* @author Copyright (C) 1997 Robin D. Clark
* @author Copyright (C) 2000 Dave Peticolas
*/
/** @name Non-Modal
@{ */
/** Disply a window for editing the attributes of an existing account.
*
* @param account This parameter specifies the account whose data
* will be edited.
*/
void gnc_ui_edit_account_window (Account *account);
/** Disply a window for creating a new account. This function will
* also initially set the parent account of the new account to what
* the caller specified. The user is free, however, to choose any
* parent account they wish.
*
* @param book The book in which the new account should be created.
* This is a required argument.
*
* @param parent The initially selected parent account. This
* argument is optional, but if supplied must be an account contained
* in the specified book.
*/
void gnc_ui_new_account_window (QofBook *book, Account *parent);
/** Disply a window for creating a new account. This function will
* restrict the available account type values to the list specified
* by the caller.
*
* @param book The book in which the new account should be created.
* This is a required argument.
*
* @param valid_types A GList of GNCAccountType gints [as pointers]
* which are allowed to be created. The calling function is
* responsible for freeing this list.
*/
void gnc_ui_new_account_with_types (QofBook *book,
GList *valid_types);
/** @} */
/** @name Modal
@{ */
/** Disply a modal window for creating a new account
*
* @param name The account name/path to be created. This parameter
* is not used for determining the initially selected parent account.
*/
Account * gnc_ui_new_accounts_from_name_window (const char *name);
/** Disply a modal window for creating a new account. This function
* will restrict the available account type values to the list
* specified by the caller.
*
* @param name The account name/path to be created. This parameter
* is not used for determining the initially selected parent account.
*
* @param valid_types A GList of GNCAccountType gints [as pointers]
* which are allowed to be created. The calling function is
* responsible for freeing this list.
*
* @return A pointer to the newly created account.
*/
/* Note that the caller owns the valid_types list */
Account * gnc_ui_new_accounts_from_name_window_with_types (const char *name,
GList *valid_types);
/** Display a modal window for creating a new account. This function
* will restrict the available account type values to the list
* specified by the caller.
*
* @param name The account name/path to be created. This parameter
* is not used for determining the initially selected parent account.
*
* @param valid_types A GList of GNCAccountType gints [as pointers]
* which are allowed to be created. The calling function is
* responsible for freeing this list.
*
* @param default_commodity The commodity to initially select when
* the dialog is presented.
*
* @param parent The initially selected parent account.
*
* @return A pointer to the newly created account.
*/
Account * gnc_ui_new_accounts_from_name_with_defaults (const char *name,
GList *valid_types,
const gnc_commodity * default_commodity,
Account * parent);
/*
* register a callback that get's called when the account has changed
* so significantly that you need to destroy yourself. In particular
* this is used by the ledger display to destroy ledgers when the
* account type has changed.
*/
void gnc_ui_register_account_destroy_callback (void (*cb)(Account *));
/** @} */
void gnc_account_renumber_create_dialog (GtkWidget *window, Account *account);
/** @} */
/** @} */
#endif
|