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
|
/**
* \file filterPrint.h
* \brief Filter print functions.
* \copyright Copyright (C) 2006-2022 Ralf Hoppe <ralf.hoppe@dfcgen.de>
*/
#ifndef FILTER_PRINT_H
#define FILTER_PRINT_H
/* INCLUDE FILES **************************************************************/
#include "dfcgen.h"
#include "cairoPlot.h" /* PLOT_DIAG */
#include "responsePlot.h" /* RESPONSE_TYPE */
#ifdef __cplusplus
extern "C" {
#endif
/* GLOBAL TYPE DECLARATIONS ***************************************************/
/* GLOBAL CONSTANT DECLARATIONS ***********************************************/
/* GLOBAL VARIABLE DECLARATIONS ***********************************************/
/* GLOBAL MACRO DEFINITIONS ***************************************************/
/* EXPORTED FUNCTIONS *********************************************************/
/* FUNCTION *******************************************************************/
/** \brief Response plot print function.
*
* \param[in] topWidget Top widget associated with the \c GtkToolButton widget
* which has caused the \e clicked event.
* \param[in] pDiag Pointer to plot diag of associated response \p type.
* \param[in] type ::RESPONSE_TYPE which identifies what response to print.
*
******************************************************************************/
void filterPrintResponse (GtkWidget* topWidget, const PLOT_DIAG* pDiag,
RESPONSE_TYPE type);
/* FUNCTION *******************************************************************/
/** \brief Coefficients print function.
*
* \note The signature of this function was chosen in a way that it is usual
* as \e clicked event callback (when a print menuitem/button is pressed).
*
* \param[in] srcWidget \c GtkMenuItem on event \e activate or \c GtkToolButton
* on event \e clicked, which causes this call.
* \param[in] user_data Pointer to user data (unused).
*
******************************************************************************/
void filterPrintCoeffs (GtkWidget* srcWidget, gpointer user_data);
#ifdef __cplusplus
}
#endif
#endif /* FILTER_PRINT_H */
/******************************************************************************/
/* END OF FILE */
/******************************************************************************/
|