view release on metacpan or search on metacpan
bin/wxprofile view on Meta::CPAN
$self->preferences( Devel::WxProf::Preferences->new() );
Wx::InitAllImageHandlers();
# create menu bar
my $bar = Wx::MenuBar->new;
my $file = Wx::Menu->new;
$file->Append( wxID_OPEN, "Open" );
$file->Append( wxID_EXIT, "E&xit" );
my $help = Wx::Menu->new;
$help->Append( wxID_ABOUT, "&About..." );
$bar->Append( $file, "&File" );
$bar->Append( $help, "&Help" );
$self->SetMenuBar( $bar );
my $main = Wx::ScrolledWindow->new($self, @wx_defaults);
$main->SetScrollbars(20, 20, 55, 40);
my $main_sizer = Wx::BoxSizer->new(wxVERTICAL);
$main->SetSizer($main_sizer);
bin/wxprofile view on Meta::CPAN
sub _add_menus {
my( $self, %menus ) = @_;
while( my( $title, $menu ) = each %menus ) {
$self->GetMenuBar->Insert( 1, $menu, $title );
}
}
sub _remove_menus {
my( $self ) = @_;
while( $self->GetMenuBar->GetMenuCount > 2 ) {
$self->GetMenuBar->Remove( 1 )->Destroy;
}
}
sub DESTROY {
rmtree $_[0]->preferences->get_data_dir() . "/$$";
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Devel/ebug/Wx.pm view on Meta::CPAN
$self->service_manager->load_configuration;
$self->ebug->add_subscriber( 'load_program', $self, '_pgm_load' );
$self->ebug->add_subscriber( 'finished', $self, '_pgm_stop' );
$self->SetMenuBar( $self->command_manager_service->get_menu_bar );
$self->ebug->load_program( $args->{argv} );
return $self;
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Devel/hdb/html/debugger.js view on Meta::CPAN
this.templates = {
fileTab: Handlebars.compile( $('#file-tab-template').html() ),
navTab: Handlebars.compile( $('#nav-tab-template').html() ),
navPane: Handlebars.compile( $('#nav-pane-template').html() ),
currentSubAndArgs: Handlebars.compile( $('#current-sub-and-args-template').html() ),
breakpointRightClickMenu: Handlebars.compile( $('#breakpoint-right-click-template').html() ),
saveLoadBreakpointsModal: Handlebars.compile($('#save-load-breakpoints-modal-template').html() ),
subPickerTemplate: Handlebars.compile($('#sub-picker-template').html() ),
quickBreakpointModal: Handlebars.compile($('#quick-breakpoint-entry-template').html() ),
};
view all matches for this distribution
view release on metacpan or search on metacpan
# */
# ptkdb.frame2.frame1.rotext.balloon.background: green
# ptkdb.frame2.frame1.rotext.balloon.font: fixed /* Hot Variable Balloon Font */
#
#
# ptkdb.frame*font: fixed /* Menu Bar */
# ptkdb.frame.menubutton.font: fixed /* File menu */
# ptkdb.frame2.frame1.rotext.font: fixed /* Code Pane */
# ptkdb.notebook.datapage.frame1.hlist.font: fixed /* Expression Notebook Page */
#
# ptkdb.notebook.subspage*font: fixed /* Subroutine Notebook Page */
to that file and line where the breakpoint is set. Pressing the
'Delete' button will delete the breakpoint.
=back
=head1 Menus
=head2 File Menu
=over
=item About...
Causes the debugger and the target script to exit.
=back
=head2 Control Menu
=over
=item Run
to a .ptkdbrc file
=back
=head2 Data Menu
=over
=item Enter Expression
Enables or disables the use of Data::Dumper for formatting the results
of expressions in the Eval window.
=back
=head2 Stack Menu
Maintains a list of the current subroutine stack each time the
debugger stops. Selecting an item from this menu will set the text in
the code window to that particular subourtine entry point.
=head2 Bookmarks Menu
Maintains a list of bookmarks. The booksmarks are saved in ~/.ptkdb_bookmarks
=over
*/
ptkdb.frame2.frame1.rotext.balloon.background: green
ptkdb.frame2.frame1.rotext.balloon.font: fixed /* Hot Variable Balloon Font */
ptkdb.frame*font: fixed /* Menu Bar */
ptkdb.frame.menubutton.font: fixed /* File menu */
ptkdb.frame2.frame1.rotext.font: fixed /* Code Pane */
ptkdb.notebook.datapage.frame1.hlist.font: fixed /* Expression Notebook Page */
ptkdb.notebook.subspage*font: fixed /* Subroutine Notebook Page */
#
# Bind our 'quit' routine to a close command from the window manager (Alt-F4)
#
$self->{main_window}->protocol('WM_DELETE_WINDOW', sub { $self->close_ptkdb_window() ; } ) ;
# Menu bar
$self->setup_menu_bar() ;
#
# setup Frames
$mw->bind('<Control-f>' => sub { $self->FindText() ; }) ;
$mw->bind('<Control-r>' => \&Devel::ptkdb::DoRestart) ;
$mw->bind('<Alt-q>' => sub { $self->{'event'} = 'quit' } ) ;
$mw->bind('<Alt-w>' => sub { $self->close_ptkdb_window ; }) ;
$self->{file_menu_button} = $mb->Menubutton(-text => 'File',
-underline => 0,
-menuitems => $items
)->pack(-side =>, 'left',
-anchor => 'nw',
-padx => 2) ;
# Control Menu
my $runSub = sub { $DB::step_over_depth = -1 ; $self->{'event'} = 'run' } ;
my $runToSub = sub { $DB::window->{'event'} = 'run' if $DB::window->SetBreakPoint(1) ; } ;
] ; # end of control menu items
$self->{control_menu_button} = $mb->Menubutton(-text => 'Control',
-underline => 0,
-menuitems => $items,
)->pack(-side =>, 'left',
-padx => 2) ;
for( @Devel::ptkdb::return_keys ) {
$mw->bind($_ => $returnSub );
}
# Data Menu
$items = [ [ 'command' => 'Enter Expression', -accelerator => 'Alt+E', -command => sub { $self->EnterExpr() } ],
[ 'command' => 'Delete Expression', -accelerator => 'Ctrl+D', -command => sub { $self->deleteExpr() } ],
[ 'command' => 'Delete All Expressions', -command => sub {
$self->deleteAllExprs() ;
[ 'command' => 'Expression Eval Window...', -accelerator => 'F8', -command => sub { $self->setupEvalWindow() ; } ],
[ 'checkbutton' => "Use DataDumper for Eval Window?", -variable => \$Devel::ptkdb::useDataDumperForEval, @dataDumperEnableOpt ]
] ;
$self->{data_menu_button} = $mb->Menubutton(-text => 'Data', -menuitems => $items,
-underline => 0,
)->pack(-side => 'left',
-padx => 2) ;
$mw->bind('<Alt-e>' => sub { $self->EnterExpr() } ) ;
$mw->bind('<Control-d>' => sub { $self->deleteExpr() } );
$mw->bind('<F8>', sub { $self->setupEvalWindow() ; }) ;
#
# Stack menu
#
$self->{stack_menu} = $mb->Menubutton(-text => 'Stack',
-underline => 2,
)->pack(-side => 'left',
-padx => 2) ;
#
# Bookmarks menu
#
$self->{bookmarks_menu} = $mb->Menubutton(-text => 'Bookmarks',
-underline => 0,
@dataDumperEnableOpt
)->pack(-side => 'left',
-padx => 2) ;
$self->setup_bookmarks_menu() ;
#
# Windows Menu
#
my($bsub) = sub { $self->{'text'}->focus() } ;
my($csub) = sub { $self->{'quick_entry'}->focus() } ;
my($dsub) = sub { $self->{'entry'}->focus() } ;
$items = [ [ 'command' => 'Code Pane', -accelerator => 'Alt+0', -command => $bsub ],
[ 'command' => 'Quick Entry', -accelerator => 'F9', -command => $csub ],
[ 'command' => 'Expr Entry', -accelerator => 'F11', -command => $dsub ]
] ;
$mb->Menubutton(-text => 'Windows', -menuitems => $items
)->pack(-side => 'left',
-padx => 2) ;
$mw->bind('<Alt-0>', $bsub) ;
$mw->bind('<F9>', $csub) ;
} # end of FindSearch
#
# Support for the Find Text... Menu command
#
sub FindText {
my ($self) = @_ ;
my ($top, $entry, $rad1, $rad2, $chk, $regExp, $frm, $okayBtn) ;
1 ; # return true value
# ptkdb.pm,v
# Revision 1.15 2004/03/31 02:08:40 aepage
# fixes for various lacks of backwards compatiblity in Tk804
# Added a 'bug report' item to the File Menu.
#
# Revision 1.14 2003/11/20 01:59:40 aepage
# version fix
#
# Revision 1.12 2003/11/20 01:46:45 aepage
view all matches for this distribution
view release on metacpan or search on metacpan
to that file and line where the breakpoint is set. Pressing the
'Delete' button will delete the breakpoint.
=back
=head1 Menus
=head2 File Menu
=over
=item About...
Causes the debugger and the target script to exit.
=back
=head2 Control Menu
=over
=item Run
to a .ptkdbrc file
=back
=head2 Data Menu
=over
=item Enter Expression
Enables or disables the use of Data::Dumper for formatting the results
of expressions in the Eval window.
=back
=head2 Stack Menu
Maintains a list of the current subroutine stack each time the
debugger stops. Selecting an item from this menu will set the text in
the code window to that particular subourtine entry point.
=head2 Bookmarks Menu
Maintains a list of bookmarks. The booksmarks are saved in ~/.ptkdb_bookmarks
=over
* Append these resource to ~/.Xdefaults | ~/.Xresources
* and use xrdb -override ~/.Xdefaults | ~/.Xresources
* to activate them.
*/
ptkdb.frame*font: fixed /* Menu Bar */
ptkdb.frame2.frame1.rotext.font: fixed /* Code Pane */
ptkdb.toplevel.frame.textundo.font: fixed /* Eval Expression Entry Window */
ptkdb.toplevel.frame1.text.font: fixed /* Eval Expression Results Window */
ptkdb.toplevel.button.font: fixed /* "Eval..." Button */
#
# Bind our 'quit' routine to a close command from the window manager (Alt-F4)
#
$self->{main_window}->protocol('WM_DELETE_WINDOW', sub { $self->close_ptkdb_window(); } );
# Menu bar
$self->setup_menu_bar();
#
# setup Frames
# Setup our Code, Data, and breakpoints
$mw->bind('<Control-r>' => \&Devel::tcltkdb::DoRestart) ;
$mw->bind('<Alt-q>' => sub { $self->{'event'} = 'quit' } ) ;
$mw->bind('<Alt-w>' => sub { $self->close_ptkdb_window ; }) ;
# Control Menu
my $runSub = sub { $DB::step_over_depth = -1 ; $self->{'event'} = 'run' } ;
my $runToSub = sub { $DB::window->{'event'} = 'run' if $DB::window->SetBreakPoint(1) ; } ;
# return from a subroutine
for ('<Alt-u>', '<Control-Button-3>') {
$mw->bind($_ => $returnSub );
}
# Data Menu
my $items3 = [ [ 'command' => 'Enter Expression', -accelerator => 'Alt+E', -command => sub { $self->EnterExpr() } ],
[ 'command' => 'Delete Expression', -accelerator => 'Ctrl+D', -command => sub { $self->deleteExpr() } ],
[ 'command' => 'Delete All Expressions', -command => sub {
$self->deleteAllExprs() ;
$mw->bind('<Alt-e>' => sub { $self->EnterExpr() } ) ;
$mw->bind('<Control-d>' => sub { $self->deleteExpr() } );
$mw->bind('<F8>', sub { $self->setupEvalWindow() ; }) ;
#
# Windows Menu
#
my $bsub = sub { $self->{'text'}->focus() };
my $csub = sub { $self->{'quick_entry'}->focus() };
my $dsub = sub { $self->{'entry'}->focus() };
$mw->bind('<Alt-0>', $bsub);
$mw->bind('<F9>', $csub);
$mw->bind('<F11>', $dsub);
my $menu = $mw->Menu(-menuitems => [
[Cascade=>'File', -tearoff => 0, -underline=>0, -menuitems=>$items1],
[Cascade=>'Control', -tearoff=>0, -underline=>0, -menuitems => $items2],
[Cascade=>'Data', -tearoff=>0, -menuitems => $items3, -underline => 0],
[Cascade=>'Stack', -tearoff=>0, -underline => 2],
[Cascade=>'Bookmarks', -tearoff=>0, -underline=>0],
[Cascade=>'Windows', -tearoff=>0, -menuitems => $items4]
]);
#
# Stack menu
$self->{stack_menu} = $int->widget($menu->entrycget(4,'-menu'),'Menubutton');
#
# Bookmarks menu
$self->{bookmarks_menu} = $int->widget($menu->entrycget(5,'-menu'),'Menubutton');
$self->setup_bookmarks_menu();
$mw->config(-menu=>$menu);
} # end of FindSearch
#
# Support for the Find Text... Menu command
#
sub FindText {
my ($self) = @_ ;
my ($okayBtn);
view all matches for this distribution
view release on metacpan or search on metacpan
to that file and line where the breakpoint is set. Pressing the
'Delete' button will delete the breakpoint.
=back
=head1 Menus
=head2 File Menu
=over
=item About...
Causes the debugger and the target script to exit.
=back
=head2 Control Menu
=over
=item Run
to a .ptkdbrc file
=back
=head2 Data Menu
=over
=item Enter Expression
HINT: You can enter multiple expressions by separating them with commas.
=back
=head2 Stack Menu
Maintains a list of the current subroutine stack each time the
debugger stops. Selecting an item from this menu will set the text in
the code window to that particular subourtine entry point.
=head2 Bookmarks Menu
Maintains a list of bookmarks. The booksmarks are saved in ~/.ptkdb_bookmarks
=over
* Append these resource to ~/.Xdefaults | ~/.Xresources
* and use xrdb -override ~/.Xdefaults | ~/.Xresources
* to activate them.
*/
ptkdb.frame*font: fixed /* Menu Bar */
ptkdb.frame2.frame1.rotext.font: fixed /* Code Pane */
ptkdb.toplevel.frame.textundo.font: fixed /* Eval Expression Entry Window */
ptkdb.toplevel.frame1.text.font: fixed /* Eval Expression Results Window */
ptkdb.toplevel.button.font: fixed /* "Eval..." Button */
#
# setup Frames
# Setup our Code, Data, and breakpoints
$self->setup_frames();
# Menu bar
$self->setup_menu_bar();
}
#
# Check for changes to the bookmarks and quit
$mw->bind('<Control-r>' => \&Devel::tkdb::DoRestart) ;
$mw->bind('<Alt-q>' => 'set event quit' );
$mw->bind('<Alt-w>' => sub { $self->close_ptkdb_window ; });
# Control Menu
my $runSub = sub { $DB::step_over_depth = -1 ; $int->SetVar('event','run') };
my $runToSub = sub { $int->SetVar('event','run') if $DB::window->SetBreakPoint(1) ; } ;
}
# return from a subroutine
$mw->bind('<Alt-u>' => $returnSub );
# Data Menu
my $items3 = [ [ command => 'Enter Expression', -accelerator => 'Alt+E', -command => sub { $self->EnterExpr() } ],
[ command => 'Delete Expression', -accelerator => 'Ctrl+D', -command => sub { $self->deleteExpr() } ],
[ command => 'Delete All Expressions', -command => sub {
$self->deleteAllExprs() ;
$mw->bind('<Alt-e>' => sub { $self->EnterExpr() } ) ;
$mw->bind('<Control-d>' => sub { $self->deleteExpr() } );
$mw->bind('<F8>', sub { $self->setupEvalWindow() ; }) ;
#
# Windows Menu
#
my $bsub = "focus $self->{text}";
my $csub = "focus $self->{quick_entry}";
my $dsub = "focus $self->{entry}";
$mw->bind('<Alt-0>', $bsub);
$mw->bind('<F9>', $csub);
$mw->bind('<F11>', $dsub);
my $menu = $mw->Menu(-menuitems => [
[Cascade=>'File', -tearoff => 0, -underline=>0, -menuitems=>$items1],
[Cascade=>'Control', -tearoff=>0, -underline=>0, -menuitems => $items2],
[Cascade=>'Data', -tearoff=>0, -menuitems => $items3, -underline => 0],
[Cascade=>'Stack', -tearoff=>0, -underline => 2],
[Cascade=>'Bookmarks', -tearoff=>0, -underline=>0],
[Cascade=>'Windows', -tearoff=>0, -menuitems => $items4]
]);
#
# Stack menu
$self->{stack_menu} = $int->widget($menu->entrycget(4,'-menu'),'Menubutton');
#
# Bookmarks menu
$self->{bookmarks_menu} = $int->widget($menu->entrycget(5,'-menu'),'Menubutton');
$self->setup_bookmarks_menu();
$mw->config(-menu=>$menu);
} # end of FindSearch
#
# Support for the Find Text... Menu command
#
sub FindText {
my ($self) = @_ ;
my ($okayBtn);
view all matches for this distribution
view release on metacpan or search on metacpan
t/rf_connection.sample view on Meta::CPAN
getArrayData5(LearnTableDataBase, "LearnTableData", "|");
getArrayData5(CmDsStatusDataBase, "CmDsStatus", "|");
function load()
{
document.getElementById("li-cable-status").className = "cur";
document.getElementById("li_Menu_Cable").className = "cur";
if (c_status.DisplayCmConfig == "1"){
var ConfigFileTD=document.getElementById("general").insertRow(0);
var ConfigFile=ConfigFileTD.insertCell(0);
var ConfigFileName=ConfigFileTD.insertCell(1);
t/rf_connection.sample view on Meta::CPAN
</div>
<div id="leftcol">
<ul id="navleft">
<li id="li_Menu_Cable" onclick="document.location='cable-initial.asp'"><a href="cable-initial.asp"><span class="LANGS" id="Menu_Cable">Cable</span></a></li>
<li></li>
</ul>
</div>
<div id="rightsec">
<div id="topcol">
<ul id="navtop">
<li id="li-cable-systeminfo"><a href="cable-Systeminfo.asp">
<span class="LANGS" id="Menu_Cable_SystemInfo">System Info</span></a></li>
<li id="li-cable-initialization"><a href="cable-initial.asp">
<span class="LANGS" id="Menu_Cable_Initialization">Initialization</span></a></li>
<li id="li-cable-status"><a href="cable-status.asp">
<span class="LANGS" id="Menu_Cable_Status">Status</span></a></li>
<li id="li-cable-eventlog"><a href="cable-eventlog.asp">
<span class="LANGS" id="Menu_Cable_EventLog">Event log</span></a></li>
<li id="li-cable-password"><a href="cable-password.asp">
<span class="LANGS" id="Menu_Cable_Password">Password</span></a></li>
<li id="li-cable-button"></li>
<li id="li-cable-blank"></li>
</ul>
</div>
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Device/Ericsson/AccessoryMenu.pm view on Meta::CPAN
use strict;
package Device::Ericsson::AccessoryMenu;
use base 'Class::Accessor::Fast';
__PACKAGE__->mk_accessors( qw( states menu port debug callback ) );
use vars qw( $VERSION );
$VERSION = '0.8';
=head1 NAME
Device::Ericsson::AccessoryMenu - allows use of a T68i as a remote control
=head1 SYNOPSIS
my $remote = Device::Ericsson::AccessoryMenu->new;
$remote->menu( [ 'Remote' => [ pause => sub { ... },
Volume => [ up => sub { ... },
down => sub { ... },
],
],
lib/Device/Ericsson/AccessoryMenu.pm view on Meta::CPAN
$remote->control;
}
=head1 DESCRIPTION
Device::Ericsson::AccessoryMenu provides a framework for adding an
accessory menu to devices that obey the EAM set of AT commands.
This allows you to write programs with similar function to the Romeo
and Clicker applications for OSX, only instead of applescript your
actions invoke perl subroutines (which of course may invoke
lib/Device/Ericsson/AccessoryMenu.pm view on Meta::CPAN
=head2 menu
your menus and actions.
If your action is a subroutine, it will be invoked with the
Device::Ericsson::AccesoryMenu object as its first parameter.
If the action returns a scalar, this is sent on to the phone via
C<send_text>
If your action is, or returns an array reference, then it's taken as a
lib/Device/Ericsson/AccessoryMenu.pm view on Meta::CPAN
$state->handle( $line );
return;
}
if ($line =~ /EAAI/) { # top level menu
$self->enter_state( 'Menu', data => $self->menu );
return;
}
warn "control got unexpected '$line'\n";
}
view all matches for this distribution
view release on metacpan or search on metacpan
doc/devdoc/ini/megasquirt-ii.ini.ms2extra view on Meta::CPAN
frpm_table3doz = array , U16, 816, [ 12], "RPM", 1.00000, 0.00000, 0.00,15000.00, 0 ; * ( 24 bytes)
fmap_table1doz = array , S16, 864, [ 12], "%", 0.10000, 0.00000, 0.00, 400.00, 1 ; * ( 24 bytes)
fmap_table2doz = array , S16, 888, [ 12], "%", 0.10000, 0.00000, 0.00, 400.00, 1 ; * ( 24 bytes)
fmap_table3doz = array , S16, 912, [ 12], "%", 0.10000, 0.00000, 0.00, 400.00, 1 ; * ( 24 bytes)
[Menu]
;----------------------------------------------------------------------------
; There are five pre-defined values that may be used to define your menus.
; The first four allow access to the "standard" dialog boxes, the last one
; merely draws a separator (horizontal line) in the menu.
doc/devdoc/ini/megasquirt-ii.ini.ms2extra view on Meta::CPAN
;
;----------------------------------------------------------------------------
menuDialog = main
menu = "&Basic setup"
subMenu = std_injection, "Engine constants"
subMenu = secondaryLoad, "More Engine constants"
subMenu = injChars, "I&njector Characteristics"
subMenu = std_separator ;----------------------------------------------
subMenu = ignitionOptions, "Tach input/&Ignition settings", 0
subMenu = moreIgnitionOptions, "More Ignition Settings", 0, { spk_mode0 != 31 }
subMenu = advign, "Noise Filtering - EDIS", 0, { spk_mode0 < 2 }
subMenu = noisefiltering, "Noise Filtering", 0, {spk_mode0 > 1}
subMenu = NoiseFiltercurve, "Noise Filter Curve", 0, { NoiseFilterOpts & 1 }
subMenu = triggerWheel, "&Trigger Wheel Settings", 0, { (userlevel > 127) && (spk_mode0 == 4) }
subMenu = RotaryTrailingSettings, "Rotary Settings", 0, { (spk_mode0 != 31) }
subMenu = RotarySplitTbl, "Rotary Split Table", 0, { RotarySplitModeOn && (spk_mode0 != 31) }
subMenu = std_separator
subMenu = veTable1Tbl, "Fuel VE Table &1", 0,{ (feature4_0VEtblsize==0) }
subMenu = veTable1Tbldoz, "Fuel VE Table &1",0, { feature4_0VEtblsize }
subMenu = afrTable1Tbl, "A&FR Table 1", 0
subMenu = ignitionTbl1, "&Ignition Table1", 0, { (userlevel > 63) && (spk_mode0 != 31) }
subMenu = veTable2Tbl, "Fuel VE Table &2", 0, { ((dualTable && userlevel > 127) || (algorithm2 != 0)) && (feature4_0VEtblsize==0) }
subMenu = veTable2Tbldoz, "Fuel VE Table &2", 0, { ((dualTable && userlevel > 127) || (algorithm2 != 0)) && (feature4_0VEtblsize) }
subMenu = afrTable2Tbl, "AF&R Table 2", 0, { dualTable && userlevel > 127}
subMenu = ignitionTbl2, "Ignition Table2", 0, { (userlevel > 127) && (IgnAlgorithm2 !=0) && (spk_mode0 != 31)}
subMenu = std_separator ;----------------------------------------------
subMenu = generalSettings, "&General, lags"
subMenu = revlimiter, "Rev Limiter"
subMenu = revlimiterBins, "CLT-Based Rev Limit", 0, { (RevLimCLTbased & 1) }
subMenu = std_separator ;----------------------------------------------
subMenu = egoControl, "&EGO Control"
subMenu = userlevel, "Basic/Advanced user"
menu = "&Startup/idle"
subMenu = crsettings, "Cranking settings", 0
subMenu = primingPW, "Pri&ming Pulse", 0
subMenu = crankingPW, "Cra&nking Pulse", 0
subMenu = asePct, "A&SE Percentage", 0
subMenu = aseTaper, "AS&E Taper", 0
subMenu = idleControl, "I&dle Control"
subMenu = pwmidle_crank_dutyorsteps_dutycurve, "PWM idle cranking duty", 0, {IdleCtl == 4 || IdleCtl == 6}
subMenu = pwmidle_crank_dutyorsteps_stepscurve, "IAC idle cranking steps", 0, {IdleCtl == 2 || IdleCtl == 3 || IdleCtl == 5 || IdleCtl == 7 || IdleCtl == 8}
subMenu = iacBins, "I&dle Steps", 0, { IdleCtl == 2 || IdleCtl == 3 || IdleCtl == 5 }
subMenu = ipwset, "Idle &PWM Settings", 0, { IdleCtl == 4 || IdleCtl == 6 }
subMenu = ipwBins, "I&dle PWM duty Table",0, { IdleCtl == 4 }
subMenu = pwmidle_closedloop, "Closed-loop idle valve settings", 0, { IdleCtl == 6 || IdleCtl == 7 || IdleCtl == 8 }
subMenu = pwmidle_PID, "Closed-loop idle PID settings", 0, { IdleCtl == 6 || IdleCtl == 7 || IdleCtl == 8 }
subMenu = pwmidle_target_curve, "Closed-loop idle target rpm curve", 0, { IdleCtl == 6 || IdleCtl == 7 || IdleCtl == 8 }
subMenu = warmup_curve, "&Warmup Enrichment", 0
menu = "Accel Enrich", { userlevel > 127 }
subMenu = accelsettings, "Accel Enrich settings"
subMenu = std_accel, "&Acceleration Wizard", 0, { EAEOption < 1 }
subMenu = EAEBAWCcurve, "EAE Adhere-to-walls constant", 0, { EAEOption > 0 }
subMenu = EAEBSOCcurve, "EAE Sucked-from-walls constant", 0, {EAEOption > 0}
subMenu = EAEAWNcurve, "EAE Adhere-to-walls rpm correction", 0, {EAEOption > 0}
subMenu = EAESONcurve, "EAE Sucked-from-walls rpm correction", 0, {EAEOption > 0}
subMenu = EAEAWWcurve, "EAE Adhere-to-walls CLT correction", 0, {EAEOption > 0}
subMenu = EAESOWcurve, "EAE Sucked-from-walls CLT correction", 0, {EAEOption > 0}
subMenu = EAElagcomp, "EAE lag compensation settings", 0, {EAEOption == 3}
menu = "&Extended", { userlevel > 127 }
subMenu = std_port_edit, "&Output port Settings"
subMenu = barometerCorr, "Barometric Correction"
subMenu = coldAdvance, "&Cold Advance", 0, { spk_mode0 != 31 }
subMenu = matBasedRetard, "MAT-&Based Timing Retard", 0, { spk_mode0 != 31 }
subMenu = manifoldTempCorr,"MAT Correction table", 0
subMenu = MATCorrval, "MAT Correction value", 0
subMenu = flexFuelSettings,"&Flex Fuel"
subMenu = knockSettings, "&Knock Sensor Settings"
subMenu = overrun, "Over Run Fuel cut"
subMenu = staging, "Staged Injection"
subMenu = tacho, "Tacho output"
subMenu = launch, "Launch Control"
subMenu = tablesw, "Table Switching control"
subMenu = veTable3Tbl, "Fuel VE Table 3", 0, {(feature4_0VEtblsize==0) && (f5_0_tsf>0) && (userlevel > 127) }
subMenu = veTable3Tbldoz, "Fuel VE Table 3", 0, {(feature4_0VEtblsize==1) && (f5_0_tsf>0) && (userlevel > 127) }
subMenu = ignitionTbl3, "Ignition Table3", 0, {(f5_0_tss>0) && (userlevel > 127)}
subMenu = N2OSystem, "&Nitrous System"
subMenu = N2OSystem2, "&Nitrous Stage 2", 0, { N2Oopt_2 && N2Oopt_3 }
subMenu = overboost, "Overboost Protection"
subMenu = idleAdvance, "Idle Advance Settings"
subMenu = idleAdvance_curve, "Idle Advance Timing", 0, { idleadvance_on }
menu = "&Advanced", {userlevel > 191 }
subMenu = dwellSettings, "D&well battery correction", 0, { spk_mode0 != 31 }
; subMenu = amcSettings, "Automatic &Mixture Control", 0, { 1 == 0 } ; disabled
subMenu = boostctlSettings, "Boost Control Settings"
subMenu = boostctlDutys, "Boost Control Duty Table", 0, { (boost_ctl_settings_on) && (!boost_ctl_settings_cl) }
subMenu = boostctlTargs, "Boost Control Target Table", 0, { (boost_ctl_settings_on == 1) && (boost_ctl_settings_cl == 1) }
subMenu = canparams, "CAN parameters"
subMenu = std_separator ;----------------------------------------------
subMenu = experimental, "Experimental"
subMenu = debug, "Debug options"
subMenu = outputtest, "Output test mode"
subMenu = iactest, "Idle valve test"
subMenu = injseq, "Injector Sequence"
; subMenu = userdefined, "User defined menu" ; uncomment this line to enable
menuDialog = main
menu = "&Tuning"
subMenu = std_realtime, "&Realtime Display"
subMenu = std_separator ;----------------------------------------------
subMenu = std_accel, "&Acceleration Wizard", 0, { EAEOption < 1 }
;16x16
subMenu = veTable1Map, "Fuel VE Table &1",0 { (feature4_0VEtblsize==0) }
subMenu = veTable2Map, "Fuel VE Table &2", 0, { ((dualTable && (userlevel > 127)) || (algorithm2 != 0)) && (feature4_0VEtblsize==0) }
subMenu = veTable3Map, "Fuel VE Table &3", 0, { (userlevel > 127) && f5_0_tsf && (feature4_0VEtblsize==0) }
;12x12
subMenu = veTable1Mapdoz, "Fuel VE Table &1",0, { (feature4_0VEtblsize==1) }
subMenu = veTable2Mapdoz, "Fuel VE Table &2",0, { ((dualTable && (userlevel > 127)) || (algorithm2 != 0)) && (feature4_0VEtblsize==1) }
subMenu = veTable3Mapdoz, "Fuel VE Table &3", 0, { (userlevel > 127) && f5_0_tsf && (feature4_0VEtblsize==1) }
subMenu = afrTable1Map, "A&FR Table 1", 0, { egoType >= 3 }
subMenu = afrTable2Map, "AF&R Table 2", 0, { egoType >= 3 && dualTable && (userlevel > 127) }
subMenu = std_separator ;----------------------------------------------
subMenu = ignitionMap1, "&Ignition Map1", 0, {(userlevel > 63) && (spk_mode0 != 31)}
subMenu = ignitionMap2, "&Ignition Map2", 0, {(userlevel > 127) && ((IgnAlgorithm2 != 0) || f5_0_tss) && (spk_mode0 != 31)}
subMenu = RotarySplitMap, "Rotary Split Map", 0, {RotarySplitModeOn && (spk_mode0 != 31)}
subMenu = std_separator ;----------------------------------------------
subMenu = boostctlDtyMap, "Boost Control Duty Map", 0, {boost_ctl_settings_on && boost_ctl_settings_cl == 0}
subMenu = boostctlTargMap, "Boost Control Target Map", 0, {boost_ctl_settings_on && boost_ctl_settings_cl}
menuDialog = main
menu = "Tools"
subMenu = std_ms2gentherm, "Calibrate T&hermistor Tables..."
subMenu = std_ms2geno2, "Calibrate &AFR Table..."
subMenu = sensorCal, "&Sensor Calibration..."
subMenu = std_trigwiz, "Tri&gger Wizard..."
menu = "Communications"
subMenu = setbaud, "Megasquirt baud rate", 0, { userlevel > 191}
menu = "Help"
subMenu = helpGeneral, "MS-II Info"
subMenu = sensorHelp, "Sensor Calibration"
;-------------------------------------------------------------------------------
[UserDefined]
view all matches for this distribution
view release on metacpan or search on metacpan
public/index.html view on Meta::CPAN
<meta name="viewport" content = "width = 420, user-scalable = no" />
<title>WebIOPi | Raspberry Pi IoT Framework</title>
</head>
<body>
<h1>WebIOPi Main Menu</h1>
<h2><a href="app/gpio-header/index.html">GPIO Header</a></h2>
<p>Control and Debug the Raspberry Pi GPIO with a display which looks like the physical header.</p>
<h2><a href="app/gpio-list/index.html">GPIO List</a></h2>
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Dezi/Admin/UI/static/js/dezi-admin.js view on Meta::CPAN
gridbuilder(nodes[0]);
});
},
contextmenu: function (node, e) {
console.log('contextmenu');
var menu = new Ext.menu.Menu({
items: [{
text: 'Expand',
handler: function () {
node.expand();
}
view all matches for this distribution
view release on metacpan or search on metacpan
share/htdocs/diacollo.css view on Meta::CPAN
}
/*--------------------------------------------------------------
* profile data: d3 common: export menu
*/
#exportMenu {
display:none;
position: absolute;
width: 200px;
top: 24px;
right: 10px;
float: right;
z-index: 1;
}
#exportMenu li a,
#exportMenu li a :hover {
color: inherit;
background-color: inherit;
text-decoration: none;
}
view all matches for this distribution
view release on metacpan or search on metacpan
$dlg->label("label2", 5, 4, "Description");
$dlg->button("bt_ok", 11, 25, " &Ok ", mrOk);
$dlg->button("bt_cancel", 11, 39, "C&ancel", mrCancel);
Dialog::Clear();
my $host = Dialog::Menu('Edit host', 'Choose host to edit',
20, 30, 13, @hosts);
Dialog::Clear();
my $radio = Dialog::RadioList('Radio demo', 'Pick one of the options',
20, 30, 13, @radio);
view all matches for this distribution
view release on metacpan or search on metacpan
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
App::Commando
App::CommentToPod
App::CommonMarkUtils
App::CompleteCLIs
App::CompleteUtils
App::ConMenu
App::Condition
App::Conf
App::Config
App::Context
App::Control
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
CatalystX::Imports
CatalystX::InjectComponent
CatalystX::InjectModule
CatalystX::LeakChecker
CatalystX::ListFramework
CatalystX::Menu
CatalystX::MooseComponent
CatalystX::NavigationMenu
CatalystX::NavigationMenuItem
CatalystX::OAuth2
CatalystX::PSGIApp
CatalystX::PathContext
CatalystX::Plugin
CatalystX::Profile
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Cdk::Itemlist
Cdk::Label
Cdk::Marquee
Cdk::Matrix
Cdk::Mentry
Cdk::Menu
Cdk::Radio
Cdk::Scale
Cdk::Scroll
Cdk::Selection
Cdk::Slider
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Curses::Application
Curses::Field
Curses::Form
Curses::Forms
Curses::Item
Curses::Menu
Curses::Panel
Curses::Readline
Curses::Screen
Curses::Simp
Curses::UI
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Etk::Button
Etk::CheckButton
Etk::Combobox
Etk::Constants
Etk::Image
Etk::Menu
Etk::ProgressBar
Etk::RadioButton
Etk::Simple
Etk::Stock
Etk::ToggleButton
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
FBP::KeyEvent
FBP::ListBox
FBP::ListCtrl
FBP::Listbook
FBP::ListbookPage
FBP::Menu
FBP::MenuBar
FBP::MenuItem
FBP::MenuSeparator
FBP::MouseEvent
FBP::Notebook
FBP::NotebookPage
FBP::Object
FBP::Panel
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Fl_Input
Fl_Int_Input
Fl_Item
Fl_Item_Group
Fl_Light_Button
Fl_Menu_
Fl_Menu_Bar
Fl_Menu_Button
Fl_Multi_Browser
Fl_Multiline_Input
Fl_Multiline_Output
Fl_Nice_Slider
Fl_Output
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Galileo
Galileo::Admin
Galileo::Command
Galileo::DB
Galileo::File
Galileo::Menu
Galileo::Page
Galileo::Plugin
Galileo::User
Gallery
Gallery::Remote
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Gapp::Box
Gapp::Button
Gapp::ButtonBox
Gapp::CellRenderer
Gapp::CheckButton
Gapp::CheckMenuItem
Gapp::ComboBox
Gapp::Container
Gapp::DateEntry
Gapp::Dialog
Gapp::Entry
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Gapp::Gtk2
Gapp::HBox
Gapp::HButtonBox
Gapp::HPaned
Gapp::Image
Gapp::ImageMenuItem
Gapp::Label
Gapp::Layout
Gapp::ListStore
Gapp::Menu
Gapp::MenuBar
Gapp::MenuItem
Gapp::MenuShell
Gapp::MenuToolButton
Gapp::MessageDialog
Gapp::Meta
Gapp::Model
Gapp::Moose
Gapp::Notebook
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Gapp::NoticeBox
Gapp::Object
Gapp::Paned
Gapp::ProgressBar
Gapp::RadioButton
Gapp::RadioMenuItem
Gapp::RadioToolButton
Gapp::SSNEntry
Gapp::ScrolledWindow
Gapp::SeparatorMenuItem
Gapp::SeparatorToolItem
Gapp::SimpleList
Gapp::SpinButton
Gapp::StatusIcon
Gapp::Statusbar
Gapp::Table
Gapp::TableCell
Gapp::TableMap
Gapp::TearoffMenuItem
Gapp::TextBuffer
Gapp::TextTag
Gapp::TextTagTable
Gapp::TextView
Gapp::TimeEntry
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
GearmanX::Worker
GedNav
GedNav::Event
GedNav::Family
GedNav::Individual
GedNav::Menu
GedNav::Source
Gedcom
Gedcom::CGI
Gedcom::Comparison
Gedcom::Date
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Gtk2::IconView
Gtk2::ImageView
Gtk2::InfoBar
Gtk2::ItemFactory
Gtk2::LinkButton
Gtk2::MenuToolButton
Gtk2::MozEmbed
Gtk2::Net
Gtk2::Notify
Gtk2::OSXApplication
Gtk2::OffscreenWindow
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Gtk2::RcStyle
Gtk2::Recent
Gtk2::RecentAction
Gtk2::RecentChooser
Gtk2::RecentChooserDialog
Gtk2::RecentChooserMenu
Gtk2::RecentChooserWidget
Gtk2::RecentFilter
Gtk2::RecentInfo
Gtk2::RecentManager
Gtk2::ScaleButton
Gtk2::Selection
Gtk2::SeparatorToolItem
Gtk2::Sexy
Gtk2::SimpleList
Gtk2::SimpleMenu
Gtk2::SourceView
Gtk2::SourceView2
Gtk2::Spell
Gtk2::Spinner
Gtk2::StatusIcon
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
HTML::Macro
HTML::Make
HTML::Manipulator
HTML::Mason
HTML::MasonX
HTML::Menu
HTML::Merge
HTML::Meta
HTML::Microdata
HTML::Microformats
HTML::Miner
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Hobocamp::Dialog
Hobocamp::DirectorySelect
Hobocamp::EditBox
Hobocamp::FileSelect
Hobocamp::InputBox
Hobocamp::Menu
Hobocamp::MessageBox
Hobocamp::Pause
Hobocamp::RadioList
Hobocamp::Role
Hobocamp::TextBox
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
IUP::LayoutDialog
IUP::Link
IUP::List
IUP::Matrix
IUP::MatrixList
IUP::Menu
IUP::MessageDlg
IUP::MglPlot
IUP::Normalizer
IUP::PPlot
IUP::Plot
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
JPList::DB
JPList::Request
JQuery
JQuery::Accordion
JQuery::CSS
JQuery::ClickMenu
JQuery::DataTables
JQuery::Demo
JQuery::Form
JQuery::Heartbeat
JQuery::Mobile
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
JavaScript::Writer
JavaScript::XRay
Javascript
Javascript::Closure
Javascript::MD5
Javascript::Menu
Javascript::SHA1
Javascript::Select
Jcode
Jcode::CP932
Jcode::Constants
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Kephra::FakeLogger
Kephra::File
Kephra::Help
Kephra::Log
Kephra::Macro
Kephra::Menu
Kephra::Plugin
Kephra::ToolBar
Kernel
Kernel::Keyring
Kernel::Modules
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
MS::Spectrum
MSDOS
MSDOS::Attrib
MSDOS::Descript
MSIE
MSIE::MenuExt
MT
MT::Import
MTDB
MTDB::Serializer
MToken
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
NetHack::FOV
NetHack::Inventory
NetHack::Item
NetHack::ItemPool
NetHack::Logfile
NetHack::Menu
NetHack::Monster
NetHack::NAOdash
NetHack::PriceID
NetInfoExtractor
NetInfoExtractor::Interface
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
PV::Cutebutton
PV::Dialog
PV::Editbox
PV::Entryfield
PV::Listbox
PV::Menubar
PV::Mlistbox
PV::PVD
PV::Password
PV::Plainbutton
PV::Pushbutton
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Paw::Container
Paw::Filedialog
Paw::Label
Paw::Line
Paw::Listbox
Paw::Menu
Paw::Penguin
Paw::Popup
Paw::Popup_menu
Paw::Progressbar
Paw::Radiobutton
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
PomBase::Chobo
Ponfish
Ponfish::ANSIColor
Ponfish::ArticleJoiner
Ponfish::Config
Ponfish::Menu
Ponfish::News
Ponfish::TermSize
Ponfish::ThreadHandler
Ponfish::Utilities
Pony
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Prima::AbstractDocker
Prima::AbstractGrid
Prima::AbstractGridViewer
Prima::AbstractListBox
Prima::AbstractListViewer
Prima::AbstractMenu
Prima::AbstractSlider
Prima::AbstractSpinButton
Prima::AccelTable
Prima::AltSpinButton
Prima::Application
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Prima::MDI
Prima::MDIMethods
Prima::MDIOwner
Prima::MDIWindowOwner
Prima::MainWindow
Prima::Menu
Prima::MenuItem
Prima::Menus
Prima::MouseScroller
Prima::MsgBox
Prima::Notebook
Prima::Notebooks
Prima::Object
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Shell::File
Shell::Format
Shell::GetEnv
Shell::Guess
Shell::Mark
Shell::Menu
Shell::Meta
Shell::Options
Shell::POSIX
Shell::Parser
Shell::Perl
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Teradata::BTET
Teradata::SQL
Term
Term::ANSIColor
Term::ANSIColorx
Term::ANSIMenu
Term::ANSIScreen
Term::ANSITable
Term::Activity
Term::Animation
Term::App
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Term::HiliteDiff
Term::InKey
Term::Info
Term::Interact
Term::Kaka
Term::Menu
Term::Menus
Term::MultiSpinner
Term::Multiplexed
Term::Newt
Term::Pager
Term::ProgressBar
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Test_Renaming
Test_class
Tester
Testing
Texinfo
Texinfo::Menus
Text
Text2URI
Text::AAlib
Text::AI
Text::ANSI
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Tk::MakeDepend
Tk::Markdown
Tk::MarkdownTk
Tk::MatchEntry
Tk::MatchingBE
Tk::Menu
Tk::MenuDialog
Tk::MenuEntry
Tk::MenuHash
Tk::Menubar
Tk::Menubutton
Tk::Menustrip
Tk::Message
Tk::MinMaxScale
Tk::MiniCalendar
Tk::MiniScale
Tk::Mirror
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Tui::Editarea
Tui::Entryfield
Tui::Form
Tui::Label
Tui::Listbox
Tui::Menu
Tui::Menubar
Tui::Mlistbox
Tui::Passwordfield
Tui::Radiobutton
Tui::Radiogroup
Tui::Spinner
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
WWW::Mechanize
WWW::MediaTemple
WWW::Mediawiki
WWW::MelbourneBikeShare
WWW::MelissaData
WWW::MenuGrinder
WWW::Meta
WWW::Metalgate
WWW::Metaweb
WWW::Mixcloud
WWW::Mixi
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Wx::MDIClientWindow
Wx::MDIParentFrame
Wx::Media
Wx::MediaCtrl
Wx::MediaEvent
Wx::Menu
Wx::Metafile
Wx::Mini
Wx::Mozilla
Wx::MultiChoiceProperty
Wx::Object
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
Wx::XRC
Wx::XSP
Wx::ZipFSHandler
Wx::build
WxPerl
WxPerl::MenuMaker
WxPerl::MenuMap
WxPerl::ShortCuts
WxPerl::TreeCtrlMapped
X
X10
X10::ActiveHome
Notes/cpan-namespaces/cpan-namespaces-L1-L2.txt view on Meta::CPAN
YAX::Text
YN00
YN00c
YUI
YUI::Loader
YUI::MenuBar
YVDHOVE
YVDHOVE::List
YVDHOVE::String
YVDHOVE::System
YYZ
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Domain/PublicSuffix/Default.pm view on Meta::CPAN
// men : Exclusive Registry Limited
// https://www.iana.org/domains/root/db/men.html
men
// menu : Dot Menu Registry, LLC
// https://www.iana.org/domains/root/db/menu.html
menu
// merck : Merck Registry Holdings, Inc.
// https://www.iana.org/domains/root/db/merck.html
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Dpkg/Control/FieldsCore.pm view on Meta::CPAN
'installed-size' => {
name => 'Installed-Size',
allowed => ALL_PKG & ~CTRL_TMPL_PKG,
},
'installer-menu-item' => {
name => 'Installer-Menu-Item',
allowed => ALL_PKG,
},
'kernel-version' => {
name => 'Kernel-Version',
allowed => ALL_PKG,
view all matches for this distribution
view release on metacpan or search on metacpan
share/public/css/ui-lightness/jquery-ui-1.8.16.custom.css view on Meta::CPAN
/* workarounds */
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
/*
* jQuery UI Menu 1.8.16
*
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Menu#theming
*/
.ui-menu {
list-style:none;
padding: 2px;
margin: 0;
view all matches for this distribution
view release on metacpan or search on metacpan
examples/TypeA/OpenEAFDSS-TypeA.pl view on Meta::CPAN
{ -label => 'Type A', -submenu => $menuTypeA },
{ -label => 'Tools', -submenu => $menuTools },
{ -label => 'Help', -submenu => $menuHelp }
];
my($menu) = $cui->add( 'menu', 'Menubar', -menu => $menuBar);
my($statusBar) = $cui->add( 'statusbar_win', 'Window', -height => 4, -y => -1);
my($status) = $statusBar->add(
'status_text', 'TextViewer',
-text => " ^X:Menu | OpenEAFDSS Type A *example* Solution Utility",
-padtop => 2,
-width => 180,
-fg => 'white',
-bg => 'blue',
);
view all matches for this distribution
view release on metacpan or search on metacpan
libeav/data/punycode.csv view on Meta::CPAN
"meet","generic","Charleston Road Registry Inc."
"melbourne","generic","The Crown in right of the State of Victoria, represented by its Department of State Development, Business and Innovation"
"meme","generic","Charleston Road Registry Inc."
"memorial","generic","Dog Beach, LLC"
"men","generic","Exclusive Registry Limited"
"menu","generic","Dot Menu Registry LLC"
"meo","generic","Not assigned"
"merckmsd","generic","MSD Registry Holdings, Inc."
"metlife","generic","Not assigned"
"mf","country-code","Not assigned"
"mg","country-code","NIC-MG (Network Information Center Madagascar)"
view all matches for this distribution
view release on metacpan or search on metacpan
Elementary/Elementary.xs view on Meta::CPAN
elm_menu_move(Evas_Object *obj, Evas_Coord x, Evas_Coord y)
void
elm_menu_parent_set(Evas_Object *obj, Evas_Object *parent)
Elm_Menu_Item *
elm_menu_item_add(obj, parent, icon, label, func, data)
Evas_Object *obj
Elm_Menu_Item *parent
Evas_Object *icon
const char *label
SV *func
SV *data
PREINIT:
Elementary/Elementary.xs view on Meta::CPAN
RETVAL = elm_menu_item_add(obj, parent, icon, label, call_perl_sub, sc);
OUTPUT:
RETVAL
Elm_Menu_Item *
elm_menu_item_separator_add(Evas_Object *obj, Elm_Menu_Item *parent)
void
elm_menu_item_label_set(Elm_Menu_Item *item, const char *label)
const char *
elm_menu_item_label_get(Elm_Menu_Item *item)
void
elm_menu_item_icon_set(Elm_Menu_Item *item, Evas_Object *icon)
void
elm_menu_item_disabled_set(Elm_Menu_Item *item, Eina_Bool disabled)
void
elm_menu_item_del(Elm_Menu_Item *item)
Evas_Object *
elm_menu_object_get(const Elm_Menu_Item *it)
const Eina_List *
elm_menu_item_subitems_get(Elm_Menu_Item *item)
# list
# ------------------------------------------------------------------------------
Evas_Object *
view all matches for this distribution
view release on metacpan or search on metacpan
www/edgeexpress/jscript/SpryAssets/SpryMenuBar.js view on Meta::CPAN
/* SpryMenuBar.js - Revision: Spry Preview Release 1.4 */
// Copyright (c) 2006. Adobe Systems Incorporated.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
www/edgeexpress/jscript/SpryAssets/SpryMenuBar.js view on Meta::CPAN
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
/*******************************************************************************
SpryMenuBar.js
This file handles the JavaScript for Spry Menu Bar. You should have no need
to edit this file. Some highlights of the MenuBar object is that timers are
used to keep submenus from showing up until the user has hovered over the parent
menu item for some time, as well as a timer for when they leave a submenu to keep
showing that submenu until the timer fires.
*******************************************************************************/
www/edgeexpress/jscript/SpryAssets/SpryMenuBar.js view on Meta::CPAN
if(!Spry.Widget)
{
Spry.Widget = {};
}
// Constructor for Menu Bar
// element should be an ID of an unordered list (<ul> tag)
// preloadImage1 and preloadImage2 are images for the rollover state of a menu
Spry.Widget.MenuBar = function(element, opts)
{
this.init(element, opts);
};
Spry.Widget.MenuBar.prototype.init = function(element, opts)
{
this.element = this.getElement(element);
// represents the current (sub)menu we are operating on
this.currMenu = null;
var isie = (typeof document.all != 'undefined' && typeof window.opera == 'undefined' && navigator.vendor != 'KDE');
if(typeof document.getElementById == 'undefined' || (navigator.vendor == 'Apple Computer, Inc.' && typeof window.XMLHttpRequest == 'undefined') || (isie && typeof document.uniqueID == 'undefined'))
{
// bail on older unsupported browsers
www/edgeexpress/jscript/SpryAssets/SpryMenuBar.js view on Meta::CPAN
}
}
if(this.element)
{
this.currMenu = this.element;
var items = this.element.getElementsByTagName('li');
for(var i=0; i<items.length; i++)
{
this.initialize(items[i], element, isie);
if(isie)
{
this.addClassName(items[i], "MenuBarItemIE");
items[i].style.position = "static";
}
}
if(isie)
{
if(this.hasClassName(this.element, "MenuBarVertical"))
{
this.element.style.position = "relative";
}
var linkitems = this.element.getElementsByTagName('a');
for(var i=0; i<linkitems.length; i++)
www/edgeexpress/jscript/SpryAssets/SpryMenuBar.js view on Meta::CPAN
}
}
}
};
Spry.Widget.MenuBar.prototype.getElement = function(ele)
{
if (ele && typeof ele == "string")
return document.getElementById(ele);
return ele;
};
Spry.Widget.MenuBar.prototype.hasClassName = function(ele, className)
{
if (!ele || !className || !ele.className || ele.className.search(new RegExp("\\b" + className + "\\b")) == -1)
{
return false;
}
return true;
};
Spry.Widget.MenuBar.prototype.addClassName = function(ele, className)
{
if (!ele || !className || this.hasClassName(ele, className))
return;
ele.className += (ele.className ? " " : "") + className;
};
Spry.Widget.MenuBar.prototype.removeClassName = function(ele, className)
{
if (!ele || !className || !this.hasClassName(ele, className))
return;
ele.className = ele.className.replace(new RegExp("\\s*\\b" + className + "\\b", "g"), "");
};
// addEventListener for Menu Bar
// attach an event to a tag without creating obtrusive HTML code
Spry.Widget.MenuBar.prototype.addEventListener = function(element, eventType, handler, capture)
{
try
{
if (element.addEventListener)
{
www/edgeexpress/jscript/SpryAssets/SpryMenuBar.js view on Meta::CPAN
}
}
catch (e) {}
};
// createIframeLayer for Menu Bar
// creates an IFRAME underneath a menu so that it will show above form controls and ActiveX
Spry.Widget.MenuBar.prototype.createIframeLayer = function(menu)
{
var layer = document.createElement('iframe');
layer.tabIndex = '-1';
layer.src = 'javascript:false;';
menu.parentNode.appendChild(layer);
www/edgeexpress/jscript/SpryAssets/SpryMenuBar.js view on Meta::CPAN
layer.style.top = menu.offsetTop + 'px';
layer.style.width = menu.offsetWidth + 'px';
layer.style.height = menu.offsetHeight + 'px';
};
// removeIframeLayer for Menu Bar
// removes an IFRAME underneath a menu to reveal any form controls and ActiveX
Spry.Widget.MenuBar.prototype.removeIframeLayer = function(menu)
{
var layers = menu.parentNode.getElementsByTagName('iframe');
while(layers.length > 0)
{
layers[0].parentNode.removeChild(layers[0]);
}
};
// clearMenus for Menu Bar
// root is the top level unordered list (<ul> tag)
Spry.Widget.MenuBar.prototype.clearMenus = function(root)
{
var menus = root.getElementsByTagName('ul');
for(var i=0; i<menus.length; i++)
{
this.hideSubmenu(menus[i]);
}
this.removeClassName(this.element, "MenuBarActive");
};
// bubbledTextEvent for Menu Bar
// identify bubbled up text events in Safari so we can ignore them
Spry.Widget.MenuBar.prototype.bubbledTextEvent = function()
{
return (navigator.vendor == 'Apple Computer, Inc.' && (event.target == event.relatedTarget.parentNode || (event.eventPhase == 3 && event.target.parentNode == event.relatedTarget)));
};
// showSubmenu for Menu Bar
// set the proper CSS class on this menu to show it
Spry.Widget.MenuBar.prototype.showSubmenu = function(menu)
{
if(this.currMenu)
{
this.clearMenus(this.currMenu);
this.currMenu = null;
}
if(menu)
{
this.addClassName(menu, "MenuBarSubmenuVisible");
if(typeof document.all != 'undefined' && typeof window.opera == 'undefined' && navigator.vendor != 'KDE')
{
if(!this.hasClassName(this.element, "MenuBarHorizontal") || menu.parentNode.parentNode != this.element)
{
menu.style.top = menu.parentNode.offsetTop + 'px';
}
}
if(typeof document.uniqueID != "undefined")
{
this.createIframeLayer(menu);
}
}
this.addClassName(this.element, "MenuBarActive");
};
// hideSubmenu for Menu Bar
// remove the proper CSS class on this menu to hide it
Spry.Widget.MenuBar.prototype.hideSubmenu = function(menu)
{
if(menu)
{
this.removeClassName(menu, "MenuBarSubmenuVisible");
if(typeof document.all != 'undefined' && typeof window.opera == 'undefined' && navigator.vendor != 'KDE')
{
menu.style.top = '';
menu.style.left = '';
}
this.removeIframeLayer(menu);
}
};
// initialize for Menu Bar
// create event listeners for the Menu Bar widget so we can properly
// show and hide submenus
Spry.Widget.MenuBar.prototype.initialize = function(listitem, element, isie)
{
var opentime, closetime;
var link = listitem.getElementsByTagName('a')[0];
var submenus = listitem.getElementsByTagName('ul');
var menu = (submenus.length > 0 ? submenus[0] : null);
var hasSubMenu = false;
if(menu)
{
this.addClassName(link, "MenuBarItemSubmenu");
hasSubMenu = true;
}
if(!isie)
{
// define a simple function that comes standard in IE to determine
www/edgeexpress/jscript/SpryAssets/SpryMenuBar.js view on Meta::CPAN
{
// ignore bubbled text events
return;
}
clearTimeout(closetime);
if(self.currMenu == listitem)
{
self.currMenu = null;
}
// show menu highlighting
self.addClassName(link, hasSubMenu ? "MenuBarItemSubmenuHover" : "MenuBarItemHover");
if(menu && !self.hasClassName(menu, "MenuBarSubmenuVisible"))
{
opentime = window.setTimeout(function(){self.showSubmenu(menu);}, 250);
}
}, false);
www/edgeexpress/jscript/SpryAssets/SpryMenuBar.js view on Meta::CPAN
var related = (typeof e.relatedTarget != 'undefined' ? e.relatedTarget : e.toElement);
if(!listitem.contains(related))
{
clearTimeout(opentime);
self.currMenu = listitem;
// remove menu highlighting
self.removeClassName(link, hasSubMenu ? "MenuBarItemSubmenuHover" : "MenuBarItemHover");
if(menu)
{
closetime = window.setTimeout(function(){self.hideSubmenu(menu);}, 600);
}
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/EB/Wx/Shell/MainFrame.pm view on Meta::CPAN
my $i = -1;
for ( MENU_REP_BAL_ACT, MENU_REP_BAL_MGP,
MENU_REP_BAL_GRP, MENU_REP_BAL_GAC,) {
my $sub = $i++;
Wx::Event::EVT_MENU($self, $_, sub { push(@_, $sub); &OnMenuBal });
}
$i = -1;
for ( MENU_REP_RES_ACT, MENU_REP_RES_MGP,
MENU_REP_RES_GRP, MENU_REP_RES_GAC,) {
my $sub = $i++;
Wx::Event::EVT_MENU($self, $_, sub { push(@_, $sub); &OnMenuRes });
}
Wx::Event::EVT_MENU($self, MENU_REP_JNL, \&OnJournal);
Wx::Event::EVT_MENU($self, MENU_REP_UN, \&OnMenuUns);
Wx::Event::EVT_MENU($self, MENU_REP_AP, \&OnMenuAP);
Wx::Event::EVT_MENU($self, MENU_REP_AR, \&OnMenuAR);
Wx::Event::EVT_MENU($self, MENU_REP_VAT, \&OnMenuVAT);
Wx::Event::EVT_MENU($self, wxID_HELP, \&OnHelp);
Wx::Event::EVT_MENU($self, MENU_HELP_SUPPORT, \&OnSupport);
Wx::Event::EVT_MENU($self, wxID_ABOUT, \&OnAbout);
#### End of MenuBar
Wx::Event::EVT_CLOSE($self, \&OnQuit);
Wx::Event::EVT_CHAR($self->{t_input}, sub { $self->OnChar(@_) });
# Wx::Event::EVT_IDLE($self, \&OnIdle);
lib/EB/Wx/Shell/MainFrame.pm view on Meta::CPAN
sub __set_menubar {
my $self = shift;
# Unfortunately, due to an error in wxGlade sub-menu
# generation we need to do it ourselves. All...
$self->{menubar} = Wx::MenuBar->new();
my $wxglade_tmp_menu;
$wxglade_tmp_menu = Wx::Menu->new();
$wxglade_tmp_menu->Append(wxID_OPEN, _T("&Open\tCtrl-O"), "");
$wxglade_tmp_menu->AppendSeparator();
$wxglade_tmp_menu->Append(wxID_PREFERENCES, _T("Voorkeuren..."), "");
$wxglade_tmp_menu->AppendSeparator();
$wxglade_tmp_menu->Append(wxID_EXIT, _T("Afsluiten\tCtrl-Q"), "");
$self->{menubar}->Append($wxglade_tmp_menu, _T("&Bestand"));
$wxglade_tmp_menu = Wx::Menu->new();
$wxglade_tmp_menu->Append(MENU_INPUTEDIT, _T("&Edit invoerregel\tCtrl+Enter"), "");
$wxglade_tmp_menu->Append(MENU_INPUTEXEC, _T("&Uitvoeren invoerregel\tEnter"), "");
$wxglade_tmp_menu->AppendSeparator();
$wxglade_tmp_menu->Append(wxID_CLEAR, _T("Uitvoer schoonmaken"), "");
$self->{menubar}->Append($wxglade_tmp_menu, _T("B&ewerken"));
$self->{Reports} = Wx::Menu->new();
$self->{Reports}->Append(MENU_REP_TRIAL, _T("Proef- en Saldibalans"), "");
$self->{Reports_bal} = Wx::Menu->new();
$self->{Reports_bal}->Append(MENU_REP_BAL_ACT, _T("Op grootboekrekening"), "");
$self->{Reports_bal}->AppendSeparator();
$self->{Reports_bal}->Append(MENU_REP_BAL_MGP, _T("Op hoofdverdichting"), "");
$self->{Reports_bal}->Append(MENU_REP_BAL_GRP, _T("Op verdichting"), "");
$self->{Reports_bal}->Append(MENU_REP_BAL_GAC, _T("Gedetailleerd"), "");
$self->{Reports}->Append(Wx::NewId(), _T("Balans"), $self->{Reports_bal}, "");
$self->{Reports_res} = Wx::Menu->new();
$self->{Reports_res}->Append(MENU_REP_RES_ACT, _T("Op grootboekrekening"), "");
$self->{Reports_res}->AppendSeparator();
$self->{Reports_res}->Append(MENU_REP_RES_MGP, _T("Op hoofdverdichting"), "");
$self->{Reports_res}->Append(MENU_REP_RES_GRP, _T("Op verdichting"), "");
$self->{Reports_res}->Append(MENU_REP_RES_GAC, _T("Gedetailleerd"), "");
lib/EB/Wx/Shell/MainFrame.pm view on Meta::CPAN
$self->{Reports}->Append(MENU_REP_AP, _T("Crediteuren"), "");
$self->{Reports}->Append(MENU_REP_AR, _T("Debiteuren"), "");
$self->{Reports}->AppendSeparator();
$self->{Reports}->Append(MENU_REP_VAT, _T("BTW Aangifte"), "");
$self->{menubar}->Append($self->{Reports}, _T("&Rapporten"));
$wxglade_tmp_menu = Wx::Menu->new();
$wxglade_tmp_menu->Append(wxID_HELP, _T("&Hulp..."), "");
$wxglade_tmp_menu->AppendSeparator();
$wxglade_tmp_menu->Append(MENU_HELP_SUPPORT, _T("Ondersteuning..."), "");
$wxglade_tmp_menu->AppendSeparator();
$wxglade_tmp_menu->Append(wxID_ABOUT, _T("Over..."), "");
$self->{menubar}->Append($wxglade_tmp_menu, _T("&Hulp"));
$self->SetMenuBar($self->{menubar});
}
sub __set_properties {
my $self = shift;
lib/EB/Wx/Shell/MainFrame.pm view on Meta::CPAN
for ( keys( %$prefctl ) ) {
$conf->WriteInt( "preferences/$_", $self->{"prefs_$_"} );
}
}
sub OnMenuBal {
my ($self, $event, $sub) = @_;
# wxGlade: EB::Wx::Shell::MainFrame::OnMenuBal <event_handler>
if ( defined $sub && $sub >= 0 ) {
$self->_cmd("balans --verdicht --detail=$sub --gen-wxhtml\n");
}
else {
lib/EB/Wx/Shell/MainFrame.pm view on Meta::CPAN
}
# end wxGlade
}
sub OnMenuRes {
my ($self, $event, $sub) = @_;
# wxGlade: EB::Wx::Shell::MainFrame::OnMenuRes <event_handler>
if ( defined $sub && $sub >= 0 ) {
$self->_cmd("result --verdicht --detail=$sub --gen-wxhtml\n");
}
else {
lib/EB/Wx/Shell/MainFrame.pm view on Meta::CPAN
}
# end wxGlade
}
sub OnMenuAP {
my ($self, $event) = @_;
# wxGlade: EB::Wx::Shell::MainFrame::OnMenuAP <event_handler>
$self->_cmd("crediteuren --gen-wxhtml\n");
# end wxGlade
}
sub OnMenuAR {
my ($self, $event) = @_;
# wxGlade: EB::Wx::Shell::MainFrame::OnMenuAR <event_handler>
$self->_cmd("debiteuren --gen-wxhtml\n");
# end wxGlade
}
sub OnMenuVAT {
my ($self, $event) = @_;
# wxGlade: EB::Wx::Shell::MainFrame::OnMenuAR <event_handler>
$self->_cmd("btwaangifte --gen-wxhtml\n");
# end wxGlade
}
sub OnMenuUns {
my ($self, $event) = @_;
# wxGlade: EB::Wx::Shell::MainFrame::OnMenuUns <event_handler>
$self->_cmd("openstaand --gen-wxhtml\n");
# end wxGlade
}
view all matches for this distribution
view release on metacpan or search on metacpan
doc/epl.info view on Meta::CPAN
EPL version 0.7.
EPL (Emacs Perl) is a library of Lisp functions and Perl modules that
let you write Emacs extensions in Perl.
* Menu:
* Preface:: Why I'm here.
* Introduction:: Beginning with an example.
* Features:: How Perl looks to Lisp, how Lisp looks to Perl.
* Configuration:: Changing the defaults.
doc/epl.info view on Meta::CPAN
This document assumes knowledge of Emacs terms such as "the
minibuffer" and "`M-x'" (*note Running Commands by Name: (emacs)Top.).
It assumes knowledge of Perl references and nested data structures
(perlref(1)), and packages and modules (perlmod(1)).
* Menu:
* Perl Example:: An example: Find files containing regex.
* History:: EPL uses IPC, not translation or embedding.
* Emacs Lisp:: You need the Emacs Lisp Reference Manual.
* Coding Conventions:: Why the Perl examples use `&FUNCTION()'.
doc/epl.info view on Meta::CPAN
and Emacs Lisp's. Perl and Lisp are quite different, so some features
favored by one language are imperfectly or awkwardly reproduced in the
other. EPL follows Perl's philosophy of making simple things easy and
hard things possible.
* Menu:
* Data Conversion:: Working with each other's data types.
* Functions:: Calling each other's functions, `defun'.
* Control Structures:: Exceptions; `throw', `signal', `die'.
* Input/Output:: Perl's primitives are redefined in Emacs.
doc/epl.info view on Meta::CPAN
This section describes the conversions that apply to each language's
scalar and container types. For a complete description of Lisp types,
see *Note Lisp Data Types: (elisp)Lisp Data Types.
* Menu:
* Scalars:: Lisp has three scalar types.
* The Null Value:: `undef' and `()' are `nil'.
* Symbols and Globrefs:: `\*::sym' is `'sym'.
* Lists and Arrayrefs:: `["fnord"]' is `'("fnord")'.
doc/epl.info view on Meta::CPAN
File: epl.info, Node: Functions, Next: Control Structures, Prev: Data Conversion, Up: Features
Functions
=========
* Menu:
* Evaluation:: `perl-eval'.
* Ordinary Functions:: `perl-call', `use Emacs::Lisp;'.
* Pass-by-Reference:: How to inhibit data conversion.
* Commands:: Extending Emacs without Lisp, `defun'.
doc/epl.info view on Meta::CPAN
File: epl.info, Node: Caveats, Prev: Input/Output, Up: Features
Caveats
=======
* Menu:
* References Incur Overhead:: Memory management hurdles.
* Conversion Is Imperfect:: Natural mappings are not always 1-to-1.
doc/epl.info view on Meta::CPAN
File: epl.info, Node: Configuration, Next: Internals, Prev: Features, Up: Top
Configuration
*************
* Menu:
* Installation:: Lisp files, Perl modules, documentation.
* The Easy Way:: We like the defaults.
* Starting a Perl Process in Emacs:: `make-perl-interpreter'.
* Starting an Emacs Process in Perl:: `use Emacs::Lisp;'.
doc/epl.info view on Meta::CPAN
The chapter ends with a more concrete description of EPL's protocol.
This information changes with great frequency and may be completely
outdated by the time you read this.
* Menu:
* Debugging Options:: Dumping traffic to stderr or a buffer.
* Transport Layer:: Media of interprocess communication.
* Message Types:: What interpreters can say to each other.
* State Transitions:: The message stream grammar.
doc/epl.info view on Meta::CPAN
You may distribute copies of this documentation in accordance with
the *Note GNU Free Documentation License::, Version 1.1 or any later
version published by the Free Software Foundation; with no required
Invariant Sections, Front-Cover texts, or Back-Cover Texts.
* Menu:
* GNU Free Documentation License:: The GNU FDL.
File: epl.info, Node: GNU Free Documentation License, Up: Copying Conditions
doc/epl.info view on Meta::CPAN
File: epl.info, Node: Index, Prev: Copying Conditions, Up: Top
Index
*****
* Menu:
* $Emacs::EPL::debugging: Debugging Options.
* connection types: Transport Layer.
* debugging EPL: Debugging Options.
* dumping message traffic: Debugging Options.
view all matches for this distribution
view release on metacpan or search on metacpan
lisp/doc/pde.info view on Meta::CPAN
Version 1.1 or any later version published by the Free Software
Foundation; with no Invariant Sections, no Front-Cover Texts, and
no Back-Cover Texts. A copy of the license is included in the
section entitled "GNU Free Documentation License".
* Menu:
* Introduction:: A introduction to PDE
* Installation:: Installation
* pde-load:: Default configuration for PDE
* pde:: Integrate other libraries
lisp/doc/pde.info view on Meta::CPAN
Function Index
**************
[index]
* Menu:
* define-template-expander: template-simple. (line 25)
* flymake-mode: pde. (line 154)
* gud-break: perldb-ui. (line 57)
* gud-cont: perldb-ui. (line 54)
lisp/doc/pde.info view on Meta::CPAN
Variable Index
**************
[index]
* Menu:
* compile-dwim-alist: compile-dwim. (line 12)
* compile-dwim-check-tools: compile-dwim. (line 40)
* imenu-tree-auto-update: imenu-tree. (line 9)
* imenu-tree-create-buffer-function: imenu-tree. (line 21)
lisp/doc/pde.info view on Meta::CPAN
Keybinding Index
****************
[index]
* Menu:
* ! (tree-mode-collapse-other-except): tree-mode. (line 45)
* / (tree-mode-keep-match): tree-mode. (line 42)
* b (gud-break): perldb-ui. (line 57)
* c (gud-cont): perldb-ui. (line 54)
view all matches for this distribution
view release on metacpan or search on metacpan
t/htmls/regexp_test_2.html view on Meta::CPAN
dropShadows: false,
speed: 200,
delay: 800
});
});
jQuery('.menu-primary-container').mobileMenu({
defaultText: 'Menu',
className: 'menu-primary-responsive',
containerClass: 'menu-primary-responsive-container',
subMenuDash: '–'
});
jQuery(function(){
jQuery('ul.menu-secondary').superfish({
onBeforeShow: function(){ this.css('marginLeft','20px'); },
t/htmls/regexp_test_2.html view on Meta::CPAN
dropShadows: false,
speed: 200,
delay: 800
});
});
jQuery('.menu-secondary-container').mobileMenu({
defaultText: 'Navigation',
className: 'menu-secondary-responsive',
containerClass: 'menu-secondary-responsive-container',
subMenuDash: '–'
});
/* ]]> */
</script>
</body>
view all matches for this distribution
view release on metacpan or search on metacpan
Embedix::ECD::XMLv1(3pm)
=item CML2
The Configuration Menu Language is a constraint-based language
developed by Eric Raymond in an attempt to simplify the process of
configuring the Linux kernel.
http://www.tuxedo.org/~esr/kbuild/
view all matches for this distribution
view release on metacpan or search on metacpan
eg/forms/wizard/do.epl view on Meta::CPAN
[$endsub$]
[$ sub abort_button $]
[* my $r = shift ; *]
<input type="submit" name="-start" value="Zum Setup Menu" id="next_button" class="cStandardButton">
[$if $r -> {aborturl} $]<input type="submit" name="-abort" value="Setup Beenden" class="cStandardButton"> [$endif$]
[$ endsub $]
[$ sub prev_button $]
[* my $r = shift ; *]
view all matches for this distribution
view release on metacpan or search on metacpan
CNMap/cnmapwx_wdr.pl view on Meta::CPAN
}
$item0;
}
# Menu bar functions
# Bitmap functions
use Wx qw( wxNullBitmap wxBITMAP_TYPE_PNG );
view all matches for this distribution