fbdbg  3.0
FreeBASIC Debugger
menu_tools.bas File Reference

Signal handlers for actions the Tools popup menu. More...

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

SUB_CDECL_ALIAS act_compinfo (BYVAL_AS_GtkAction_PTR action, BYVAL_AS_gpointer user_data)
 
SUB_CDECL_ALIAS act_help (BYVAL_AS_GtkAction_PTR action, BYVAL_AS_gpointer user_data)
 
SUB_CDECL_ALIAS act_tuto (BYVAL_AS_GtkAction_PTR action, BYVAL_AS_gpointer user_data)
 
SUB_CDECL_ALIAS act_idelaunch (BYVAL_AS_GtkAction_PTR action, BYVAL_AS_gpointer user_data)
 
SUB_CDECL_ALIAS act_quickedit (BYVAL_AS_GtkAction_PTR action, BYVAL_AS_gpointer user_data)
 
SUB_CDECL_ALIAS act_compnrun (BYVAL_AS_GtkAction_PTR action, BYVAL_AS_gpointer user_data)
 
SUB_CDECL_ALIAS act_notescopy (BYVAL_AS_GtkAction_PTR action, BYVAL_AS_gpointer user_data)
 
SUB_CDECL_ALIAS act_logshow (BYVAL_AS_GtkAction_PTR action, BYVAL_AS_gpointer user_data)
 
SUB_CDECL_ALIAS act_loghide (BYVAL_AS_GtkAction_PTR action, BYVAL_AS_gpointer user_data)
 
SUB_CDECL_ALIAS act_logdel (BYVAL_AS_GtkAction_PTR action, BYVAL_AS_gpointer user_data)
 
SUB_CDECL_ALIAS act_enumlist (BYVAL_AS_GtkAction_PTR action, BYVAL_AS_gpointer user_data)
 
SUB_CDECL_ALIAS act_processlist (BYVAL_AS_GtkAction_PTR action, BYVAL_AS_gpointer user_data)
 
SUB_CDECL_ALIAS act_dlllist (BYVAL_AS_GtkAction_PTR action, BYVAL_AS_gpointer user_data)
 
SUB_CDECL_ALIAS act_winmsg (BYVAL_AS_GtkAction_PTR action, BYVAL_AS_gpointer user_data)
 
SUB_CDECL on_hdob_entry_changed (BYVAL_AS_GtkEntry_PTR Entry, BYVAL_AS_GtkLabel_PTR Label)
 Callback to update the label in Hex/Dec/Oct/Bin dialog. More...
 
FUNCTION_CDECL_AS_gboolean on_hdob_entry_key (BYVAL_AS_GtkWidget_PTR Entry, BYVAL_AS_GdkEvent_PTR Event, BYVAL_AS_gpointer user_data)
 Callback to copy results in a different format. More...
 
SUB_CDECL_ALIAS act_bdohtrans (BYVAL_AS_GtkAction_PTR action, BYVAL_AS_gpointer user_data)
 Dialog to transform integer values. More...
 
SUB_CDECL_ALIAS act_fasttimer (BYVAL_AS_GtkAction_PTR action, BYVAL_AS_gpointer user_data)
 
SUB_CDECL_ALIAS act_jitset (BYVAL_AS_GtkAction_PTR action, BYVAL_AS_gpointer user_data)
 

Detailed Description

Signal handlers for actions the Tools popup menu.

Since
3.0

Definition in file menu_tools.bas.

Function Documentation

SUB_CDECL_ALIAS act_bdohtrans ( BYVAL_AS_GtkAction_PTR  action,
BYVAL_AS_gpointer  user_data 
)

Dialog to transform integer values.

Parameters
actionThe action that triggered the signal (id="action917")
user_data(unused)

This signal handler gets called when the user chooses the menu item 'Hex/Dec/Oct/Bin' in the tools menu. It creates a dialog with an entry. The number in the entry gets transformed to the other formats and shown in a label, updating on each entry change.

Definition at line 217 of file menu_tools.bas.

SUB_CDECL on_hdob_entry_changed ( BYVAL_AS_GtkEntry_PTR  Entry,
BYVAL_AS_GtkLabel_PTR  Label 
)

Callback to update the label in Hex/Dec/Oct/Bin dialog.

Parameters
EntryThe GtkEntry to read from
LabelThe GtkLabel to write to

This callback gets called on each change of the dialog entry. It updates the label context.

Definition at line 158 of file menu_tools.bas.

FUNCTION_CDECL_AS_gboolean on_hdob_entry_key ( BYVAL_AS_GtkWidget_PTR  Entry,
BYVAL_AS_GdkEvent_PTR  Event,
BYVAL_AS_gpointer  user_data 
)

Callback to copy results in a different format.

Parameters
EntryThe GtkEntry to read from
EventThe keyboard event
user_data(unused)
Returns
TRUE when key gets handled, FALSE otherwise

Callback that filters <crtl>[HDOB] keystrokes and transforms the entry context in a different format.

Definition at line 185 of file menu_tools.bas.