GnuCash
5.6-150-g038405b370+
|
Print Checks Dialog. More...
#include <config.h>
#include <gtk/gtk.h>
#include <glib/gi18n.h>
#include <stdio.h>
#include <locale.h>
#include <math.h>
#include "qof.h"
#include "gnc-date.h"
#include "gnc-prefs.h"
#include "gnc-numeric.h"
#include "gnc-plugin-page-register.h"
#include "dialog-print-check.h"
#include "dialog-utils.h"
#include "print-session.h"
#include "gnc-ui.h"
#include "gnc-date-format.h"
#include "gnc-ui-util.h"
#include "gnc-path.h"
#include "gnc-filepath-utils.h"
#include "gnc-gkeyfile-utils.h"
#include "gnc-engine.h"
#include "engine-helpers.h"
#include "Split.h"
#include "Transaction.h"
Go to the source code of this file.
Data Structures | |
struct | check_format_t |
struct | PrintCheckDialog |
struct | _trans_amount |
Enumerations | |
enum | format_combo_col { COL_NAME = 0, COL_DATA, COL_SEP } |
enum | CheckItemType { NONE, PAYEE, DATE, NOTES, CHECK_NUMBER, MEMO, ACTION, AMOUNT_NUMBER, AMOUNT_WORDS, TEXT, ADDRESS, DATE_FORMAT, SPLITS_AMOUNT, SPLITS_MEMO, SPLITS_ACCOUNT, PICTURE } |
Functions | |
void | gnc_ui_print_check_response_cb (GtkDialog *dialog, gint response, PrintCheckDialog *pcd) |
void | gnc_print_check_format_changed (GtkComboBox *widget, PrintCheckDialog *pcd) |
void | gnc_print_check_position_changed (GtkComboBox *widget, PrintCheckDialog *pcd) |
void | gnc_print_check_save_button_clicked (GtkButton *button, PrintCheckDialog *pcd) |
void | gnc_check_format_title_changed (GtkEditable *editable, GtkWidget *ok_button) |
gchar * | get_check_address (PrintCheckDialog *pcd) |
FROM_STRING_DEC (CheckItemType, ENUM_CHECK_ITEM_TYPE) | |
void | gnc_ui_print_check_dialog_create (GtkWidget *parent, GList *splits, Account *account) |
Split printing functions | |
gchar * | get_check_splits_amount (PrintCheckDialog *pcd) |
gchar * | get_check_splits_memo (PrintCheckDialog *pcd) |
gchar * | get_check_splits_account (PrintCheckDialog *pcd) |
Variables | |
check_item_t | |
Print Checks Dialog.
Definition in file dialog-print-check.c.
#define ENUM_CHECK_ITEM_TYPE | ( | _ | ) |
Definition at line 154 of file dialog-print-check.c.
enum format_combo_col |
Definition at line 122 of file dialog-print-check.c.
FROM_STRING_DEC | ( | CheckItemType | , |
ENUM_CHECK_ITEM_TYPE | |||
) |
< What type of item is this?
< The x/y coordinates where this item should be printed. The origin for these coordinates is determined by the print system used.
< Optional. The width and height of this item. Text will be clipped to this size. Pictures will be shrunk to fit if necessary.
< The filename for picture items. Otherwise unused.
< The text to be displayed (for text based items.) Otherwise unused.
< The font to use for text based items. This overrides any font in the check format. Unused for non-text items.
< Optional. Overrides blocking in the check format. Default is no blocking characters are written. Unused for non-text items.
< Optional. Print date format. Only applies to DATE items. Default is no format is written.
< The alignment of a text based item. Only used for text based items when a width is specified.
Definition at line 174 of file dialog-print-check.c.