Padre
view release on metacpan or search on metacpan
lib/Padre/Wx/FBP/Debugger.pm view on Meta::CPAN
Wx::DefaultPosition,
Wx::DefaultSize,
Wx::BU_AUTODRAW | Wx::NO_BORDER,
);
$self->{display_value}->SetToolTip(
Wx::gettext("Display Value")
);
Wx::Event::EVT_BUTTON(
$self,
$self->{display_value},
sub {
shift->on_display_value_clicked(@_);
},
);
$self->{quit_debugger} = Wx::BitmapButton->new(
$self,
-1,
Wx::NullBitmap,
Wx::DefaultPosition,
Wx::DefaultSize,
Wx::BU_AUTODRAW | Wx::NO_BORDER,
);
$self->{quit_debugger}->SetToolTip(
Wx::gettext("Quit Debugger")
);
Wx::Event::EVT_BUTTON(
$self,
$self->{quit_debugger},
sub {
shift->on_quit_debugger_clicked(@_);
},
);
$self->{variables} = Wx::ListCtrl->new(
$self,
-1,
Wx::DefaultPosition,
Wx::DefaultSize,
Wx::LC_REPORT | Wx::LC_SINGLE_SEL,
);
Wx::Event::EVT_LIST_ITEM_SELECTED(
$self,
$self->{variables},
sub {
shift->_on_list_item_selected(@_);
},
);
$self->{show_local_variables} = Wx::CheckBox->new(
$self,
-1,
Wx::gettext("Show Local Variables"),
Wx::DefaultPosition,
Wx::DefaultSize,
);
$self->{show_local_variables}->SetToolTip(
Wx::gettext("y [level [vars]]\nDisplay all (or some) lexical variables (mnemonic: mY variables) in the current scope or level scopes higher. You can limit the variables that you see with vars which works exactly as it does for the V and X commands....
);
Wx::Event::EVT_CHECKBOX(
$self,
$self->{show_local_variables},
sub {
shift->on_show_local_variables_checked(@_);
},
);
$self->{show_global_variables} = Wx::CheckBox->new(
$self,
-1,
Wx::gettext("Show Global Variables"),
Wx::DefaultPosition,
Wx::DefaultSize,
);
$self->{show_global_variables}->SetToolTip(
Wx::gettext("working now with some gigery pokery to get around\nIntermitent Error, You can't FIRSTKEY with the %~ hash")
);
Wx::Event::EVT_CHECKBOX(
$self,
$self->{show_global_variables},
sub {
shift->on_show_global_variables_checked(@_);
},
);
$self->{trace} = Wx::CheckBox->new(
$self,
-1,
Wx::gettext("Trace"),
Wx::DefaultPosition,
Wx::DefaultSize,
);
$self->{trace}->SetToolTip(
Wx::gettext("t\nToggle trace mode (see also the AutoTrace option).")
);
Wx::Event::EVT_CHECKBOX(
$self,
$self->{trace},
sub {
shift->on_trace_checked(@_);
},
);
$self->{dot} = Wx::BitmapButton->new(
$self,
-1,
Wx::NullBitmap,
Wx::DefaultPosition,
Wx::DefaultSize,
Wx::BU_AUTODRAW,
);
$self->{dot}->SetToolTip(
Wx::gettext(". Return to the executed line.")
);
( run in 2.630 seconds using v1.01-cache-2.11-cpan-140bd7fdf52 )