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
|
/******************************************************************************/
/**
* \file
* Digital filter response window creation and callbacks.
*
* \author Copyright (C) 2006, 2011 Ralf Hoppe <ralf.hoppe@ieee.org>
* \version $Id: responseWin.h 106 2011-08-21 15:23:31Z ralf $
*
******************************************************************************/
#ifndef RESPONSE_WIN_H
#define RESPONSE_WIN_H
/* INCLUDE FILES **************************************************************/
#include "gui.h"
#include "responsePlot.h"
#ifdef __cplusplus
extern "C" {
#endif
/* GLOBAL TYPE DECLARATIONS ***************************************************/
/* GLOBAL CONSTANT DECLARATIONS ***********************************************/
/* GLOBAL VARIABLE DECLARATIONS ***********************************************/
/* GLOBAL MACRO DEFINITIONS ***************************************************/
/* EXPORTED FUNCTIONS *********************************************************/
/* FUNCTION *******************************************************************/
/** Toggles visibility of a filter response widget/window. This function
* should be called if a \e GtkCheckMenuItem from the \e View menu receives
* an \e activate event.
*
* \param menuitem Menu item which has received the \e activate event.
* \param user_data Pointer to response type (RESPONSE_TYPE).
*
******************************************************************************/
void responseWinMenuActivate (GtkMenuItem* menuitem, gpointer user_data);
/* FUNCTION *******************************************************************/
/** Invalidates one or all response windows for redrawing.
*
* \param type The response window which shall be redrawn. Set this
* parameter to RESPONSE_TYPE_SIZE to redraw all.
*
******************************************************************************/
void responseWinRedraw (RESPONSE_TYPE type);
#ifdef __cplusplus
}
#endif
#endif /* RESPONSE_WIN_H */
/******************************************************************************/
/* END OF FILE */
/******************************************************************************/
|