view release on metacpan or search on metacpan
examples/Utr22c.clb view on Meta::CPAN
H="testutr22"
^!Clip InitDir
^!Set %testseq%=^?{Test Sequence=^%testseq%}
^!Menu File/Save
; ^!Prompt "^%MyAppDir%testutr22.exe -o "^%MyAppDir%testutr22.lst" -bu "^$GetDocName$" "^%testseq%""
^!Set %testresult%=^$GetOutput("^%MyAppDir%testutr22.exe -o "^%MyAppDir%testutr22.lst" -bu "^$GetDocName$" "^%testseq%"")$
^!IfFileExist "^%MyAppDir%testutr22.lst" NEXT ELSE failed
^!Open "^%MyAppDir%testutr22.lst" /R
^!Goto END
examples/Utr22c.clb view on Meta::CPAN
H="Web page"
^!Clip InitDir
^!Menu File/Save
^!Url ^$FileToUrl(^$GetDocName$)$
H="Compile TEC"
^!Clip InitDir
^!Set %fname%=^$ChangeFileExt(^$GetDocName$;"tec")$
^!Set %outfile%=^?{(T=S;F="TEC Files(*.tec)|*.tec")Save As=^%fname%}
^!Menu File/Save
;^!Prompt ^%MyAppDir%utr22tec.exe "^$GetDocName$" "^%outfile%"
^!Set %output%=^$GetOutput(^%MyAppDir%utr22tec.exe "^$GetDocName$" "^%outfile%")$
^!If ^%output% = "" quiet
^!Toolbar New Document
^%output%
view all matches for this distribution
view release on metacpan or search on metacpan
etk_test/etk_test.pl view on Meta::CPAN
frame => "adv",
cb => \&tree_window_show
},
menu => {
label => "Menu",
frame => "adv",
cb => \&menu_window_show
},
combobox => {
etk_test/etk_test.pl view on Meta::CPAN
}
sub menu_window_show
{
my $win = Etk::Window->new();
$win->TitleSet("Etk-Perl Menu Test");
$win->SizeRequestSet(325, 240);
my $box = Etk::VBox->new(0, 0);
my $menubar = Etk::Menu::Bar->new();
$box->Append($menubar);
my $toolbar = Etk::Toolbar->new();
$box->Append($toolbar);
etk_test/etk_test.pl view on Meta::CPAN
my $statusbar = Etk::StatusBar->new();
$box->Append($statusbar, BoxEnd);
my $menu_item = _menu_test_item_new("File", $menubar, $statusbar);
my $menu = Etk::Menu->new();
$menu_item->SubmenuSet($menu);
_menu_test_stock_item_new("Open", DocumentOpen, $menu, $statusbar);
_menu_test_stock_item_new("Save", DocumentSave, $menu, $statusbar);
$menu_item = _menu_test_item_new("Edit", $menubar, $statusbar);
$menu = Etk::Menu->new();
$menu_item->SubmenuSet($menu);
_menu_test_stock_item_new("Cut", EditCut, $menu, $statusbar);
_menu_test_stock_item_new("Copy", EditCopy, $menu, $statusbar);
_menu_test_stock_item_new("Paste", EditPaste, $menu, $statusbar);
$menu_item = _menu_test_item_new("Help", $menubar, $statusbar);
$menu = Etk::Menu->new();
$menu_item->SubmenuSet($menu);
_menu_test_item_new("About", $menu, $statusbar);
$menu = Etk::Menu->new();
$win->SignalConnect("mouse-down", sub { $menu->Popup() });
_menu_test_stock_item_new("Open", DocumentOpen, $menu, $statusbar);
_menu_test_stock_item_new("Save", DocumentSave, $menu, $statusbar);
_menu_seperator_new($menu);
_menu_test_stock_item_new("Cut", EditCut, $menu, $statusbar);
_menu_test_stock_item_new("Copy", EditCopy, $menu, $statusbar);
_menu_test_stock_item_new("Paste", EditPaste, $menu, $statusbar);
_menu_seperator_new($menu);
$menu_item = _menu_test_item_new("Menu Item Test", $menu, $statusbar);
# Sub menu 1
my $submenu1 = Etk::Menu->new();
$menu_item->SubmenuSet($submenu1);
_menu_test_stock_item_new("Item with image", DocumentSave,
$submenu1, $statusbar);
etk_test/etk_test.pl view on Meta::CPAN
my $radio = _menu_test_radio_item_new("Radio 1", undef, $submenu1, $statusbar);
_menu_test_radio_item_new("Radio 2", $radio, $submenu1, $statusbar);
_menu_test_radio_item_new("Radio 3", $radio, $submenu1, $statusbar);
# Sub menu 2
my $submenu2 = Etk::Menu->new();
$menu_item->SubmenuSet($submenu2);
_menu_test_item_new("Child Menu Test", $submenu2, $statusbar);
$win->Add($box);
$win->ShowAll();
}
sub _menu_test_item_new
{
my ($label, $menubar, $statusbar) = @_;
my $menu_item = Etk::Menu::Item->new($label);
$menubar->Append($menu_item);
$menu_item->SignalConnect("selected",
sub { $statusbar->MessagePush($menu_item->LabelGet(), 0) });
$menu_item->SignalConnect("unselected",
sub { $statusbar->MessagePop(0) });
etk_test/etk_test.pl view on Meta::CPAN
sub _menu_test_stock_item_new
{
my ($label, $stockid, $menubar, $statusbar) = @_;
my $menu_item = Etk::Menu::Item::Image->new($label);
my $image = Etk::Image->new($stockid, SizeSmall);
$menu_item->Set($image);
$menubar->Append($menu_item);
$menu_item->SignalConnect("selected",
sub { $statusbar->MessagePush($menu_item->LabelGet(), 0) });
etk_test/etk_test.pl view on Meta::CPAN
sub _menu_test_check_item_new
{
my ($label, $menubar, $statusbar) = @_;
my $menu_item = Etk::Menu::Item::Check->new($label);
$menubar->Append($menu_item);
$menu_item->SignalConnect("selected",
sub { $statusbar->MessagePush($menu_item->LabelGet(), 0) });
$menu_item->SignalConnect("unselected",
sub { $statusbar->MessagePop(0) });
etk_test/etk_test.pl view on Meta::CPAN
my ($label, $radio, $menubar, $statusbar) = @_;
my $menu_item;
if ($radio)
{
$menu_item = Etk::Menu::Item::Radio->new($label, $radio);
}
else
{
$menu_item = Etk::Menu::Item::Radio->new($label);
}
$menubar->Append($menu_item);
$menu_item->SignalConnect("selected",
sub { $statusbar->MessagePush($menu_item->LabelGet(), 0) });
$menu_item->SignalConnect("unselected",
etk_test/etk_test.pl view on Meta::CPAN
}
sub _menu_seperator_new
{
my ($menubar) = @_;
my $menu_item = Etk::Menu::Item::Separator->new();
$menubar->Append($menu_item);
return $menu_item;
}
sub __combobox_entry_populate
view all matches for this distribution
view release on metacpan or search on metacpan
demo/perlqt.t view on Meta::CPAN
});
my $w = MyMainWindow->new;
my $mb = $w->menuBar;
my $file = Qt::PopupMenu->new;
$file->insertItem("Open...", $w, 'open_file()');
$file->insertItem("Quit", $w, 'quit()');
$mb->insertItem("File", $file);
my $at = int rand 1000;
view all matches for this distribution
view release on metacpan or search on metacpan
examples/protection.pl view on Meta::CPAN
$worksheet->write_formula( 'B2', '=1+2', $unlocked, 3 );
$worksheet->write( 'A3', "Cell B3 is hidden. The formula isn't visible." );
$worksheet->write_formula( 'B3', '=1+2', $hidden, 3 );
$worksheet->write( 'A5', 'Use Menu->Tools->Protection->Unprotect Sheet' );
$worksheet->write( 'A6', 'to remove the worksheet protection.' );
$workbook->close();
__END__
view all matches for this distribution
view release on metacpan or search on metacpan
public/assets/js/bootstrap.js view on Meta::CPAN
$parent = $(selector)
$parent.length || ($parent = $this.parent())
isActive = $parent.hasClass('open')
clearMenus()
!isActive && $parent.toggleClass('open')
return false
}
}
function clearMenus() {
$(toggle).parent().removeClass('open')
}
/* DROPDOWN PLUGIN DEFINITION
public/assets/js/bootstrap.js view on Meta::CPAN
/* APPLY TO STANDARD DROPDOWN ELEMENTS
* =================================== */
$(function () {
$('html').on('click.dropdown.data-api', clearMenus)
$('body').on('click.dropdown.data-api', toggle, Dropdown.prototype.toggle)
})
}( window.jQuery );
/* =============================================================
view all matches for this distribution
view release on metacpan or search on metacpan
is($one->menu, 0, "no menu");
ok(!Fake::Exporter2->can('IMPORTER_MENU'), "No IMPORTER_MENU");
$one->inject_menu;
is($one->menu, 1, "Menu injected");
like(
{Fake::Exporter2->IMPORTER_MENU},
{
export => [],
view all matches for this distribution
view release on metacpan or search on metacpan
scripts/mmkrpbp view on Meta::CPAN
you don't include the C<-I> option -- F<mmkrpbp> will then switch to
interactive mode so that you can finish entering arguments at the prompts.
=head1 USAGE::More
=head2 Menus
F<mmkrpbp> is, for all practical purposes, a clone of F<modulemaker>, the
command-line utility associated with F<ExtUtils::ModuleMaker>. For
description of F<mmkrpbp> menus and features currently supported by
command-line options, please see the documentation for F<modulemaker>.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/ExtUtils/nvcc.pm view on Meta::CPAN
reverse-engineered, I don't know what is.
=head2 Visual Studio Command Prompt
When you install Visual Studio (as of Visual Studio 2010), you will get a Start
Menu entry for Visual Studio Command Prompt. You should run your build processes
(i.e. cpan) from one of these command prompts. Among other things, this command
prompt sets all of the necessary environment variables to ensure that the
compiler can be found, and that the compiler can find all the necessary
libraries. This may or may not be necessary for using nvcc directly, but it is
certainly is necessary for the rest of the Perl toolchain to find cl.exe and
view all matches for this distribution
view release on metacpan or search on metacpan
lib/FAQ/OMatic/Language_de_iso8859_1.pm view on Meta::CPAN
msgstr "Neues Config-File erzeugt."
msgid "The idfile exists."
msgstr "Das ID-File ist vorhanden."
msgid "Configuration Main Menu (install module)"
msgstr "Konfigurationsmenü"
msgid "Go To Install/Configuration Page"
msgstr "Zum Konfigurationsmenü"
view all matches for this distribution
view release on metacpan or search on metacpan
lib/FBP/Perl.pm view on Meta::CPAN
OnCombobox => [ 2, 'EVT_COMBOBOX' ],
OnListBox => [ 2, 'EVT_LISTBOX' ],
OnListBoxDClick => [ 2, 'EVT_LISTBOX_DCLICK' ],
OnText => [ 2, 'EVT_TEXT' ],
OnTextEnter => [ 2, 'EVT_TEXT_ENTER' ],
OnMenu => [ 2, 'EVT_MENU' ],
# wxColourPickerCtrl
OnColourChanged => [ 2, 'EVT_COLOURPICKER_CHANGED' ],
# wxCloseEvent
lib/FBP/Perl.pm view on Meta::CPAN
OnListColRightClick => [ 2, 'EVT_LIST_COL_RIGHT_CLICK' ],
OnListColBeginDrag => [ 2, 'EVT_LIST_COL_BEGIN_DRAG' ],
OnListColDragging => [ 2, 'EVT_LIST_COL_DRAGGING' ],
OnListColEndDrag => [ 2, 'EVT_LIST_COL_END_DRAG' ],
# wxMenuEvent
OnMenuSelection => [ 2, 'EVT_MENU' ],
# wxMouseEvent
OnEnterWindow => [ 1, 'EVT_ENTER_WINDOW' ],
OnLeaveWindow => [ 1, 'EVT_LEAVE_WINDOW' ],
OnLeftDClick => [ 1, 'EVT_LEFT_DCLICK' ],
lib/FBP/Perl.pm view on Meta::CPAN
OnTreeItemRightClick => [ 2, 'EVT_TREE_ITEM_RIGHT_CLICK' ],
OnTreeItemMiddleClick => [ 2, 'EVT_TREE_ITEM_MIDDLE_CLICK' ],
OnTreeSelChanged => [ 2, 'EVT_TREE_SEL_CHANGED' ],
OnTreeSelChanging => [ 2, 'EVT_TREE_SEL_CHANGING' ],
OnTreeKeyDown => [ 2, 'EVT_TREE_KEY_DOWN' ],
OnTreeItemMenu => [ 2, 'EVT_TREE_ITEM_MENU' ],
);
# Event Connect Binding Table
our %CONNECT = (
# Common low level events
lib/FBP/Perl.pm view on Meta::CPAN
# OnCombobox => 'wxEVT_COMMAND_COMBOBOX_SELECTED',
# OnListBox => 'wxEVT_COMMAND_LISTBOX_SELECTED',
# OnListBoxDClick => 'wxEVT_COMMAND_LISTBOX_DOUBLECLICKED',
# OnText => 'wxEVT_COMMAND_TEXT_UPDATED',
# OnTextEnter => 'wxEVT_COMMAND_TEXT_ENTER',
# OnMenu => 'wxEVT_COMMAND_MENU_SELECTED',
# # wxColourPickerCtrl
# OnColourChanged => 'wxEVT_COLOURPICKER_CHANGED',
# # wxCloseEvent
lib/FBP/Perl.pm view on Meta::CPAN
my $self = shift;
my $form = shift;
my @objects = (
$form,
$form->find( isa => 'FBP::Window' ),
$form->find( isa => 'FBP::MenuItem' ),
$form->find( isa => 'FBP::StdDialogButtonSizer' ),
);
my %seen = ();
my %done = ();
my @methods = ();
lib/FBP/Perl.pm view on Meta::CPAN
}
} elsif ( $window->isa('FBP::ListBox') ) {
$lines = $self->listbox_create($window, $parent);
} elsif ( $window->isa('FBP::ListCtrl') ) {
$lines = $self->listctrl_create($window, $parent);
} elsif ( $window->isa('FBP::MenuBar') ) {
$lines = $self->menubar_create($window, $parent);
} elsif ( $window->isa('FBP::Notebook') ) {
$lines = $self->notebook_create($window, $parent);
} elsif ( $window->isa('FBP::Panel') ) {
$lines = $self->panel_create($window, $parent);
lib/FBP/Perl.pm view on Meta::CPAN
my $scope = $self->object_scope($menu);
my $variable = $self->object_variable($menu);
# Generate our children
my @lines = (
"$scope$variable = Wx::Menu->new;",
"",
);
foreach my $child ( @{$menu->children} ) {
if ( $child->isa('FBP::Menu') ) {
push @lines, @{ $self->menu_create($child, $menu) };
} elsif ( $child->isa('FBP::MenuItem') ) {
push @lines, @{ $self->menuitem_create($child, $menu) };
} else {
next;
}
push @lines, "";
}
# Fill the menu
foreach my $child ( @{$menu->children} ) {
if ( $child->isa('FBP::Menu') ) {
push @lines, $self->nested(
"$variable->Append(",
$self->object_variable($_) . ',',
$self->object_label($_) . ',',
");",
);
} elsif ( $child->isa('FBP::MenuItem') ) {
push @lines, "$variable->Append( "
. $self->object_variable($child)
. " );";
} elsif ( $child->isa('FBP::MenuSeparator') ) {
push @lines, "$variable->AppendSeparator;";
}
}
return \@lines;
lib/FBP/Perl.pm view on Meta::CPAN
)
} @{$window->children};
return [
( map { @$_, "" } @children ),
"$scope$variable = Wx::MenuBar->new($style);",
"",
@append,
"",
"$parent->SetMenuBar( $variable );",
];
}
sub menuitem_create {
my $self = shift;
lib/FBP/Perl.pm view on Meta::CPAN
my $help = $self->text( $menu->help );
my $kind = $self->wx( $menu->kind );
# Create the menu item
my $lines = $self->nested(
"$scope$variable = Wx::MenuItem->new(",
"$parent,",
"$id,",
"$label,",
"$help,",
"$kind,",
view all matches for this distribution
view release on metacpan or search on metacpan
use FBP::HyperlinkCtrl ();
use FBP::Listbook ();
use FBP::ListbookPage ();
use FBP::ListBox ();
use FBP::ListCtrl ();
use FBP::Menu ();
use FBP::MenuBar ();
use FBP::MenuItem ();
use FBP::MenuSeparator ();
use FBP::Notebook ();
use FBP::NotebookPage ();
use FBP::Panel ();
use FBP::RadioBox ();
use FBP::RadioButton ();
view all matches for this distribution
view release on metacpan or search on metacpan
sub FL_Page_Up {0xff55;}
sub FL_Page_Down {0xff56;}
sub FL_End {0xff57;}
sub FL_Print {0xff61;}
sub FL_Insert {0xff63;}
sub FL_Menu {0xff67;}
sub FL_Num_Lock {0xff7f;}
sub FL_KP {0xff80;}
sub FL_KP_Enter {0xff8d;}
sub FL_KP_Last {0xffbd;}
sub FL_F {0xffbd;}
FL_Page_Up
FL_Page_Down
FL_End
FL_Print
FL_Insert
FL_Menu
FL_Num_Lock
FL_KP
FL_KP_Enter
FL_KP_Last
FL_F
package Fl_Tile;
use strict;
use vars qw(@ISA);
@ISA = qw( Fl_Group );
package Fl_Menu_;
use strict;
use vars qw(@ISA);
@ISA = qw( Fl_Group );
package Fl_Item_Group;
use strict;
use vars qw(@ISA);
@ISA = qw( Fl_Menu_ );
package Fl_Menu_Bar;
use strict;
use vars qw(@ISA);
@ISA = qw( Fl_Menu_ );
package Fl_Menu_Button;
use strict;
use vars qw(@ISA);
@ISA = qw( Fl_Menu_ );
sub NORMAL {224;}
sub POPUP1 {225;}
sub POPUP2 {226;}
sub POPUP12 {227;}
sub POPUP123 {231;}
package Fl_Choice;
use strict;
use vars qw(@ISA);
@ISA = qw( Fl_Menu_ );
package Fl_Browser;
use strict;
use vars qw(@ISA);
@ISA = qw( Fl_Menu_ );
sub HORIZONTAL {1;}
sub VERTICAL {2;}
sub BOTH {3;}
sub ALWAYS_ON {4;}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Ham/Device/FT817COMM.pm view on Meta::CPAN
=item getExtmenu()
$extmenu = $FT817->getExtmenu();
MENU ITEM # 52 - Shows the Extended Menu Setting ON /OFF
=item getFasttuning()
$fasttune = $FT817->getFasttuning();
view all matches for this distribution
view release on metacpan or search on metacpan
lib/FWS/V2.pm view on Meta::CPAN
$self->{securityHash}->{showQueue}{note} = 'Access to view email sending queue, and message history.';
$self->{securityHash}->{showSEO}{title} = 'SEO Controls';
$self->{securityHash}->{showSEO}{note} = 'Access to change SEO Defaults, content and page properties.';
$self->{securityHash}->{showSiteSettings}{title} = 'Site Settings Menu';
$self->{securityHash}->{showSiteSettings}{note} = 'Generic site settings and 3rd party connector configurations.';
$self->{securityHash}->{showSiteUsers}{title} = 'User Account Access';
$self->{securityHash}->{showSiteUsers}{note} = 'Access to create, delete and modify high level information for site accounts and groups.';
view all matches for this distribution
view release on metacpan or search on metacpan
t/html/fablab61.html view on Meta::CPAN
</ul>
</div>
<script type="text/javascript">
$('ul.nav-navigation').flexMenu({
showOnHover: false
})
</script>
<div class="nav-filter-wrapper">
<ul class="nav nav-filter">
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Farabi/files/public/assets/codemirror/lib/codemirror.js view on Meta::CPAN
// True when shift is held down.
d.shift = false;
// Used to track whether anything happened since the context menu
// was opened.
d.selForContextMenu = null;
}
// STATE UPDATES
// Used to get the editor into a consistent state again when options change.
lib/Farabi/files/public/assets/codemirror/lib/codemirror.js view on Meta::CPAN
var withOp = !cm.curOp;
if (withOp) startOperation(cm);
cm.display.shift = false;
if (text.charCodeAt(0) == 0x200b && doc.sel == cm.display.selForContextMenu && !prevInput)
prevInput = "\u200b";
// Find the part of the input that is actually new
var same = 0, l = Math.min(prevInput.length, text.length);
while (same < l && prevInput.charCodeAt(same) == text.charCodeAt(same)) ++same;
var inserted = text.slice(same), textLines = splitLines(inserted);
lib/Farabi/files/public/assets/codemirror/lib/codemirror.js view on Meta::CPAN
if (!eventInWidget(d, e)) e_preventDefault(e);
});
// Some browsers fire contextmenu *after* opening the menu, at
// which point we can't mess with it anymore. Context menu is
// handled in onMouseDown for these browsers.
if (!captureRightClick) on(d.scroller, "contextmenu", function(e) {onContextMenu(cm, e);});
// Sync scrolling between fake scrollbars and real scrollable
// area, ensure viewport is updated when scrolling.
on(d.scroller, "scroll", function() {
if (d.scroller.clientHeight) {
lib/Farabi/files/public/assets/codemirror/lib/codemirror.js view on Meta::CPAN
if (start) extendSelection(cm.doc, start);
setTimeout(bind(focusInput, cm), 20);
e_preventDefault(e);
break;
case 3:
if (captureRightClick) onContextMenu(cm, e);
break;
}
}
var lastClick, lastDoubleClick;
lib/Farabi/files/public/assets/codemirror/lib/codemirror.js view on Meta::CPAN
cm.state.focused = true;
addClass(cm.display.wrapper, "CodeMirror-focused");
// The prevInput test prevents this from firing when a context
// menu is closed (since the resetInput would kill the
// select-all detection hack)
if (!cm.curOp && cm.display.selForContextMenu != cm.doc.sel) {
resetInput(cm);
if (webkit) setTimeout(bind(resetInput, cm, true), 0); // Issue #1730
}
}
slowPoll(cm);
lib/Farabi/files/public/assets/codemirror/lib/codemirror.js view on Meta::CPAN
// CONTEXT MENU HANDLING
// To make the context menu work, we need to briefly unhide the
// textarea (making it as unobtrusive as possible) to let the
// right-click take effect on it.
function onContextMenu(cm, e) {
if (signalDOMEvent(cm, e, "contextmenu")) return;
var display = cm.display;
if (eventInWidget(display, e) || contextMenuInGutter(cm, e)) return;
var pos = posFromMouse(cm, e), scrollPos = display.scroller.scrollTop;
if (!pos || presto) return; // Opera is difficult.
// Reset the current text selection only if the click is done outside of the selection
// and 'resetSelectionOnContextMenu' option is true.
var reset = cm.options.resetSelectionOnContextMenu;
if (reset && cm.doc.sel.contains(pos) == -1)
operation(cm, setSelection)(cm.doc, simpleSelection(pos), sel_dontScroll);
var oldCSS = display.input.style.cssText;
display.inputDiv.style.position = "absolute";
lib/Farabi/files/public/assets/codemirror/lib/codemirror.js view on Meta::CPAN
"; outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);";
focusInput(cm);
resetInput(cm);
// Adds "Select all" to context menu in FF
if (!cm.somethingSelected()) display.input.value = display.prevInput = " ";
display.selForContextMenu = cm.doc.sel;
clearTimeout(display.detectingSelectAll);
// Select-all will be greyed out if there's nothing to select, so
// this adds a zero-width space so that we can later check whether
// it got selected.
lib/Farabi/files/public/assets/codemirror/lib/codemirror.js view on Meta::CPAN
var extval = display.input.value = "\u200b" + (selected ? display.input.value : "");
display.prevInput = selected ? "" : "\u200b";
display.input.selectionStart = 1; display.input.selectionEnd = extval.length;
// Re-set this, in case some other handler touched the
// selection in the meantime.
display.selForContextMenu = cm.doc.sel;
}
}
function rehide() {
display.inputDiv.style.position = "relative";
display.input.style.cssText = oldCSS;
lib/Farabi/files/public/assets/codemirror/lib/codemirror.js view on Meta::CPAN
// Try to detect the user choosing select-all
if (display.input.selectionStart != null) {
if (!ie || ie_upto8) prepareSelectAllHack();
var i = 0, poll = function() {
if (display.selForContextMenu == cm.doc.sel && display.input.selectionStart == 0)
operation(cm, commands.selectAll)(cm);
else if (i++ < 10) display.detectingSelectAll = setTimeout(poll, 500);
else resetInput(cm);
};
display.detectingSelectAll = setTimeout(poll, 200);
lib/Farabi/files/public/assets/codemirror/lib/codemirror.js view on Meta::CPAN
} else {
setTimeout(rehide, 50);
}
}
function contextMenuInGutter(cm, e) {
if (!hasHandler(cm, "gutterContextMenu")) return false;
return gutterEvent(cm, e, "gutterContextMenu", false, signal);
}
// UPDATING
// Compute the position of the end of a change (its 'to' property
lib/Farabi/files/public/assets/codemirror/lib/codemirror.js view on Meta::CPAN
origin: change.origin
};
if (changeHandler) signalLater(cm, "change", cm, obj);
if (changesHandler) (cm.curOp.changeObjs || (cm.curOp.changeObjs = [])).push(obj);
}
cm.display.selForContextMenu = null;
}
function replaceRange(doc, code, from, to, origin) {
if (!to) to = from;
if (cmp(to, from) < 0) { var tmp = to; to = from; from = tmp; }
lib/Farabi/files/public/assets/codemirror/lib/codemirror.js view on Meta::CPAN
}, true);
option("firstLineNumber", 1, guttersChanged, true);
option("lineNumberFormatter", function(integer) {return integer;}, guttersChanged, true);
option("showCursorWhenSelecting", false, updateSelection, true);
option("resetSelectionOnContextMenu", true);
option("readOnly", false, function(cm, val) {
if (val == "nocursor") {
onBlur(cm);
cm.display.input.blur();
view all matches for this distribution
view release on metacpan or search on metacpan
t/data/link.html view on Meta::CPAN
<label>
<span class="screen-reader-text">Search for:</span>
<input type="search" class="search-field" placeholder="Search …" value="" name="s" />
</label>
<input type="submit" class="search-submit" value="Search" />
</form></aside><aside id="nav_menu-2" class="widget widget_nav_menu"><h4 class="widget-title">Menu</h4><div class="menu-menu-container"><ul id="menu-menu-1" class="menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item...
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4710"><a href="https://dave.org.uk/writing/">Writin’</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-224591"><a href="https://dave.org.uk/watching/">Watchin’</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6165"><a href="https://dave.org.uk/listening/">Listenin’</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-84180"><a href="https://dave.org.uk/travelling/">Travellin’</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4706"><a href="https://dave.org.uk/photos/">Snappin’</a></li>
view all matches for this distribution
view release on metacpan or search on metacpan
simtelnet/00_index.txt view on Meta::CPAN
Directory simtelnet/msdos/4dos/
Filename Type Length Date Description
==============================================
1cat.zip B 27440 950213 4DOS & NDOS command line disk catalog program
4archiv3.zip B 107213 960511 Menu tools for PKZIP and ARJ, for 4DOS
4btmutil.zip B 5608 940610 BTM's save/restore 4DOS env. w/Windows & more
4d24h20b.zip B 22806 930501 TSR critical error handler (INT 24) for 4DOS
4datef.zip B 2063 921019 .BTM functions: Day-of-Week, Number-of-Week
4dc_v091.zip B 49635 961206 Configuration program for 4DOS.INI
4dcat10.zip B 45846 961229 Floppy cataloger with freeform database
view all matches for this distribution
view release on metacpan or search on metacpan
lib/File/Extension.pm view on Meta::CPAN
'ase' => 'Aseprite Sprite File',
'asec' => 'Android Secure Application File',
'asef' => 'Adobe Swatch Exchange File',
'aseprite' => 'Aseprite Sprite File',
'asf' => 'Advanced Systems Format File',
'ash' => 'Nintendo Wii System Menu File',
'ashbak' => 'Ashampoo Backup Archive',
'ashdisc' => 'Ashampoo Burning Studio Image',
'ashprj' => 'Ashampoo Burning Studio Project',
'ashx' => 'ASP.NET Web Handler File',
'asi' => 'Grand Theft Auto Mod Library',
lib/File/Extension.pm view on Meta::CPAN
'awdb' => 'Access Walker Database File',
'awg' => 'Ability Draw Document',
'awk' => 'AWK Script',
'awkw' => 'Awkwords Word Generator File',
'awlive' => 'Active Webcam Video File',
'awm' => 'AllWebMenus Project File',
'awp' => 'Ability Write Template',
'aws' => 'AutoCAD Work Space File',
'awt' => 'AbiWord Template',
'aww' => 'Ability Write Document',
'ax' => 'DirectShow Filter',
lib/File/Extension.pm view on Meta::CPAN
'cmd' => 'M.U.G.E.N. Character Commands File',
'cme' => 'Command Multimedia Evidence File',
'cmf' => 'Connected Backup File',
'cml' => 'Crazy Machines Lab File',
'cmm' => 'Corel Multimedia Manager Album',
'cmmp' => 'Camtasia MenuMaker Project',
'cmmtheme' => 'CleanMyMac Theme File',
'cmmtpl' => 'Camtasia MenuMaker Template',
'cmo' => 'ASUS BIOS File',
'cmod' => 'Celestia Model',
'cmp' => 'Generic CADD Component File',
'cmpkg' => 'craftersmine Package',
'cmproj' => 'Camtasia Project File',
lib/File/Extension.pm view on Meta::CPAN
'dxx' => 'AutoCAD Drawing Interchange Attribute File',
'dyc' => 'Xerox Printer Driver Configuration File',
'dylib' => 'Mach-O Dynamic Library',
'dz' => 'Land of the Dead Level File',
'dzip' => 'The Witcher 2 Game Archive',
'dzm' => 'DirectorZone Menu Template',
'dzp' => 'DirectorZone Particle Effect File',
'dzt' => 'DirectorZone Title File',
'e00' => 'ArcInfo Coverage Export File',
'e01' => 'EnCase Image File',
'e2gm' => 'Pangea Enigmo 2 Custom Game File',
lib/File/Extension.pm view on Meta::CPAN
'elc' => 'Emacs Compiled Lisp File',
'eld' => 'Eulumdat Formatted Luminaire Data File',
'elf' => 'Nintendo Wii Game File',
'elm' => 'Eternal Lands Map File',
'els' => 'EasyLanguage Storage File',
'em' => 'Encore Menu Template',
'email' => 'Outlook Express Email Message',
'emb' => 'Everest Embedded Bank File',
'embl' => 'EMBL Sequence Data File',
'embr' => 'Spatial Geodatabase File',
'emc' => 'Striata Reader Encrypted Document',
lib/File/Extension.pm view on Meta::CPAN
'ink' => 'Pocket PC Handwritten Note',
'inl' => 'C++ Inline File',
'inlk' => 'Adobe InDesign Lock File',
'inlx' => 'Adobe InDesign Interchange Library',
'inm' => 'FaxMaster Document',
'inms' => 'Adobe InDesign Menu Set File',
'ino' => 'Arduino Sketch File',
'inp' => 'Urdu InPage Document',
'inprogress' => 'Time Machine Backup Progress File',
'ins' => 'AGT Game Instruction File',
'int' => 'Intellivision Game ROM File',
lib/File/Extension.pm view on Meta::CPAN
'mel' => 'Maya Embedded Language File',
'mell' => 'Mellel Word Processing File',
'mellel' => 'Mellel Word Processing Document',
'mem' => 'Macro Editor Macro',
'menc' => 'Windows Mobile Encrypted File',
'menu' => 'Quake 3 Engine Menu File',
'meo' => 'MEO Encrypted Archive',
'mer' => 'RSView Development Runtime File',
'merlin2' => 'Merlin Project File',
'merlinlicens' => ' \'Merlin License File',
'mesh' => '3D Mesh Model',
lib/File/Extension.pm view on Meta::CPAN
'mms' => 'Transformation Extender Map Source File',
'mmu' => 'myPM Merge Data File',
'mmv' => 'MicroMV Video File',
'mmw' => 'Microsoft Clip Organizer Media Catalog File',
'mmz' => 'MiraMon Compressed Map File',
'mnc' => 'AutoCAD Compiled Menu File',
'mng' => 'Yamaha PSR Disk Manager File',
'mnh' => 'Master Navigator Header File',
'mnk' => 'My Notes Keeper Notebook',
'mnl' => 'AutoCAD Menu LISP File',
'mnm' => 'Character Studio Marker Name File',
'mno' => 'Macromedia Design Note',
'mnr' => 'AutoCAD Menu Resource File',
'mns' => 'AutoCAD Interface Settings File',
'mnt' => 'FoxPro Menu Memo',
'mnu' => 'Adobe Photoshop Menu Customization File',
'mnv' => 'PlayStation Movie File',
'mnx' => 'FoxPro Menu',
'mny' => 'Microsoft Money File',
'mo' => 'Machine Object File',
'mo3' => 'MO3 Audio File',
'mob' => 'MOBTV Video File',
'mobi' => 'Mobipocket eBook',
lib/File/Extension.pm view on Meta::CPAN
'mpu' => 'MPEG Layer 3 Audio File',
'mpv' => 'MPEG Elementary Stream Video File',
'mpv2' => 'MPEG-2 Video Stream',
'mpw' => 'Microsoft Project Workspace File',
'mpws' => 'MathPiper Worksheet',
'mpx' => 'FoxPro Compiled Menu Program',
'mpz' => 'Red Eclipse Map File',
'mpzip' => 'Multisim Pack File',
'mq4' => 'MQL4 Source Code File',
'mq5' => 'MQL5 Source Code File',
'mqh' => 'MetaTrader Include File',
lib/File/Extension.pm view on Meta::CPAN
'rb4' => 'RobotWorks Parameters File',
'rbc' => 'Rembo-C Script',
'rbf' => 'LEGO MINDSTORMS EV3 Robot Brick File',
'rbj' => 'XRK Compiled Redcode Object File',
'rbk' => 'Windows 95 Registry Backup File',
'rbm' => 'Real Studio Menu File',
'rbp' => 'Real Studio Project File',
'rbs' => 'MP3 Ringtone File',
'rbt' => 'LEGO MINDSTORMS NXT Program',
'rbvcp' => 'Real Studio Version Controlled Project',
'rbw' => 'Real Studio Window File',
lib/File/Extension.pm view on Meta::CPAN
'style' => 'ArcGIS Style Manager File',
'styx' => 'ChordWizard Style',
'sub' => 'SubTerra Level File',
'sublime-buil' => ' \'Sublime Text Build File',
'sublime-keym' => 'P\'Sublime Text Keymap File',
'sublime-menu' => 'Sublime Text Menu File',
'sublime-opti' => 'N\'S Sublime Text Options File',
'sublime-pack' => 'G\'E Sublime Text Package File',
'sublime-proj' => 'C\'T Sublime Text Project File',
'sublime-sess' => 'O\'N Sublime Text Session File',
'sublime-sett' => 'N\'GS Sublime Text Settings File',
view all matches for this distribution
view release on metacpan or search on metacpan
t/DROID_SignatureFile_V111.xml view on Meta::CPAN
<FileFormat ID="108"
Name="OS/2 Presentation Manager Metafile (MET)" PUID="x-fmt/67">
<InternalSignatureID>2073</InternalSignatureID>
<Extension>met</Extension>
</FileFormat>
<FileFormat ID="109" Name="AutoCAD Compiled Menu" PUID="x-fmt/68">
<Extension>mnc</Extension>
</FileFormat>
<FileFormat ID="110" Name="AutoLISP Menu Source File" PUID="x-fmt/69">
<Extension>mnl</Extension>
</FileFormat>
<FileFormat ID="111" Name="AutoCAD Menu Resource File" PUID="x-fmt/70">
<Extension>mnr</Extension>
<Extension>mnt</Extension>
</FileFormat>
<FileFormat ID="112" Name="AutoCAD Source Menu File" PUID="x-fmt/71">
<Extension>mns</Extension>
</FileFormat>
<FileFormat ID="114" Name="AutoCAD Template Menu File" PUID="x-fmt/72">
<Extension>mnu</Extension>
</FileFormat>
<FileFormat ID="115" Name="Microsoft Outlook Address Book" PUID="x-fmt/73">
<Extension>olk</Extension>
</FileFormat>
t/DROID_SignatureFile_V111.xml view on Meta::CPAN
<FileFormat ID="2283" MIMEType="application/x-stuffit"
Name="Stuffit Archive File" PUID="fmt/1460" Version="1.6-4.5">
<InternalSignatureID>1826</InternalSignatureID>
<Extension>sit</Extension>
</FileFormat>
<FileFormat ID="2284" Name="Autorun Maestro Menu File" PUID="fmt/1461">
<InternalSignatureID>1827</InternalSignatureID>
<Extension>mnu</Extension>
</FileFormat>
<FileFormat ID="2285" Name="Comic Book Archive" PUID="fmt/1462">
<Extension>cb7</Extension>
view all matches for this distribution
view release on metacpan or search on metacpan
t/fixtures/service-message.html view on Meta::CPAN
</div>
</div>
</div>
<script language="JavaScript" type="text/javascript"><!--
HideMenuBorder();
//--></script></form>
</body>
</html>
view all matches for this distribution
view release on metacpan or search on metacpan
data/PTSB/Account.aspx view on Meta::CPAN
<li>
<a id="mnuActivateDebitCard" href="CardActivate.aspx" onmouseover="self.status='Activate Debit Card'; return true"
onmouseout="self.status=''; return true">Card Activation</a>
</li>
<li>
<a id="mnuApplyCreditInterest" href="CreditInterestMenu.aspx" onmouseover="self.status='Apply Credit Interest'; return true"
onmouseout="self.status=''; return true">Apply Credit Interest</a>
</li>
<li>
<a id="mnuChequePaidSearch" href="cheque.aspx" onmouseover="self.status='Cheque Paid Search'; return true" onmouseout="self.status=''; return true">
Cheque Paid Search</a>
view all matches for this distribution
view release on metacpan or search on metacpan
t/data/page-2022-02-26.html view on Meta::CPAN
</div>
</a>
</div>
<ul class="a-nav-wrapper" id="hideMenu">
<li class="a-nav-item " data-target="/en/individu">
<a href="/en/individu" >Individual</a>
</li>
<li class="a-nav-item " data-target="/en/bisnis">
<a href="/en/bisnis" >Business</a>
view all matches for this distribution
view release on metacpan or search on metacpan
t/data/jisdor-2022-02-25.html view on Meta::CPAN
var g_wsaQoSDataPoints = [];
var g_wsaRUMEnabled = false;
var g_wsaLCID = 1033;
var g_wsaListTemplateId = null;
var g_wsaSiteTemplateId = 'CMSPUBLISHING#0';
var _spPageContextInfo={"webServerRelativeUrl":"/id/statistik/informasi-kurs/jisdor","webAbsoluteUrl":"https://www.bi.go.id/id/statistik/informasi-kurs/jisdor","viewId":"","listId":"","listPermsMask":null,"listUrl":"","listTitle":null,"listBaseTempla...
var L_Menu_LCID="1033";
var L_Menu_SiteTheme="null";
function _spNavigateHierarchy(nodeDiv, dataSourceId, dataPath, url, listInContext, type) {
CoreInvoke('ProcessDefaultNavigateHierarchy', nodeDiv, dataSourceId, dataPath, url, listInContext, type, document.forms.aspnetForm, "", "\u002fid\u002fstatistik\u002finformasi-kurs\u002fjisdor\u002fdefault.aspx");
t/data/jisdor-2022-02-25.html view on Meta::CPAN
Turn on Animations</a></div>
<a id="HiddenAnchor" href="javascript:;" style="display:none;"></a>
<div id="suiteBarDelta" class="ms-dialogHidden ms-fullWidth noindex">
<div id="suiteMenuData" class="ms-hide">
<span class="ms-siteactions-root" id="siteactiontd">
t/data/jisdor-2022-02-25.html view on Meta::CPAN
</div>
<div id="DeltaTopNavigation" class="ms-displayInline ms-core-navigation" role="navigation">
<div id="zz1_TopNavigationMenu" class=" noindex ms-core-listMenu-horizontalBox">
<ul id="zz2_RootAspMenu" class="root ms-core-listMenu-root static">
<li class="static selected"><a class="static selected menu-item ms-core-listMenu-item ms-displayInline ms-core-listMenu-selected ms-navedit-linkNode" title="Home" href="/id/default.aspx" accesskey="1"><span class="additional-background ms-navedit-...
</ul>
</div>
</div>
t/data/jisdor-2022-02-25.html view on Meta::CPAN
<div class='dropdown-megamenu__column--wrapper'>
</div>
</div>
<div class='dropdown-megamenu__column dropdown-megamenu__about pl-md-4'>
<div class='dropdown-megamenu__column--wrapper'>
<div class='dropdown-megamenu__about--thumbnail mb-2' style='background-image:url("/Menu%20Image/tentang-BI_v2.png")'></div>
<p class='dropdown-megamenu__about--title'>Tentang BI</p>
<p class='dropdown-megamenu__about--description'>Informasi seputar organisasi, transformasi dan sejarah Bank Indonesia sebagai bank sentral Republik Indonesia.</p>
</div>
</div>
</div>
t/data/jisdor-2022-02-25.html view on Meta::CPAN
<div class='dropdown-megamenu__column--wrapper'>
</div>
</div>
<div class='dropdown-megamenu__column dropdown-megamenu__about pl-md-4'>
<div class='dropdown-megamenu__column--wrapper'>
<div class='dropdown-megamenu__about--thumbnail mb-2' style='background-image:url("/Menu%20Image/rupiah_v2.png")'></div>
<p class='dropdown-megamenu__about--title'>Rupiah</p>
<p class='dropdown-megamenu__about--description'>Informasi seputar Rupiah sebagai mata uang Republik Indonesia yang dikelola oleh Bank Indonesia sesuai dengan Undang Undang.</p>
</div>
</div>
</div>
t/data/jisdor-2022-02-25.html view on Meta::CPAN
<div class='dropdown-megamenu__column--wrapper'>
</div>
</div>
<div class='dropdown-megamenu__column dropdown-megamenu__about pl-md-4'>
<div class='dropdown-megamenu__column--wrapper'>
<div class='dropdown-megamenu__about--thumbnail mb-2' style='background-image:url("/Menu%20Image/publikasi.jpg?csf=1&e=QrfjCa")'></div>
<p class='dropdown-megamenu__about--title'>Publikasi</p>
<p class='dropdown-megamenu__about--description'>Produk publikasi Bank Indonesia meliputi peraturan, laporan, dan kajian, serta kalender kegiatan Bank Indonesia.</p>
</div>
</div>
</div>
t/data/jisdor-2022-02-25.html view on Meta::CPAN
<div class='dropdown-megamenu__column--wrapper'>
</div>
</div>
<div class='dropdown-megamenu__column dropdown-megamenu__about pl-md-4'>
<div class='dropdown-megamenu__column--wrapper'>
<div class='dropdown-megamenu__about--thumbnail mb-2' style='background-image:url("/Menu%20Image/Statistik.jpg")'></div>
<p class='dropdown-megamenu__about--title'>Statistik</p>
<p class='dropdown-megamenu__about--description'>Produk statistik yang meliputi indikator historikal seluruh sektor yang menjadi kewenangan pengelolaan Bank Indonesia.</p>
</div>
</div>
</div>
t/data/jisdor-2022-02-25.html view on Meta::CPAN
<div class='dropdown-megamenu__column--wrapper'>
</div>
</div>
<div class='dropdown-megamenu__column dropdown-megamenu__about pl-md-4'>
<div class='dropdown-megamenu__column--wrapper'>
<div class='dropdown-megamenu__about--thumbnail mb-2' style='background-image:url("/Menu%20Image/layanan.jpg?csf=1&e=1cBgGs")'></div>
<p class='dropdown-megamenu__about--title'>Layanan</p>
<p class='dropdown-megamenu__about--description'>Berbagai layanan yang disediakan oleh Bank Indonesia mencakup permohonan informasi, pengaduan, perizinan dsb.</p>
</div>
</div>
</div>
t/data/jisdor-2022-02-25.html view on Meta::CPAN
<div class='dropdown-megamenu__column--wrapper'>
</div>
</div>
<div class='dropdown-megamenu__column dropdown-megamenu__about pl-md-4'>
<div class='dropdown-megamenu__column--wrapper'>
<div class='dropdown-megamenu__about--thumbnail mb-2' style='background-image:url("/Menu%20Image/informasi-publik.png?csf=1&e=a0LHzG")'></div>
<p class='dropdown-megamenu__about--title'>Informasi Publik</p>
<p class='dropdown-megamenu__about--description'>Informasi publik Bank Indonesia dalam rangka memenuhi Undang-Undang KIP Tahun 2008.</p>
</div>
</div>
</div>
t/data/jisdor-2022-02-25.html view on Meta::CPAN
<div class="ms-core-sideNavBox-removeLeftMargin">
<div id="ctl00_PlaceHolderLeftNavBar_QuickLaunchNavigationManager">
<div id="zz3_V4QuickLaunchMenu" class=" noindex ms-core-listMenu-verticalBox">
<ul id="zz4_RootAspMenu" class="root ms-core-listMenu-root static">
<li class="static selected"><a class="static selected menu-item ms-core-listMenu-item ms-displayInline ms-core-listMenu-selected ms-navedit-linkNode" href="/"><span class="additional-background ms-navedit-flyoutArrow"><span class="menu-item-text"...
</ul>
</div>
</div>
<div class="ms-core-listMenu-verticalBox">
</div>
</div>
t/data/jisdor-2022-02-25.html view on Meta::CPAN
</div>
</div>
<div style='display:none' id='hidZone'><menu class="ms-hide">
<ie:menuitem id="MSOMenu_Help" iconsrc="/_layouts/15/images/HelpIcon.gif" onmenuclick="MSOWebPartPage_SetNewWindowLocation(MenuWebPart.getAttribute('helpLink'), MenuWebPart.getAttribute('helpMode'))" text="Help" type="option" style="display:none">
</ie:menuitem>
</menu></div>
</div>
t/data/jisdor-2022-02-25.html view on Meta::CPAN
{
EnsureScriptFunc('ribbon', 'SP.Ribbon.PageStateActionButton', _ribbonWaitForBodyEvent);
}
var g_commandUIHandlers = {"name":"CommandHandlers","attrs":{},"children":[]};
g_QuickLaunchControlIds.push("zz1_TopNavigationMenu");_spBodyOnLoadFunctionNames.push('QuickLaunchInitDroppable'); var g_zz1_TopNavigationMenu = null; function init_zz1_TopNavigationMenu() { if (g_zz1_TopNavigationMenu == null) g_zz1_TopNavigationMen...
ExecuteOrDelayUntilScriptLoaded(
function()
{
if ($isNull($find('ctl00_PlaceHolderSearchArea_SmallSearchInputBox1_csr')))
{
var sb = $create(Srch.SearchBox, {"delayLoadTemplateScripts":true,"initialPrompt":"Search this site","messages":[],"navigationNodes":[{"id":0,"name":"This Site","url":"~site/_layouts/15/osssearchresults.aspx?u={context...
sb.activate('Search this site', 'ctl00_PlaceHolderSearchArea_SmallSearchInputBox1_csr_sbox', 'ctl00_PlaceHolderSearchArea_SmallSearchInputBox1_csr_sboxdiv', 'ctl00_PlaceHolderSearchArea_SmallSearchInputBox1_csr_NavButt...
}
}, 'Search.ClientControls.js');g_QuickLaunchControlIds.push("zz3_V4QuickLaunchMenu");_spBodyOnLoadFunctionNames.push('QuickLaunchInitDroppable'); var g_zz3_V4QuickLaunchMenu = null; function init_zz3_V4QuickLaunchMenu() { if (...
//]]>
</script>
</form>
<span id="DeltaPlaceHolderUtilityContent">
view all matches for this distribution
view release on metacpan or search on metacpan
t/data/page-2022-02-26.html view on Meta::CPAN
<link data-senna-track="temporary" href="/combo?browserId=firefox&minifierType=&themeId=mandiricorporatetheme_WAR_mandiricorporatetheme&languageId=in_ID&b=7010&com_liferay_journal_content_web_portlet_JournalContentPortlet_INSTAN...
t/data/page-2022-02-26.html view on Meta::CPAN
<a
>
Top Menu
</a>
</li>
<li class="" >
t/data/page-2022-02-26.html view on Meta::CPAN
zIndex: Liferay.zIndex.TOOLTIP
}
);
}
})();(function() {var $ = AUI.$;var _ = AUI._;
new Liferay.Menu();
var liferayNotices = Liferay.Data.notices;
for (var i = 1; i < liferayNotices.length; i++) {
new Liferay.Notice(liferayNotices[i]);
view all matches for this distribution
view release on metacpan or search on metacpan
scripts/FINANCE_QUANT_TRAY view on Meta::CPAN
}
#right click menu
sub menu {
my $menu = Gtk2::Menu->new();
#VCI
my $menu_VCI = Gtk2::ImageMenuItem->new_with_label("CLI UI");
$menu_VCI->set_image(Gtk2::Image->new_from_stock('gtk-refresh',
'menu'));
$menu_VCI->signal_connect(activate => sub {
print system ('financequant &');
scripts/FINANCE_QUANT_TRAY view on Meta::CPAN
$menu->add($menu_VCI);
#configure
my $menu_pref = Gtk2::ImageMenuItem->new_with_label("XML DUMP");
$menu_pref->signal_connect(activate => sub {
my $response=0;
my $error =0;
print system ('FINANCE_QUANT_XML_RESULTS');
scripts/FINANCE_QUANT_TRAY view on Meta::CPAN
$menu->add($menu_pref);
#configure
my $menu_http = Gtk2::ImageMenuItem->new_with_label("HTTP REPORTS");
$menu_http->signal_connect(activate => sub {
system("FINANCE_QUANT_HTTP_SERVER &");
});
$menu_http->set_image(Gtk2::Image->new_from_stock('gtk-media-play','menu'));
$menu->add($menu_http);
#separator
my $menu_sep = Gtk2::SeparatorMenuItem->new();
$menu->add($menu_sep);
#Quit
my $menu_quit = Gtk2::ImageMenuItem->new_with_label("Quit");
$menu_quit->signal_connect(activate => sub {Gtk2->main_quit});
$menu_quit->set_image(Gtk2::Image->new_from_stock('gtk-quit', 'menu'));
$menu->add($menu_quit);
scripts/FINANCE_QUANT_TRAY view on Meta::CPAN
#Program interfaces
sub interface {
my $interface = Gtk2::Menu->new;
#menu items for VCI
#Progress bar for number of downloads; just a countng bar
#Add the correct controls to menu
my $menu_vci_connect = Gtk2::ImageMenuItem->new_with_label("Connect");
$interface->add($menu_vci_connect);
my $menu_vci_stop = Gtk2::ImageMenuItem->new_with_label("Stop");
$interface->add($menu_vci_stop);
$interface->show_all;
view all matches for this distribution
view release on metacpan or search on metacpan
# Jake /about/jake/
=head1 DESCRIPTION
Fir is a Tree::DAG_Node subclass for menu nagivation. Menu navigation
on a web application is fiddly code and this module hides that away
from you. Note that this module only handles the logic, not the
display of the navigation.
There are two kinds of nodes L<Fir::Major> nodes are allowed to have
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Firefox/Marionette.pm view on Meta::CPAN
DO NOT EDIT! -->
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
_HTML_
$quoted_header_regex =~ s/\\\r?\n/\\s+/smxg;
my $title_regex = qr/[<]TITLE[>]Bookmarks[<]\/TITLE[>]\s+/smx;
my $header_regex = qr/[<]H1[>]Bookmarks(?:[ ]Menu)?[<]\/H1[>]\s+/smx;
my $list_regex = qr/[<]DL[>][<]p[>]\s*/smx;
if ( $contents =~ s/\A\s*$quoted_header_regex\s*//smx ) {
$contents =~ s/\A\s*<meta[^>]+><\/meta>\s*//smx;
$contents =~ s/\A$title_regex$header_regex$list_regex//smx;
lib/Firefox/Marionette.pm view on Meta::CPAN
<!-- This is an automatically generated file.
It will be read and overwritten.
DO NOT EDIT! -->
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<TITLE>Bookmarks</TITLE>
<H1>Bookmarks Menu</H1>
<DL><p>
<DT><H3 ADD_DATE="$now" LAST_MODIFIED="$now" PERSONAL_TOOLBAR_FOLDER="true">Bookmarks Toolbar</H3>
<DL><p>
</DL><p>
view all matches for this distribution
view release on metacpan or search on metacpan
- eg/double_click.pl - Custom button widget that detects double clicks
- eg/drag_and_drop.pl - Example of clipboard access and drag and drop
- New widgets:
- Fl::Progress - Typical progress bar
- Fl::InputChoice - Input widget and menu button rolled into one
- Fl::Menu - Base class for all widgets that have a menu
- Fl::MenuButton - Button that pops up a menu when pushed
- Fl::HtmlView - Simple HTML viewer
- New demo scripts:
- eg/progress.pl - Demos using a Fl::Progress bar to keep user up to date on background progress
- eg/input_choice.pl - Demos using Fl::InputChoice and enabling/disabling widgets
- Some tests require a working DISPLAY on X11
view all matches for this distribution