/usr/include/gnucash/gnc-entry-quickfill.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 | /********************************************************************\
* gnc-entry-quickfill.h -- Create an entry description quick-fill *
* Copyright (C) 2010 Christian Stimming <christian@cstimming.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 *
* *
\********************************************************************/
/** @addtogroup QuickFill Auto-complete typed user input.
@{
*/
/** Similar to the @ref Account_QuickFill account name quickfill, we
* create a cached quickfill with the description of all entries.
*/
#ifndef GNC_ENTRY_QUICKFILL_H
#define GNC_ENTRY_QUICKFILL_H
#include "qof.h"
#include "app-utils/QuickFill.h"
/** Create/fetch a quickfill GncEntry description strings.
*
* Multiple, distinct quickfills, for different uses, are allowed.
* Each is identified with the 'key'. Be sure to use distinct,
* unique keys that don't conflict with other users of QofBook.
*
* This code listens to entry creation events, and automatically adds
* new entry's descriptions to the quickfill list. This code also
* listens to the entry's deletion events and removes those
* descriptions from the quickfill; however, this does not yet seem
* to fully remove them from the GUI.
*
* \param book The book
* \param key The identifier to look up the shared object in the book
*
* \param use_invoices If TRUE, this quickfill considers only the
* entries from GncInvoice objects. If FALSE, this quickfill considers
* only the entries from bills/expense vouchers. Watch out: This
* parameter must be identical each time the same key is used for
* lookup, or otherwise an assertion will fail.
*
* \return The shared QuickFill object which is created on first
* calling of this function and subsequently looked up in the book by
* using the key.
*/
QuickFill * gnc_get_shared_entry_desc_quickfill (QofBook *book,
const char * key, gboolean use_invoices);
#endif
/** @} */
/** @} */
|