#include <stdlib.h>
#include "ut_string.h"
#include "ut_std_string.h"
#include "ut_assert.h"
#include "ut_debugmsg.h"
#include "xap_UnixDialogHelper.h"
#include "xap_GtkComboBoxHelpers.h"
#include "xap_App.h"
#include "xap_UnixApp.h"
#include "xap_Frame.h"
#include "ap_Dialog_Id.h"
#include "ap_Strings.h"
#include "ap_EditMethods.h"
#include "ap_Preview_Paragraph.h"
#include "ap_UnixDialog_Paragraph.h"
#include "gr_UnixCairoGraphics.h"
Defines | |
#define | WIDGET_MENU_PARENT_ID_TAG "parentmenu" |
#define | WIDGET_MENU_VALUE_TAG "menuvalue" |
#define | WIDGET_DIALOG_TAG "dialog" |
#define | WIDGET_ID_TAG "id" |
#define | CONNECT_SPIN_SIGNAL_CHANGED(w) |
#define | CONNECT_SPIN_SIGNAL_FOCUS_OUT(w) |
Functions | |
static gint | s_spin_focus_out (GtkWidget *widget, GdkEventFocus *, AP_UnixDialog_Paragraph *dlg) |
static void | s_spin_changed (GtkWidget *widget, AP_UnixDialog_Paragraph *dlg) |
static void | s_combobox_changed (GtkWidget *widget, AP_UnixDialog_Paragraph *dlg) |
static void | s_check_toggled (GtkWidget *widget, AP_UnixDialog_Paragraph *dlg) |
static gint | s_preview_draw (GtkWidget *, cairo_t *, AP_UnixDialog_Paragraph *dlg) |
#define CONNECT_SPIN_SIGNAL_CHANGED | ( | w | ) |
do { \ g_signal_connect(G_OBJECT(w), "changed", \ G_CALLBACK(s_spin_changed), \ (gpointer) this); \ } while (0)
Referenced by AP_UnixDialog_Paragraph::_connectCallbackSignals().
#define CONNECT_SPIN_SIGNAL_FOCUS_OUT | ( | w | ) |
do { \ g_signal_connect(G_OBJECT(w), "focus_out_event", \ G_CALLBACK(s_spin_focus_out), \ (gpointer) this); \ } while (0)
Referenced by AP_UnixDialog_Paragraph::_connectCallbackSignals().
#define WIDGET_DIALOG_TAG "dialog" |
#define WIDGET_ID_TAG "id" |
#define WIDGET_MENU_PARENT_ID_TAG "parentmenu" |
Referenced by AP_UnixDialog_Paragraph::event_MenuChanged().
#define WIDGET_MENU_VALUE_TAG "menuvalue" |
static void s_check_toggled | ( | GtkWidget * | widget, | |
AP_UnixDialog_Paragraph * | dlg | |||
) | [static] |
References AP_UnixDialog_Paragraph::event_CheckToggled(), and UT_ASSERT.
Referenced by AP_UnixDialog_Paragraph::_connectCallbackSignals().
static void s_combobox_changed | ( | GtkWidget * | widget, | |
AP_UnixDialog_Paragraph * | dlg | |||
) | [static] |
References AP_UnixDialog_Paragraph::event_ComboBoxChanged(), and UT_ASSERT.
Referenced by AP_UnixDialog_Paragraph::_connectCallbackSignals().
static gint s_preview_draw | ( | GtkWidget * | , | |
cairo_t * | , | |||
AP_UnixDialog_Paragraph * | dlg | |||
) | [static] |
References AP_UnixDialog_Paragraph::event_PreviewAreaExposed(), and UT_ASSERT.
Referenced by AP_UnixDialog_Paragraph::_connectCallbackSignals().
static void s_spin_changed | ( | GtkWidget * | widget, | |
AP_UnixDialog_Paragraph * | dlg | |||
) | [static] |
References AP_UnixDialog_Paragraph::event_SpinChanged().
static gint s_spin_focus_out | ( | GtkWidget * | widget, | |
GdkEventFocus * | , | |||
AP_UnixDialog_Paragraph * | dlg | |||
) | [static] |
References AP_UnixDialog_Paragraph::event_SpinFocusOut().