/usr/include/gnucash/dialog-commodity.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 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 | /********************************************************************
* dialog-commodity.h -- "select" and "new" commodity windows *
* (GnuCash) *
* Copyright (C) 2000 Bill Gribble <grib@billgribble.com> *
* Copyright (c) 2006 David Hampton <hampton@employees.org> *
* *
* 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 *
********************************************************************/
/** @addtogroup GUI
@{ */
/** @addtogroup GuiCommodity Commodity windows
@{ */
/** @file dialog-commodity.h
@brief "select" and "new" commodity windows
@author Copyright (C) 2000 Bill Gribble <grib@billgribble.com>
*/
#ifndef GNC_DIALOG_COMMODITY_H
#define GNC_DIALOG_COMMODITY_H
#include <gtk/gtk.h>
#include "gnc-commodity.h"
/** The dialog commodity types are used to determine what commodity
* namespaces the currency dialog will present to a user. These
* values can be safely changed from one release to the next. Note
* that if values are added, the routines in dialog-commodity.c will
* need to be updated to match.
*/
typedef enum
{
DIAG_COMM_CURRENCY, /**< Dialog box should only allow selection
of a currency. */
DIAG_COMM_NON_CURRENCY, /**< Dialog box should allow selection of
anything but a currency. */
DIAG_COMM_ALL, /**< Dialog box should allow selection of
anything. */
} dialog_commodity_mode;
typedef void (* gnc_commodity_help_callback)(void);
/** This function is used to set the action routine for the help
* button in the commodity dialog windows. If the action routine is
* unset, the help button will not be visible to the user.
*
* @param cb The function to be called when the user clicks the help
* button. */
void gnc_ui_commodity_set_help_callback (gnc_commodity_help_callback cb);
/** @name Commodity Selection */
/** @{ */
/** Ask the user to select a commodity from the existing set of
* commodities. Arguments to this function determine the message
* placed at the top of the dialog but force no restriction on the
* commodities that may be chosen. The user will also have the
* option of creating a new commodity from this dialog box.. If the
* user decides to create a new one, those provided values are used
* as default values for the new commodity.
*
* @param orig_sel A pointer to a commodity that should initially be
* selected in the dialog box.
*
* @param parent The parent window of the new dialog.
*
* @param user_message A string that will be installed in the top of
* the dialog box as an instruction to the user. If NULL, a generic
* instruction will be used.
*
* @param cusip If present, a note will be added to the user
* instruction providing this exchange specific code, and this will
* be the default exchange specific data for any newly created
* commodities.
*
* @param fullname If present, a note will be added to the user
* instruction providing this commodity's full name, and this will be
* the default fullname for any newly created commodities.
*
* @param mnemonic If present, a note will be added to the user
* instruction providing this commodity's mnemonic, and this will be
* the default mnemonic for any newly created commodities.
*
* @param mode Determines which namespaces the user may select a
* commodity from.
*
* @return The commodity selected. May or may not be a newly created
* commodity.
*/
gnc_commodity *
gnc_ui_select_commodity_modal_full(gnc_commodity * orig_sel,
GtkWidget * parent,
dialog_commodity_mode mode,
const char * user_message,
const char * cusip,
const char * fullname,
const char * mnemonic);
/** Ask the user to select a commodity from the existing set of
* commodities. The user will also have the
* option of creating a new commodity from this dialog box.. If the
* user decides to create a new one, those provided values are used
* as default values for the new commodity.
*
* @param orig_sel A pointer to a commodity that should initially be
* selected in the dialog box.
*
* @param parent The parent window for this new selection window.
*
* @param mode Determines which namespaces the user may select a
* commodity from.
*
* @return The commodity selected. May or may not be a newly created
* commodity.
*/
gnc_commodity *
gnc_ui_select_commodity_modal(gnc_commodity * orig_sel,
GtkWidget * parent,
dialog_commodity_mode mode);
/** @} */
/** @name Commodity Creation or Modification */
/** @{ */
/** Ask the user to provide the information necessary to create a new
* commodity.
*
* @param namespace If present, this will be the default namespace
* for the new commodity. This value will be ignored if it is the
* namespace for ISO 4217 currencies.
*
* @param parent The parent window of the new dialog.
*
* @param cusip If present, this will be the default exchange
* specific data for the new commodity.
*
* @param fullname If present, this will be the default fullname for
* the new commodity.
*
* @param mnemonic If present, this will be the default mnemonic for
* the new commodity.
*
* @param user_symbol If present, this will be the default user symbol
* for the new commodity.
*
* @param fraction If present, this will be the default fraction for
* the new commodity. If absent, a default of 1000 will be used.
*
* @return The newly created commodity, or NULL if the user cancelled.
*/
gnc_commodity *
gnc_ui_new_commodity_modal_full(const char * name_space,
GtkWidget * parent,
const char * cusip,
const char * fullname,
const char * mnemonic,
const char * user_symbol,
int fraction);
/** Ask the user to provide the information necessary to create a new
* commodity.
*
* @param default_namespace If present, this will be the default namespace
* for the new commodity. This value will be ignored if it is the
* namespace for ISO 4217 currencies.
*
* @param parent The parent window of the new dialog.
*
* @return The newly created commodity, or NULL if the user cancelled.
*/
gnc_commodity *
gnc_ui_new_commodity_modal(const char * default_namespace,
GtkWidget * parent);
/** Allow the user to edit the information about a commodity. For
* currencies, only the price quote information may be changed. For
* any other commodity, all aspects of the commodity information may
* be changed except that the namespace may not be changed to
* indicate a currency. The new information overwrites any old
* information, so this routine may not be used to create new
* commodities.
*
* @param commodity The commodity to edit.
*
* @param parent The parent window of the new dialog.
*
* @return The newly created commodity, or NULL if the user cancelled.
*/
gboolean
gnc_ui_edit_commodity_modal(gnc_commodity *commodity,
GtkWidget * parent);
/** @} */
/** @name Auxiliary Dialog Functions */
/** @{ */
/** Given a combo box, fill in the known commodity namespaces and then
* select one.
*
* @param cbwe The widget to populate with information.
*
* @param sel The namespace that should be initially selected when
* the combo box appears.
*
* @param mode Determines which namespaces the user may select a
* commodity
*
* @return The currently selected namespace.
*
* @note The returned string must be freed by the caller.
*/
void gnc_ui_update_namespace_picker(GtkWidget *cbwe,
const gchar *sel,
dialog_commodity_mode mode);
/** Given a combo box, return the currently selected namespaces.
*
* @param cbwe The combo box of namespaces.
*
* @return The currently selected namespace.
*
* @note This string is owned by the engine and must not be freed by
* the caller.
*/
gchar *gnc_ui_namespace_picker_ns (GtkWidget *cbwe);
/** Given a combo box, fill in all the known commodities for the
* specified namespace, and then select one.
*
* @param cbwe The widget to populate with information.
*
* @param namespace All commodities with this namespace will be added
* to the combo box.
*
* @param sel The commodity that should be initially selected when
* the combo box appears.
*/
void gnc_ui_update_commodity_picker(GtkWidget *cbwe,
const gchar *name_space,
const gchar *sel);
/** @} */
#endif
/** @} */
/** @} */
|