view release on metacpan or search on metacpan
lib/A1z/HTML5/Template.pm view on Meta::CPAN
my %in;
%in = (
file => "https://www.a1z.us/js/utils/top-nav-bar.js",
name => "Menu",
@_,
);
my $out;
lib/A1z/HTML5/Template.pm view on Meta::CPAN
#serverName, pageName, menuName, dropDownLinks
my %in;
%in = (
-nbMenuName => "",
-nbPageName => "",
-nbServer => "",
-nbLinks => "blog-support-help-contact-sale",
@_,
);
return qq{<script src="https://www.a1z.us/js/utils/top-nav-bar.js"></script>
<!--top nav bar begin-->
<script>
//<--
fixed_top_navbar('$in{-nbServer}', '$in{-nbPageName}', '$in{-nbMenuName}', '$in{-nbLinks}');
//-->
</script>
<!-- top nav bar end-->
};
lib/A1z/HTML5/Template.pm view on Meta::CPAN
# determine output type
if ( $identifiers =~ /^\#/ ) { $in{output_type} = 'Table'; }
elsif ( $identifiers =~ /^\-/ ) { $in{output_type} = 'Accordion'; }
elsif ( $identifiers =~ /^\=/ ) { $in{output_type} = 'Tabs'; }
elsif ( $identifiers =~ /^http/ ) { $in{output_type} = 'Menu'; }
else { $in{output_type} = 'None'; }
# remove all nonmeta characters for web page display
$identifiers =~ s!(\s+|[a-zA-z0-9])!!g; # removes http also.
lib/A1z/HTML5/Template.pm view on Meta::CPAN
say qq{<h1>My New App/Website</h1>};
say qq{<main class="container">};
# output file content as menu
say $h->body_accordion( $h->open_file("/home/user/path/to/app/open_file_example.txt", 'menu', 'Menu') );
# as a HTML5 table
say $h->body_accordion( $h->open_file("$sys{cgibase}/open_file_example.txt", 'table', 'Table Header') );
# Simple mathematics
lib/A1z/HTML5/Template.pm view on Meta::CPAN
For Internal/Future Use
Customizations for top-nav-bar.js from a1z.us
$h->html_navbar(
-nbMenuName => "menuName",
-nbPageName => "pageName",
-nbServer => "serverName",
-nbLinks => "dropDownLinks: URLs separated by a dash, mostly relative URLs. E.g., blog-support-help-contact-sale"
);
lib/A1z/HTML5/Template.pm view on Meta::CPAN
Used for loading all kinds of custom elements for different output formats stored in simple text files.
$h->open_file("/path/to/file", "outputFormat", "outputHeader");
$h->open_file("C:/Inetpub/wwwroot/MyApp/menu.txt", "menu", "Menu");
This is the heart of the App.
=head2 OUTPUT FORMAT OPTIONS:
view all matches for this distribution
view release on metacpan or search on metacpan
@ARS::ISA = qw(Exporter DynaLoader);
@ARS::EXPORT = qw(isa_int isa_float isa_string ars_LoadQualifier ars_Login
ars_Logoff ars_GetListField ars_GetFieldByName ars_GetFieldTable
ars_DeleteEntry ars_GetEntry ars_GetListEntry ars_GetListSchema
ars_GetListServer ars_GetActiveLink ars_GetCharMenuItems ars_GetSchema
ars_ExpandCharMenu
ars_GetField ars_simpleMenu ars_GetListActiveLink ars_SetEntry
ars_perl_qualifier ars_qualifier_ptr ars_Export ars_GetListFilter ars_GetListEscalation
ars_GetListCharMenu ars_padEntryid
ars_GetFilter ars_SetFilter
ars_GetListEntryWithFields ars_GetMultipleEntries
ars_GetProfileInfo ars_Import ars_GetCharMenu ars_GetServerStatistics
ars_GetCurrentServer ars_EncodeDiary
ars_CreateEntry ars_MergeEntry ars_DeleteFilter
ars_DeleteMultipleFields ars_DeleteActiveLink
ars_DeleteCharMenu
ars_DeleteEscalation ars_DeleteField ars_DeleteSchema
ars_DeleteVUI ars_ExecuteProcess
ars_GetEscalation ars_GetFullTextInfo
ars_GetListGroup ars_GetListSQL ars_GetListUser ars_GetListRole
ars_GetListVUI
ars_CreateActiveLink
ars_GetControlStructFields ars_GetVUI
ars_GetListContainer ars_GetContainer ars_DeleteContainer ars_SetServerPort
ars_SetLogging ars_SetSessionConfiguration ars_SetImpersonatedUser
ars_CreateField ars_SetField ars_CreateSchema ars_SetSchema ars_CreateVUI ars_SetVUI
ars_CreateContainer ars_SetContainer ars_CreateCharMenu ars_SetCharMenu
ars_SetActiveLink ars_CreateFilter ars_CreateEscalation ars_SetEscalation
$ars_errstr %ARServerStats %ars_errhash
ars_decodeStatusHistory ars_APIVersion ars_encodeStatusHistory
ars_BeginBulkEntryTransaction ars_EndBulkEntryTransaction
ars_Signal ars_GetTextForErrorMessage ars_DateToJulianDate
return newObject( @_ );
}
# ROUTINE
# ars_simpleMenu(menuItems, prepend)
#
# DESCRIPTION
# merges all sub-menus into a single level menu. good for web
# interfaces.
#
# RETURNS
# array of menu items.
sub ars_simpleMenu {
my($m) = shift;
my($prepend) = shift;
my(@m) = @$m;
my(@ret, @submenu);
my($name, $val);
while (($name, $val, @m) = @m) {
if (ref($val)) {
@submenu = ars_simpleMenu($val, $name);
@ret = (@ret, @submenu);
} else {
if ($prepend) {
@ret = (@ret, "$prepend/$name", $val);
} else {
print "val: ", $h->{$_},"\n";
dumpHash($h->{$_}) if(ref($h->{$_}) eq "HASH");
}
}
# ars_GetCharMenuItems(ctrl, menuName, qualifier)
# qual is optional.
# if it's specified:
# menuType must be "query"
# qualifier must compile against the form that the menu
# is written for.
sub ars_GetCharMenuItems {
my ($ctrl, $menuName, $qual) = (shift, shift, shift);
if(defined($qual)) {
my $menu = ars_GetCharMenu($ctrl, $menuName);
die "ars_GetCharMenuItems failed: $ARS::ars_errstr"
unless defined($menu);
die "ars_GetCharMenuItems failed: qualifier was specified, but menu is not a 'query' menu"
if($menu->{'menuType'} ne "query");
if(ref($qual) ne "ARQualifierStruct") {
$qual = ars_LoadQualifier($ctrl, $menu->{'menuQuery'}{'schema'}, $qual);
}
return ars_ExpandCharMenu2($ctrl, $menuName, $qual);
}
return ars_ExpandCharMenu2($ctrl, $menuName);
}
sub ars_ExpandCharMenu {
return ars_ExpandCharMenu2(@_);
}
# encodes status history from the same format
# as returned by ars_decodeStatusHistory()
view all matches for this distribution
view release on metacpan or search on metacpan
applications/htmlroot/cgi-bin/admin/generateConfig.pl view on Meta::CPAN
$htmlTitle = "Update Configuration";
} elsif ($action eq 'update') {
$htmlTitle = "Configuration Updated";
} else {
$action = "menuView";
$htmlTitle = "Configuration Menu";
}
# HTML - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
my $onload = ( ( $action =~ /^(check|generate|compare|install)View$/ ) ? "ONLOAD=\"if (document.images) document.Progress.src='".$IMAGESURL."/spacer.gif';\"" : '' );
print_header (*STDOUT, $pagedir, $pageset, $htmlTitle, $subTitle, 3600, $onload, 'F', '', $sessionID);
view all matches for this distribution
view release on metacpan or search on metacpan
share/AXLSoap.xsd view on Meta::CPAN
<xsd:enumeration value="Answer Oldest"/>
<xsd:enumeration value="Services"/>
<xsd:enumeration value="Messages"/>
<xsd:enumeration value="Directories"/>
<xsd:enumeration value="Information"/>
<xsd:enumeration value="Application Menu"/>
<xsd:enumeration value="Headset"/>
<xsd:enumeration value="AEC"/>
<xsd:enumeration value="None"/>
</xsd:restriction>
</xsd:simpleType>
share/AXLSoap.xsd view on Meta::CPAN
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="XPluginUsage">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Application Menu"/>
<xsd:enumeration value="Installation"/>
<xsd:enumeration value="User Menu"/>
<xsd:enumeration value="Telecaster Menu"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="XPreemption">
<xsd:restriction base="xsd:string">
view all matches for this distribution
view release on metacpan or search on metacpan
acelib/menu.c view on Meta::CPAN
/****************** MENU manipulation *******************/
MENU menuCreate (char *title)
{
MENU menu = (MENU) messalloc (sizeof (struct MenuStruct)) ;
menu->title = title ;
menu->items = 0 ;
return menu ;
}
MENU menuCopy (MENU oldMenu)
{
MENU newMenu = (MENU) messalloc (sizeof (struct MenuStruct)) ;
MENUITEM newItem, oldItem ;
newMenu->title = oldMenu->title ;
for (oldItem = oldMenu->items ; oldItem ; oldItem = oldItem->down)
{ newItem = menuCreateItem (oldItem->label, oldItem->func) ;
*newItem = *oldItem ;
menuAddItem (newMenu, newItem, 0) ;
}
return newMenu ;
}
void menuDestroy (MENU menu)
{
#ifdef NO_WE_CACHE_MENUS_IN_ASS_BELOW__DONT_DESTROY_HERE
acelib/menu.c view on Meta::CPAN
/******************* MENUITEM manipulation ******************/
MENUITEM menuCreateItem (char *label, MENUFUNCTION func)
{
MENUITEM item = (MENUITEM) messalloc (sizeof (struct MenuItemStruct)) ;
memset (item, 0, sizeof (struct MenuItemStruct)) ;
item->label = label ;
item->func = func ;
return item ;
}
acelib/menu.c view on Meta::CPAN
BOOL menuSetPtr (MENUITEM item, void *ptr)
{ if (!item) return FALSE ;
item->ptr = ptr ; return TRUE ;
}
BOOL menuSetMenu (MENUITEM item, MENU menu)
{ if (!item || !menu) return FALSE ;
item->submenu = menu ; return TRUE ;
}
/***************** get item properties *******************/
view all matches for this distribution
view release on metacpan or search on metacpan
fortune/jackbauer view on Meta::CPAN
%
The only reason why you can't see Jack Bauer on Mount Rushmore is because he doesn't want you to see him.
%
Jack Bauer moves at the speed of light. That's why 24 hours to him is actually 18 hours to the rest of us.
%
Jack Bauer doesn't get full from the Taco Bell Dollar Menu.
%
Jack Bauer's biological make-up is so advanced that he internally recycles his own human waste into nourishment. That's why Jack never eats or goes to the bathroom.
%
Jack Bauer once fell into quicksand. Lucky for Jack, he had his gun with him and shot his way out of it.
%
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use AppConfig;
use App::Config::Chronicle;
use AppConfig::Exporter;
use AppConfig::MyFile;
use AppConfig::Std;
use App::ConMenu;
use App::contenttype;
use App::Context;
use App::Control;
use App::ConvertLogAnyToLogGer;
use App::CopyrightImage;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use Catalyst::Model::KiokuDB;
use Catalyst::Model::LDAP;
use Catalyst::Model::LDAP::FromAuthentication;
use Catalyst::Model::Lucy;
use Catalyst::Model::Memcached::tgz;
use Catalyst::Model::MenuGrinder;
use Catalyst::Model::MetaCPAN;
use Catalyst::Model::MogileFS::Client;
use Catalyst::Model::MongoDB;
use Catalyst::Model::MultiAdaptor;
use Catalyst::Model::Net::Amazon;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use CatalystX::IN;
use CatalystX::InjectComponent;
use CatalystX::InjectModule;
use CatalystX::LeakChecker;
use CatalystX::ListFramework;
use CatalystX::Menu::mcDropdown;
use CatalystX::Menu::Suckerfish;
use CatalystX::Menu::Tree;
use CatalystX::MooseComponent;
use CatalystX::OAuth;
use CatalystX::OAuth::Provider;
use CatalystX::PathContext::v;
use CatalystX::Plugin::Blurb;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use CGI::Application::Plugin::IN;
use CGI::Application::Plugin::JSON;
use CGI::Application::Plugin::LinkIntegrity::ta;
use CGI::Application::Plugin::LogDispatch::tar;
use CGI::Application::Plugin::Mason;
use CGI::Application::Plugin::Menu;
use CGI::Application::Plugin::MessageStack::tar;
use CGI::Application::Plugin::Nes;
use CGI::Application::Plugin::Output::XSV::targ;
use CGI::Application::Plugin::PageBuilder::tar;
use CGI::Application::Plugin::PageLookup;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use Dancer::Plugin::Mango;
use Dancer::Plugin::Map::Tube;
use Dancer::Plugin::MarkdownFilesToHTML::tar;
use Dancer::Plugin::Memcached;
use Dancer::Plugin::MemcachedFast;
use Dancer::Plugin::Menu;
use Dancer::Plugin::Minify;
use Dancer::Plugin::MobileDevice;
use Dancer::Plugin::Model;
use Dancer::Plugin::Mongo;
use Dancer::Plugin::MongoDB;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use DBIx::Handler::Sunny;
use DBIx::HashTable::tgz;
use DBIx::HTML;
use DBIx::HTML::ClientDB::tgz;
use DBIx::HTMLinterface;
use DBIx::HTML::LinkedMenus::tgz;
use DBIx::HTML::PopupRadio::tgz;
use DBIx::HTMLTable;
use DBIx::Informix::Perform;
use DBIx::InsertHash;
use DBIx::Inspector;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use Device::Delcom::VSI;
use Device::Denon::DNF;
use Device::DSE::Q;
use Device::Dynamixel;
use Device::ELM;
use Device::Ericsson::AccessoryMenu;
use Device::Firmata;
use Device::FTDI;
use Device::GBA;
use Device::Gembird;
use Device::GPIB::Prologix;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use Gtk::Ex::GraphViz;
use Gtk::Ex::GroupBy;
use Gtk::Ex::History;
use Gtk::Ex::ICal::Recur;
use Gtk::Ex::ListModelConcat;
use Gtk::Ex::MenuView;
use Gtk::Ex::MindMapView;
use Gtk::Ex::MPlayerEmbed;
use Gtk::Ex::NoShrink;
use Gtk::Ex::NumAxis;
use Gtk::Ex::NumberRange;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use Gtk::Ex::PrintDialog;
use Gtk::Ex::QuadButton;
use Gtk::Ex::RecordsFilter;
use Gtk::Ex::SearchBox;
use Gtk::Ex::Simple::List;
use Gtk::Ex::Simple::Menu;
use Gtk::Ex::Simple::Tree;
use Gtk::Ex::Spinner;
use Gtk::Ex::Splash;
use Gtk::Ex::Threads::DBI;
use Gtk::Ex::TickerView;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use HTML::Mason::ApacheHandler;
use HTML::Mason::PlackHandler;
use HTML::Mason::PSGIHandler;
use HTML::MasonX::ApacheLikePlackHandler::tar;
use HTML::MasonX::Free;
use HTML::Menu::DateTime;
use HTML::Menu::Hierarchical;
use HTML::Menu::Select;
use HTML::Menu::TreeView;
use HTML::Merge;
use HTML::Meta::Robots::v;
use HTML::Microdata;
use HTML::Microformats;
use HTML::Miner;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use HTML::Widget::Plugin::Calendar;
use HTML::Widget::Plugin::Combo;
use HTML::Widget::Plugin::JS;
use HTML::Widget::Plugin::Struct;
use HTML::Widget::SideBar;
use HTML::Widgets::NavMenu;
use HTML::Widgets::NavMenu::ToJSON;
use HTML::Widgets::SelectLayers;
use HTML::Widgets::Table;
use HTML::WidgetValidator;
use HTML::WidgetValidator::Widget::PixivEmbedFeatur;
use HTML::WidgetValidator::Widget::TegakiBlog;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use HTML::XHTML::DVSM;
use HTML::XHTML::Lite;
use HTML::Xit;
use HTML::XSSLint;
use HTML::YaTmpl;
use HTML::YUI::Menu::tgz;
use HTML::Zoom;
use HTML::Zoom::Parser::HHP;
use HTML::Zoom::Parser::HTML::Parser;
use htpl;
use HTTP::Accept;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use JavaScript::HashRef::Decode;
use JavaScript::JSLint;
use JavaScript::Librarian;
use JavaScript::Lite;
use Javascript::MD::tgz;
use Javascript::Menu::Full;
use JavaScript::Minifier;
use JavaScript::Minifier::XS;
use JavaScript::MochiKit;
use JavaScript::Packer;
use JavaScript::Prepare::v;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use Rose::DBx::TestDB;
use Rose::HTML::Objects;
use Rose::HTMLx::Form::DBIC;
use Rose::HTMLx::Form::Field::Autocomplete::tar;
use Rose::HTMLx::Form::Field::Boolean;
use Rose::HTMLx::Form::Field::PopUpMenuNumeric;
use Rose::HTMLx::Form::Field::Serial;
use Rose::HTMLx::Form::Related;
use Rose::Object;
use Rose::ObjectX::CAF;
use Rose::Planter;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use RT::Extension::MandatoryFields;
use RT::Extension::MandatoryOnTransition::tar;
use RT::Extension::MandatoryRequestor;
use RT::Extension::MandatorySubject;
use RT::Extension::Memo;
use RT::Extension::MenubarSearches;
use RT::Extension::MenubarUserTickets;
use RT::Extension::MergeUsers;
use RT::Extension::MessageSizeLimit;
use RT::Extension::MobileUI;
use RT::Extension::ModifyUsersPrefs;
use RT::Extension::MoveRules;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use Term::ANSIColor::Markup;
use Term::ANSIColor::Patch::Conditional::targ;
use Term::ANSIColor::Print;
use Term::ANSIColor::Simple;
use Term::ANSIColorx::ColorNicknames;
use Term::ANSIMenu;
use Term::ANSIScreen;
use Term::ANSITable;
use Term::App::Roles;
use Term::Bash::Completion::Generator;
use Term::Caca;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use Term::Highlight;
use Term::HiliteDiff;
use Term::Info;
use Term::InKey;
use Term::Interact;
use Term::Menu;
use Term::Menu::Hierarchical;
use Term::Menus;
use Term::Menus::FromFile;
use Term::Multiplexed;
use Term::Newt;
use Term::Pager;
use Term::ProgressBar;
use Term::ProgressBar::Quiet;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use Tk::MARC::Editor;
use Tk::Markdown;
use Tk::MarkdownTk;
use Tk::MatchEntry;
use Tk::MDI;
use Tk::MenuDialog;
use Tk::MenuHash;
use Tk::MIMEApp;
use Tk::MIMEApp::DataToTk;
use Tk::MiniCalendar;
use Tk::MiniScale;
use Tk::MinMaxScale;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use WWW::MediaTemple;
use WWW::Mediawiki::Client;
use WWW::MeGa;
use WWW::MelbourneBikeShare;
use WWW::MelissaData::PhoneLocation;
use WWW::MenuGrinder;
use WWW::Metalgate;
use WWW::Metaweb;
use WWW::Meta::XML::Browser;
use WWW::Mixcloud;
use WWW::Mixi;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use WWW::Reddit;
use WWW::RenRen;
use WWW::Resource;
use WWW::REST;
use WWW::REST::Apid;
use WWW::Restaurant::Menu;
use WWW::RiotGames::LeagueOfLegends;
use WWW::RMDown;
use WWW::RoboCop;
use WWW::Robot;
use WWW::RobotRules;
view all matches for this distribution
view release on metacpan or search on metacpan
BleedingOpenGL.pm view on Meta::CPAN
gluUnProject_p
);
@glut_func = qw(
done_glutInit
glutAddMenuEntry
glutAddSubMenu
glutAttachMenu
glutBitmapCharacter
glutBitmapHeight
glutBitmapLength
glutBitmapString
glutBitmapWidth
glutButtonBoxFunc
glutChangeToMenuEntry
glutChangeToSubMenu
glutCloseFunc
glutCopyColormap
glutCreateMenu
glutCreateSubWindow
glutCreateWindow
glutDestroyMenu
glutDestroyWindow
glutDetachMenu
glutDeviceGet
glutDialsFunc
glutDisplayFunc
glutEnterGameMode
glutEntryFunc
BleedingOpenGL.pm view on Meta::CPAN
glutFullScreen
glutGameModeGet
glutGameModeString
glutGet
glutGetColor
glutGetMenu
glutGetModifiers
glutGetWindow
glutHideOverlay
glutHideWindow
glutIconifyWindow
BleedingOpenGL.pm view on Meta::CPAN
glutLayerGet
glutLeaveGameMode
glutLeaveMainLoop
glutMainLoop
glutMainLoopEvent
glutMenuDestroyFunc
glutMenuStateFunc
glutMenuStatusFunc
glutMotionFunc
glutMouseFunc
glutMouseWheelFunc
glutOverlayDisplayFunc
glutPassiveMotionFunc
BleedingOpenGL.pm view on Meta::CPAN
glutPostOverlayRedisplay
glutPostRedisplay
glutPostWindowOverlayRedisplay
glutPostWindowRedisplay
glutPushWindow
glutRemoveMenuItem
glutRemoveOverlay
glutReportErrors
glutReshapeFunc
glutReshapeWindow
glutSetColor
glutSetCursor
glutSetIconTitle
glutSetKeyRepeat
glutSetMenu
glutSetOption
glutSetWindow
glutSetWindowTitle
glutShowOverlay
glutShowWindow
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Acme/MetaSyntactic/vim.pm view on Meta::CPAN
FuncUndefined
GUIEnter
InsertChange
InsertEnter
InsertLeave
MenuPopup
QuickFixCmdPost
QuickFixCmdPre
RemoteReply
SessionLoadPost
ShellCmdPost
view all matches for this distribution
view release on metacpan or search on metacpan
- Upgraded to Mojolicious 4.99.
- Upgraded to Semantic UI 0.17.0
0.41 2014-05-11
- Translated intro.md. to Bulgarian.
- Menu items in adobar.html.ep now are only icons.
- Implemented Ado::Plugin::I18n.
First lexicons are in English and Bulgarian.
- Upgraded to Mojolicious 4.98.
- Removed unneeded Ado::Model::SqliteSequence
- $CODENAME changed to
view all matches for this distribution
view release on metacpan or search on metacpan
examples/corpus/VectorListOps.java
examples/corpus/VectorOps.java
examples/corpus/Widening.java
examples/corpus/WindowWithButtons.java
examples/corpus/WindowWithButtons2.java
examples/corpus/WindowWithMenu.java
examples/corpus/WriteIntToFile.java
examples/corpus/WriteStringToFile.java
examples/corpus_with_java_and_cpp/AbstractShape.cc
examples/corpus_with_java_and_cpp/AbstractShapeIncremental.cc
examples/corpus_with_java_and_cpp/AbstractShapeIncremental.java
examples/corpus_with_java_and_cpp/LinkedList.java
examples/corpus_with_java_and_cpp/LinkedListGeneric.java
examples/corpus_with_java_and_cpp/ListMixedType.java
examples/corpus_with_java_and_cpp/ListOps.java
examples/corpus_with_java_and_cpp/main_CrazyWindow.cc
examples/corpus_with_java_and_cpp/main_WindowWithMenu.cc
examples/corpus_with_java_and_cpp/Manager.cc
examples/corpus_with_java_and_cpp/Manager.java
examples/corpus_with_java_and_cpp/MapHist.java
examples/corpus_with_java_and_cpp/Mixin.cc
examples/corpus_with_java_and_cpp/MultiConstructors.java
examples/corpus_with_java_and_cpp/VirtualPrint2.cc
examples/corpus_with_java_and_cpp/VtprConcealed.cc
examples/corpus_with_java_and_cpp/Widening.java
examples/corpus_with_java_and_cpp/WindowWithButtons.java
examples/corpus_with_java_and_cpp/WindowWithButtons2.java
examples/corpus_with_java_and_cpp/WindowWithMenu.cc
examples/corpus_with_java_and_cpp/WindowWithMenu.java
examples/corpus_with_java_and_cpp/WriteIntToFile.java
examples/corpus_with_java_and_cpp/WriteStringToFile.java
examples/microcorpus/ExceptionUsage1.java
examples/microcorpus/ExceptionUsage2.java
examples/minicorpus/1.java
view all matches for this distribution
view release on metacpan or search on metacpan
share/static/alice.js view on Meta::CPAN
this.tabs.observe("transitionend", this.shiftEnd.bind(this));
this.makeSortable();
this.setupTopic();
this.setupNicklist();
this.setupMenus();
},
getBacklog: function (win, max, limit) {
this.connection.requestChunk(win.id, limit, max);
},
share/static/alice.js view on Meta::CPAN
join: function (action) {
var win = this.getWindow(action['window'].id);
if (!win) {
this.insertWindow(action['window'].id, action.html);
win = this.openWindow(action['window']);
this.updateOverflowMenus();
if (this.selectedSet && !this.currentSetContains(win)) {
if (confirm("You joined "+win.title+" which is not in the '"+this.selectedSet+"' set. Do you want to add it?")) {
this.tabsets[this.selectedSet].push(win.id);
win.show();
Alice.tabsets.submit(this.tabsets);
share/static/alice.js view on Meta::CPAN
},
addWindow: function(win) {
this.window_map.set(win.id, win);
if (window.fluid)
window.fluid.addDockMenuItem(win.title, win.focus.bind(win));
},
removeWindow: function(win) {
this.tabs_layout = this.tabs.getLayout();
this.windows().invoke("updateTabLayout");
if (win.active) this.focusLast();
if (window.fluid)
window.fluid.removeDockMenuItem(win.title);
if (win.id == this.previousFocus.id) {
this.previousFocus = 0;
}
this.window_map.unset(win.id);
this.connection.closeWindow(win);
share/static/alice.js view on Meta::CPAN
win.focus();
return win;
}
},
updateOverflowMenus: function() {
var left = $('tab_menu_left');
var right = $('tab_menu_right');
left.removeClassName("unread");
left.removeClassName("highlight");
share/static/alice.js view on Meta::CPAN
right_menu.innerHTML += sprintf('<li rel="%s" class="%s"><span>%s</span></a>', win.id, classes.join(" "), win.title)
}
}.bind(this));
this.toggleMenu(left, !!left_menu.innerHTML);
this.toggleMenu(right, !!right_menu.innerHTML);
},
toggleMenu: function(menu, active) {
if (active) {
menu.addClassName("active");
}
else {
menu.removeClassName("active");
share/static/alice.js view on Meta::CPAN
this.tabs_layout = this.tabs.getLayout();
},
shiftEnd: function(e) {
this.tabs_layout = this.tabs.getLayout();
this.updateOverflowMenus();
},
makeSortable: function() {
Sortable.create('tabs', {
overlap: 'horizontal',
share/static/alice.js view on Meta::CPAN
window.fluid.dockBadge = "";
},
ready: function() {
this.freeze();
setTimeout(this.updateOverflowMenus.bind(this), 1000);
this.fetchOembeds(function() {
this.connection.connect(function() {
this.focusHash() || this.activeWindow().focus();
}.bind(this));
share/static/alice.js view on Meta::CPAN
if (!active.visible) {
active = this.nextWindow();
}
if (active) active.shiftTab();
setTimeout(this.updateOverflowMenus.bind(this), 2000);
}
},
selectSet: function(name) {
var hash = window.location.hash;
share/static/alice.js view on Meta::CPAN
clearSet: function(elem) {
elem.up('ul').select('li').invoke('removeClassName', 'selectedset');
elem.addClassName('selectedset');
this.windows().invoke("show");
this.selectSet('');
this.updateOverflowMenus();
this.activeWindow().shiftTab();
},
currentSetContains: function(win) {
var set = this.selectedSet;
share/static/alice.js view on Meta::CPAN
this.topic.setStyle({height: this.topic_height});
}
}.bind(this));
},
setupMenus: function() {
var click = this.supportsTouch ? "touchend" : "mouseup";
$('join_button').observe(click, function (e) {
e.stop();
this.toggleJoin();
share/static/alice.js view on Meta::CPAN
var position = active.captureScrollPosition();
var end = function(){
alice.freeze();
alice.tabs_width = $('tabs_container').getWidth();
alice.updateOverflowMenus();
active.scrollToPosition(position);
active.shiftTab();
window.onresize = resize;
};
share/static/alice.js view on Meta::CPAN
window.onfocus = function () {
alice.input.focus();
alice.freeze();
alice.tabs_width = $('tabs_container').getWidth();
alice.updateOverflowMenus();
alice.isFocused = true
alice.clearMissed();
};
view all matches for this distribution
view release on metacpan or search on metacpan
cp/codepress/index.html view on Meta::CPAN
language = (typeof(Content.languages[arguments[0]])!='undefined') ? arguments[0] : this.setLanguage();
cpLanguage.innerHTML = Content.languages[language].name;
if(cpBody.document.designMode=='on') cpBody.document.designMode = 'off';
CodePress.loadScript(cpBody.document, '../languages/'+language+'.js', function () { cpBody.CodePress.syntaxHighlight('init'); })
cpBody.document.getElementById('cp-lang-style').href = '../languages/'+language+'.css';
this.hideMenu();
}
else {
var extension = filename.replace(/.*\.([^\.]+)$/,'$1');
var aux = false;
for(lang in Content.languages) {
view all matches for this distribution
view release on metacpan or search on metacpan
test/functional/grid/simplegrid.html
test/functional/index.html
test/functional/keyMap/basic.html
test/functional/toc.html
test/functional/treeNavigator/basic.html
test/functional/treeNavigator/dropdownMenu.html
test/functional/treeNavigator/dynamic_content.html
test/functional/treeNavigator/dynamic_content/content1.html
test/functional/treeNavigator/dynamic_content/content2.html
test/functional/treeNavigator/dynamic_content/content3.html
test/functional/treeNavigator/form.html
view all matches for this distribution
view release on metacpan or search on metacpan
src/subversion/tools/examples/SvnCLBrowse view on Meta::CPAN
self.xrc.Load('memory:XRC/SvnCLBrowse.xrc')
# XML Resource stuff.
self.resources = _item()
self.resources.CLBFrame = self.xrc.LoadFrame(None, 'CLBFrame')
self.resources.CLBMenuBar = self.xrc.LoadMenuBar('CLBMenuBar')
self.resources.CLBMenuFileQuit = self.xrc.GetXRCID('CLBMenuFileQuit')
self.resources.CLBMenuOpsInfo = self.xrc.GetXRCID('CLBMenuOpsInfo')
self.resources.CLBMenuOpsMembers = self.xrc.GetXRCID('CLBMenuOpsMembers')
self.resources.CLBMenuHelpAbout = self.xrc.GetXRCID('CLBMenuHelpAbout')
self.resources.CLBDirNav = self.resources.CLBFrame.FindWindowById(
self.xrc.GetXRCID('CLBDirNav'))
self.resources.CLBChangelists = self.resources.CLBFrame.FindWindowById(
self.xrc.GetXRCID('CLBChangelists'))
self.resources.CLBVertSplitter = self.resources.CLBFrame.FindWindowById(
src/subversion/tools/examples/SvnCLBrowse view on Meta::CPAN
self.resources.CLBOutput = self.resources.CLBFrame.FindWindowById(
self.xrc.GetXRCID('CLBOutput'))
self.resources.CLBStatusBar = self.resources.CLBFrame.CreateStatusBar(2)
# Glue some of our extra stuff onto the main frame.
self.resources.CLBFrame.SetMenuBar(self.resources.CLBMenuBar)
self.resources.CLBStatusBar.SetStatusWidths([-1, 100])
# Event handlers. They are the key to the world.
wx.EVT_CLOSE(self.resources.CLBFrame, self._FrameClosure)
wx.EVT_MENU(self, self.resources.CLBMenuFileQuit, self._FileQuitMenu)
wx.EVT_MENU(self, self.resources.CLBMenuOpsInfo, self._OpsInfoMenu)
wx.EVT_MENU(self, self.resources.CLBMenuOpsMembers, self._OpsMembersMenu)
wx.EVT_MENU(self, self.resources.CLBMenuHelpAbout, self._HelpAboutMenu)
wx.EVT_TREE_ITEM_ACTIVATED(self, self.resources.CLBDirNav.GetTreeCtrl().Id,
self._DirNavSelChanged)
# Reset our working directory
self._SetWorkingDirectory(self.wc_dir)
src/subversion/tools/examples/SvnCLBrowse view on Meta::CPAN
items = self.resources.CLBChangelists.GetSelections()
for item in items:
changelists.append(str(self.resources.CLBChangelists.GetString(item)))
return changelists
def _OpsMembersMenu(self, event):
self.resources.CLBOutput.Clear()
changelists = self._GetSelectedChangelists()
if not changelists:
return
src/subversion/tools/examples/SvnCLBrowse view on Meta::CPAN
svn.client.info2(self.wc_dir, revision, revision,
_info_receiver, svn.core.svn_depth_infinity,
[changelist], self.svn_ctx)
self.resources.CLBOutput.AppendText("\n")
def _OpsInfoMenu(self, event):
self.resources.CLBOutput.Clear()
changelists = self._GetSelectedChangelists()
if not changelists:
return
src/subversion/tools/examples/SvnCLBrowse view on Meta::CPAN
changelists, self.svn_ctx)
def _FrameClosure(self, event):
self._Destroy()
def _FileQuitMenu(self, event):
self._Destroy()
def _HelpAboutMenu(self, event):
wx.MessageBox("SvnCLBrowse"
" -- graphical Subversion changelist browser.\n\n",
"About SvnCLBrowse",
wx.OK | wx.CENTER,
self.resources.CLBFrame)
src/subversion/tools/examples/SvnCLBrowse view on Meta::CPAN
pass
_XML_RESOURCE = """<?xml version="1.0" ?>
<resource>
<object class="wxMenuBar" name="CLBMenuBar">
<object class="wxMenu">
<label>&File</label>
<object class="wxMenuItem" name="CLBMenuFileQuit">
<label>&Quit</label>
<accel>CTRL+Q</accel>
<help>Quit SvnCLBrowse.</help>
</object>
</object>
<object class="wxMenu">
<label>&Subversion</label>
<object class="wxMenuItem" name="CLBMenuOpsInfo">
<label>&Info</label>
<help>Show information about members of the selected changelist(s).</help>
</object>
<object class="wxMenuItem" name="CLBMenuOpsMembers">
<label>&Members</label>
<help>List the members of the selected changelist(s).</help>
</object>
</object>
<object class="wxMenu">
<label>&Help</label>
<object class="wxMenuItem" name="CLBMenuHelpAbout">
<label>&About...</label>
<help>About SvnCLBrowse.</help>
</object>
</object>
</object>
view all matches for this distribution
view release on metacpan or search on metacpan
SaxonHE9-8-0-7J/doc/saxondocs.css view on Meta::CPAN
brown: #B3956F
dark grey: #7F7396
purple-ish grey: #9FA6B4
light grey: #F5F5F5 (Menu dropdown blocks)
font-family: Verdana, Arial, Helvetica, sans-serif;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
"Lucida Console", Monaco, monospace;
Georgia,"Times New Roman",Times,serif;
view all matches for this distribution
view release on metacpan or search on metacpan
smoke/qt/qt3support/qt3support_includes.h view on Meta::CPAN
#include <QtCore>
#include <Qt3Support>
#include <QColorGroup>
#include <QConstString>
#include <QCustomEvent>
#include <QMenuItem>
#include <QTextIStream>
view all matches for this distribution
view release on metacpan or search on metacpan
share/swagger-ui-bundle.js view on Meta::CPAN
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
function n(e){return e instanceof t||e instanceof Date||e instanceof RegExp}function r(e){if(e instanceof t){var n=t.alloc?t.alloc(e.length):new t(e.length);return e.copy(n),n}if(e instanceof Date)return new Date(e.getTime());if(e instanceof RegExp)r...
/**
* Checks if an event is supported in the current execution environment.
*
* NOTE: This will not work correctly for non-generic events such as `change`,
* `reset`, `load`, `error`, and `select`.
share/swagger-ui-bundle.js view on Meta::CPAN
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/Object.defineProperty(t,"__esModule",{value:!0});var r="function"==typeof Symbol&&Symbol.for,o=r?Symbol.for("react.element"):60103,i=r?Symbol.for("react.portal"):60106,a=r?Symbol.for("react.fragment"):60107,s=r?Symbol.for("react.strict_mode"):6010...
/*!
* https://github.com/Starcounter-Jack/JSON-Patch
* (c) 2017 Joachim Wester
* MIT license
*/
view all matches for this distribution
view release on metacpan or search on metacpan
src/win32/include/winapi/wincon.h view on Meta::CPAN
WORD EventType;
union {
KEY_EVENT_RECORD KeyEvent;
MOUSE_EVENT_RECORD MouseEvent;
WINDOW_BUFFER_SIZE_RECORD WindowBufferSizeEvent;
MENU_EVENT_RECORD MenuEvent;
FOCUS_EVENT_RECORD FocusEvent;
} Event;
} INPUT_RECORD,*PINPUT_RECORD;
#define KEY_EVENT 0x1
view all matches for this distribution
view release on metacpan or search on metacpan
src/win32/include/winapi/wincon.h view on Meta::CPAN
WORD EventType;
union {
KEY_EVENT_RECORD KeyEvent;
MOUSE_EVENT_RECORD MouseEvent;
WINDOW_BUFFER_SIZE_RECORD WindowBufferSizeEvent;
MENU_EVENT_RECORD MenuEvent;
FOCUS_EVENT_RECORD FocusEvent;
} Event;
} INPUT_RECORD,*PINPUT_RECORD;
#define KEY_EVENT 0x1
view all matches for this distribution
view release on metacpan or search on metacpan
share/docs/output/Ext.layout.ColumnLayout.js
share/docs/output/Ext.layout.ContainerLayout.js
share/docs/output/Ext.layout.FitLayout.js
share/docs/output/Ext.layout.FormLayout.js
share/docs/output/Ext.layout.HBoxLayout.js
share/docs/output/Ext.layout.MenuLayout.js
share/docs/output/Ext.layout.TableLayout.js
share/docs/output/Ext.layout.ToolbarLayout.js
share/docs/output/Ext.layout.VBoxLayout.js
share/docs/output/Ext.layout.boxOverflow.HorizontalMenu.js
share/docs/output/Ext.layout.boxOverflow.HorizontalScroller.js
share/docs/output/Ext.layout.boxOverflow.Menu.js
share/docs/output/Ext.layout.boxOverflow.None.js
share/docs/output/Ext.layout.boxOverflow.Scroller.js
share/docs/output/Ext.layout.boxOverflow.VerticalScroller.js
share/docs/output/Ext.list.BooleanColumn.js
share/docs/output/Ext.list.Column.js
share/docs/output/Ext.list.ListView.js
share/docs/output/Ext.list.NumberColumn.js
share/docs/output/Ext.list.Sorter.js
share/docs/output/Ext.menu.BaseItem.js
share/docs/output/Ext.menu.CheckItem.js
share/docs/output/Ext.menu.ColorMenu.js
share/docs/output/Ext.menu.DateMenu.js
share/docs/output/Ext.menu.Item.js
share/docs/output/Ext.menu.Menu.js
share/docs/output/Ext.menu.MenuMgr.js
share/docs/output/Ext.menu.Separator.js
share/docs/output/Ext.menu.TextItem.js
share/docs/output/Ext.slider.MultiSlider.js
share/docs/output/Ext.slider.SingleSlider.js
share/docs/output/Ext.slider.Thumb.js
share/docs/source/CheckItem.html
share/docs/source/Checkbox.html
share/docs/source/CheckboxGroup.html
share/docs/source/CheckboxSelectionModel.html
share/docs/source/ClickRepeater.html
share/docs/source/ColorMenu.html
share/docs/source/ColorPalette.html
share/docs/source/Column.html
share/docs/source/Column2.html
share/docs/source/ColumnDD.html
share/docs/source/ColumnLayout.html
share/docs/source/DataReader.html
share/docs/source/DataView.html
share/docs/source/DataWriter.html
share/docs/source/Date.html
share/docs/source/DateField.html
share/docs/source/DateMenu.html
share/docs/source/DatePicker.html
share/docs/source/DelayedTask.html
share/docs/source/Direct.html
share/docs/source/DirectProxy.html
share/docs/source/DirectStore.html
share/docs/source/Layer.html
share/docs/source/ListView.html
share/docs/source/LoadMask.html
share/docs/source/Loader.html
share/docs/source/MemoryProxy.html
share/docs/source/Menu.html
share/docs/source/MenuLayout.html
share/docs/source/MenuMgr.html
share/docs/source/MenuOverflow.html
share/docs/source/MessageBox.html
share/docs/source/MixedCollection.html
share/docs/source/NumberField.html
share/docs/source/Observable-more.html
share/docs/source/Observable.html
share/examples/desktop/images/winbar-btn.gif
share/examples/desktop/images/windows-bg.gif
share/examples/desktop/js/App.js
share/examples/desktop/js/Desktop.js
share/examples/desktop/js/Module.js
share/examples/desktop/js/StartMenu.js
share/examples/desktop/js/TaskBar.js
share/examples/desktop/sample.js
share/examples/desktop/wallpapers/blue.jpg
share/examples/desktop/wallpapers/desk.jpg
share/examples/desktop/wallpapers/desktop.jpg
share/examples/ux/SelectBox.js
share/examples/ux/SlidingPager.js
share/examples/ux/Spinner.js
share/examples/ux/SpinnerField.js
share/examples/ux/Spotlight.js
share/examples/ux/TabCloseMenu.js
share/examples/ux/TabScrollerMenu.js
share/examples/ux/TableGrid.js
share/examples/ux/ToolbarDroppable.js
share/examples/ux/ToolbarReorderer.js
share/examples/ux/XmlTreeLoader.js
share/examples/ux/css/CenterLayout.css
share/examples/ux/css/ux-all.css
share/examples/ux/fileuploadfield/FileUploadField.js
share/examples/ux/fileuploadfield/css/fileuploadfield.css
share/examples/ux/gridfilters/GridFilters.js
share/examples/ux/gridfilters/css/GridFilters.css
share/examples/ux/gridfilters/css/RangeMenu.css
share/examples/ux/gridfilters/filter/BooleanFilter.js
share/examples/ux/gridfilters/filter/DateFilter.js
share/examples/ux/gridfilters/filter/Filter.js
share/examples/ux/gridfilters/filter/ListFilter.js
share/examples/ux/gridfilters/filter/NumericFilter.js
share/examples/ux/gridfilters/images/find.png
share/examples/ux/gridfilters/images/greater_than.png
share/examples/ux/gridfilters/images/less_than.png
share/examples/ux/gridfilters/images/sort_filtered_asc.gif
share/examples/ux/gridfilters/images/sort_filtered_desc.gif
share/examples/ux/gridfilters/menu/ListMenu.js
share/examples/ux/gridfilters/menu/RangeMenu.js
share/examples/ux/images/bottom2.gif
share/examples/ux/images/down2.gif
share/examples/ux/images/elbow-minus-nl.gif
share/examples/ux/images/elbow-plus-nl.gif
share/examples/ux/images/left2.gif
share/src/widgets/layout/ColumnLayout.js
share/src/widgets/layout/ContainerLayout.js
share/src/widgets/layout/FitLayout.js
share/src/widgets/layout/FormLayout.js
share/src/widgets/layout/HBoxLayout.js
share/src/widgets/layout/MenuLayout.js
share/src/widgets/layout/TableLayout.js
share/src/widgets/layout/ToolbarLayout.js
share/src/widgets/layout/VBoxLayout.js
share/src/widgets/layout/box/MenuOverflow.js
share/src/widgets/layout/box/ScrollerOverflow.js
share/src/widgets/list/Column.js
share/src/widgets/list/ColumnResizer.js
share/src/widgets/list/ListView.js
share/src/widgets/list/Sorter.js
share/src/widgets/menu/BaseItem.js
share/src/widgets/menu/CheckItem.js
share/src/widgets/menu/ColorMenu.js
share/src/widgets/menu/DateMenu.js
share/src/widgets/menu/Item.js
share/src/widgets/menu/Menu.js
share/src/widgets/menu/MenuMgr.js
share/src/widgets/menu/Separator.js
share/src/widgets/menu/TextItem.js
share/src/widgets/tips/QuickTip.js
share/src/widgets/tips/QuickTips.js
share/src/widgets/tips/SliderTip.js
view all matches for this distribution
view release on metacpan or search on metacpan
share/vendor/js/bootstrap.js view on Meta::CPAN
$parent = getParent($this)
isActive = $parent.hasClass('open')
clearMenus()
if (!isActive) {
$parent.toggleClass('open')
}
share/vendor/js/bootstrap.js view on Meta::CPAN
.focus()
}
}
function clearMenus() {
$(toggle).each(function () {
getParent($(this)).removeClass('open')
})
}
share/vendor/js/bootstrap.js view on Meta::CPAN
/* APPLY TO STANDARD DROPDOWN ELEMENTS
* =================================== */
$(document)
.on('click.dropdown.data-api', clearMenus)
.on('click.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
.on('click.dropdown-menu', function (e) { e.stopPropagation() })
.on('click.dropdown.data-api' , toggle, Dropdown.prototype.toggle)
.on('keydown.dropdown.data-api', toggle + ', [role=menu]' , Dropdown.prototype.keydown)
view all matches for this distribution
view release on metacpan or search on metacpan
include/boost/config/platform/vxworks.hpp view on Meta::CPAN
// priority inverting semaphores, which is fine. On the other hand,
// for RTP's it defaults to using non priority inverting semaphores,
// which could easily pose a serious problem for a real time process.
//
// To change the default properties for POSIX-semaphores in VxWorks 7
// enable core > CORE_USER Menu > DEFAULT_PTHREAD_PRIO_INHERIT
//
// In VxWorks 6.x so as to integrate with boost.
// - Edit the file
// installDir/vxworks-6.x/target/usr/src/posix/pthreadLib.c
// - Around line 917 there should be the definition of the default
view all matches for this distribution
view release on metacpan or search on metacpan
patches/wxMSW-2.8.10-w64.patch view on Meta::CPAN
===================================================================
--- src/msw/menuitem.cpp (revisione 63679)
+++ src/msw/menuitem.cpp (copia locale)
@@ -188,7 +188,7 @@
// return the id for calling Win32 API functions
int wxMenuItem::GetRealId() const
{
- return m_subMenu ? (int)m_subMenu->GetHMenu() : GetId();
+ return m_subMenu ? wxPtrToUInt(m_subMenu->GetHMenu()) : GetId();
}
// get item state
Index: src/msw/mdi.cpp
===================================================================
patches/wxMSW-2.8.10-w64.patch view on Meta::CPAN
if ( !m_hWnd )
{
@@ -1433,14 +1433,14 @@
{
success = true;
::InsertMenu(hmenu, i, MF_BYPOSITION | MF_POPUP | MF_STRING,
- (UINT)subMenu, _("&Window"));
+ (UINT_PTR)subMenu, _("&Window"));
break;
}
}
if ( !success )
{
- ::AppendMenu(hmenu, MF_POPUP, (UINT)subMenu, _("&Window"));
+ ::AppendMenu(hmenu, MF_POPUP, (UINT_PTR)subMenu, _("&Window"));
}
}
Index: src/msw/tooltip.cpp
===================================================================
patches/wxMSW-2.8.10-w64.patch view on Meta::CPAN
--- src/msw/menu.cpp (revisione 63679)
+++ src/msw/menu.cpp (copia locale)
@@ -370,14 +370,14 @@
// id is the numeric id for normal menu items and HMENU for submenus as
// required by ::AppendMenu() API
- UINT id;
+ UINT_PTR id;
wxMenu *submenu = pItem->GetSubMenu();
if ( submenu != NULL ) {
wxASSERT_MSG( submenu->GetHMenu(), wxT("invalid submenu") );
submenu->SetParent(this);
- id = (UINT)submenu->GetHMenu();
+ id = (UINT_PTR)submenu->GetHMenu();
flags |= MF_POPUP;
}
@@ -963,7 +963,7 @@
for ( i = 0, it = m_menus.begin(); i < count; i++, it++ )
{
if ( !::AppendMenu((HMENU)m_hMenu, MF_POPUP | MF_STRING,
- (UINT)(*it)->GetHMenu(),
+ (UINT_PTR)(*it)->GetHMenu(),
m_titles[i]) )
{
wxLogLastError(wxT("AppendMenu"));
@@ -1035,7 +1035,7 @@
int mswpos = MSWPositionForWxMenu(GetMenu(pos),pos);
- UINT id;
+ UINT_PTR id;
UINT flagsOld = ::GetMenuState((HMENU)m_hMenu, mswpos, MF_BYPOSITION);
if ( flagsOld == 0xFFFFFFFF )
{
@@ -1048,7 +1048,7 @@
{
// HIBYTE contains the number of items in the submenu in this case
flagsOld &= 0xff;
- id = (UINT)::GetSubMenu((HMENU)m_hMenu, mswpos);
+ id = (UINT_PTR)::GetSubMenu((HMENU)m_hMenu, mswpos);
}
else
{
@@ -1124,7 +1124,7 @@
if ( !::InsertMenu(GetHmenu(), (UINT)mswpos,
MF_BYPOSITION | MF_POPUP | MF_STRING,
- (UINT)GetHmenuOf(menu), title) )
+ (UINT_PTR)GetHmenuOf(menu), title) )
{
wxLogLastError(wxT("InsertMenu"));
}
@@ -1191,7 +1191,7 @@
#else
if ( !::InsertMenu(GetHmenu(), mswpos,
MF_BYPOSITION | MF_POPUP | MF_STRING,
- (UINT)GetHmenuOf(menu), title) )
+ (UINT_PTR)GetHmenuOf(menu), title) )
{
wxLogLastError(wxT("InsertMenu"));
}
@@ -1250,7 +1250,7 @@
}
#else
if ( !::AppendMenu(GetHmenu(), MF_POPUP | MF_STRING,
- (UINT)submenu, title) )
+ (UINT_PTR)submenu, title) )
{
wxLogLastError(wxT("AppendMenu"));
}
Index: src/msw/tbar95.cpp
===================================================================
--- src/msw/tbar95.cpp (revisione 63679)
+++ src/msw/tbar95.cpp (copia locale)
view all matches for this distribution
view release on metacpan or search on metacpan
share/Managers/buildApp.pm view on Meta::CPAN
$self->application = ($source->getElementsByTagName('Application'))[0]->cloneNode(0);
$self->application->addChild(($source->getElementsByTagName('Config'))[0]->cloneNode(1));
$self->application->addChild(($source->getElementsByTagName('DataSource'))[0]->cloneNode(1));
$self->application->addChild(($source->getElementsByTagName('Relations'))[0]->cloneNode(1));
$self->application->addChild(($source->getElementsByTagName('MenuGroups'))[0]->cloneNode(1));
}
our $encoding;
sub prepare
view all matches for this distribution
view release on metacpan or search on metacpan
factpacks/Linux.fact view on Meta::CPAN
eggdrop2 => <reply> $who, IRC bot, written in C. URL: http://www.eggdrop.net/
Egoistic Wordlist Generator => <reply> $who, A wordlist generator with a variety of options.. URL: http://www.geocities.com/divideb0/
egrep-finger => <reply> $who, Extended finger program using extended regular expressions. URL: http://torch.rowan.edu/egrep-finger/
eGTK => <reply> $who, Bindings to GTK+ widget toolkit for Eiffel.. URL: http://www.netlabs.net/hp/richieb/gtk_eiffel.html
EHD => <reply> $who, patch for login to allow encrypted home directories under linux. URL: http://members.home.net/id-est/
EHeadlines => <reply> $who, Root Menu news system.. URL: http://dragon.acadiau.ca/~015940b/escripts/
EiC => <reply> $who, A bytecode C interpreter/compiler. URL: http://www.pobox.com/~eic/
eIRC => <reply> $who, . URL: http://www.castrop-rauxel.netsurf.de/homepages/eko.bono.surprijadi/eirc.html
ejboss => <reply> $who, Enterprise Java Beans application server for Linux. URL: http://www.ejboss.org
eject => <reply> $who, eject removable media. URL: http://www.pobox.com/~tranter/eject.html
Electric => <reply> $who, CAD/EDA tool for multiple levels of design. URL: http://www.electriceditor.com
factpacks/Linux.fact view on Meta::CPAN
Firewall Manager => <reply> $who, Graphical interface for Firewalls. URL: http://www.tectrip.net/arg/
fix-rhcd => <reply> $who, Tool for creating your own Red Hat Linux CDR from the ftp site.. URL: http://www.ajusd.org/~edward/fix-rhcd/
flarE => <reply> $who, epplet that calls bottlerocket to control X10 devices. URL: http://athena.student.umd.edu/
Flash => <reply> $who, Secure menuing shell for restricting local unix users. URL: http://www.netsoc.ucd.ie/flash/
Flash 4 Plugin for Netscape => <reply> $who, Flash 4 plugin for Netscape. URL: http://www.macromedia.com/
Flash Mount Menu => <reply> $who, Automounter/umounter. URL: http://lonestar.bizland.com/
Flash Web Server => <reply> $who, A fast, portable web server that performs aggressive caching. URL: http://www.cs.rice.edu/~vivek/flash/
Flashback => <reply> $who, Flashback is an mp3 visualization program.. URL: http://deadzone.student.umd.edu/flashback/news.pl
fletch => <reply> $who, Non interactive, multiplexing FTP/HTTP client.. URL: http://vipul.net/perl/
flexbackup => <reply> $who, Flexible backup script. URL: http://members.home.com/flexbackup/
FlexButtonZ => <reply> $who, Make desktop buttons in X from shellscripts.. URL: http://www.penguinpowered.com/~buttonz/
factpacks/Linux.fact view on Meta::CPAN
GOFAI-WMT => <reply> $who, Organize your free format information into a semantic network structure.. URL: http://www.cs.purdue.edu/homes/boloni/GofaiWeb/index.html
gogmagog => <reply> $who, Lightweight, robust, UNIX systems integrity monitor. URL: http://www.multimania.com/cparisel/gog/
GOGO => <reply> $who, Fast, open source MP3 encoder based on LAME. URL: http://www.kurims.kyoto-u.ac.jp/~shigeo/gogo_e.html
GoldED => <reply> $who, Mail/newsreader for Fidonet and Internet. URL: http://www.goldware.dk
Golgotha Forever => <reply> $who, 3D FPS/strategy game that will be available on nearly platform/OS.. URL: http://golgotha.opengames.org/
gomenu => <reply> $who, Menu script (bash/ksh) allows dynamic menu and help editing.. URL: http://www.digizen.net/members/geoffm/
Gomoku Apprentice => <reply> $who, A gomoku player learning from its own mistakes. URL: http://www.student.nada.kth.se/~d92-jwa/code/
Gone => <reply> $who, Newsreader for the Gnome Desktop Environment. URL: http://www.mvdstreek.cistron.nl/gone/
good-dog => <reply> $who, better than cat. URL: http://jl.photodex.com/dog/
Goose => <reply> $who, Statistical library.. URL: http://www.gnu.org/software/goose/
got_it => <reply> $who, Simple URL grabber. URL: http://www.roger.samond.ru/
factpacks/Linux.fact view on Meta::CPAN
ocschat => <reply> $who, Intranet Chat server and embedded java client, assimilated for ocsweb project. URL: http://demo.obsidian.co.za/
ocsemail => <reply> $who, Electronic web email system for you intranet. URL: http://demo.obsidian.co.za/
ocsexplorer => <reply> $who, ocsexplorer is an intranet file explorer for linux. URL: http://demo.obsidian.co.za
ocsfiles => <reply> $who, Front-end to your ftp site, allowing easy uploads and indexing. URL: http://demo.obsidian.co.za/
Octave => <reply> $who, . URL: http://bevo.che.wisc.edu/octave/
OCTREE => <reply> $who, 3D-CAD for architects / Powerful User Interface by Menu Motion Control. URL: http://www.octree.de
ODARS ISP Server => <reply> $who, Lets you easily host and manage Win clients' Web databases.. URL: http://www.odars.com/
ODBC-ODBC Bridge => <reply> $who, Provides ODBC access from Unix to remote ODBC data sources. URL: http://beta.easysoft.com/
oFBis => <reply> $who, Framebuffer graphical library for Linux.. URL: http://osis.nocrew.org/ofbis/
OfflineMailer => <reply> $who, Offline mail handler. URL: http://huizen.dds.nl/~wottie/mailer/
oidentd => <reply> $who, ident (rfc1413) daemon for linux that allows users to specify usernames. URL: http://www.numb.org/~odin/
factpacks/Linux.fact view on Meta::CPAN
UNFAIR => <reply> $who, A neat game.. URL: http://gtkgo.netpedia.net/
UNiBACK for Linux => <reply> $who, Fast, easy, reliable network backup solution for UNIX & Linux.. URL: http://www.orbitsw.com/
UNICON => <reply> $who, A CJK framebuffer console for Linux.. URL: http://turbolinux.com.cn/TLDN/chinese/project/unicon/
UniDict => <reply> $who, Universal dictionary system. URL: http://www.arcticnet.no/~ovek/unidict/
units => <reply> $who, converts between different systems of units. URL: ftp://ftp.gnu.org/gnu/units/
Universal Related Popup Menus => <reply> $who, Related popup menus. URL: http://www.webreference.com/dev/menus/
Universal TUN/TAP device driver => <reply> $who, Universal TUN/TAP device driver. URL: http://vtun.netpedia.net/tun/
Universe => <reply> $who, Space Strategy game. URL: http://rmi.net/~starkey/Universe/
Unix Command Line Masqdialer Client => <reply> $who, Access the Masqdialer Server via the command line. URL: http://cpwright.villagenet.com/cli-mclient/
Unix Desktop Environment => <reply> $who, A new GUI for Unix with a completely new look'n'feel. URL: http://www.ude.org
unixODBC => <reply> $who, Provides ODBC 3 connectivity for Unix. URL: http://www.unixodbc.org/
factpacks/Linux.fact view on Meta::CPAN
Wireless Tools/Howto => <reply> $who, Generic tools to setup some Wireless LAN drivers + exhaustive web ressources. URL: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
Wisio => <reply> $who, An experimental project for a graphical windowing system. URL: http://personal.eunet.fi/pp/wisio/
Wizard => <reply> $who, Component to add a Windows 95-like Wizard to an application.. URL: http://www.bigfoot.com/~teras/wizard/
wm2 => <reply> $who, Minimal, elegant and unusual window manager. URL: http://www.all-day-breakfast.com/wm2/
wmakerconf => <reply> $who, GTK based configuration tool for WindowMaker window manager. URL: http://ulli.linuxbox.com/wmakerconf/
WMAmpMenu => <reply> $who, A simple utility that inserts MP3 playlists in your WM root menu.. URL: http://www.snowman.sgic.fi/ssl/wmampmenu/
wmanager => <reply> $who, X11 window manager selector. URL: http://heuss.techfak.uni-bielefeld.de/www/mtessmer/wmanager/
wmapm => <reply> $who, Small dock-app that shows continually-updated APMstatistics. URL: http://nis-www.lanl.gov/~mgh/WindowMaker/DockApps.shtml
wmappl => <reply> $who, Window Maker Application Launcher. URL: http://www.pobox.com/~charkins/wmappl.html
wmbattery => <reply> $who, APM status dock app. URL: http://kitenet.net/programs/wmbattery/
WMBeats => <reply> $who, InternetTime Clock .. URL: http://shadowmere.student.utwente.nl
factpacks/Linux.fact view on Meta::CPAN
WMmnt => <reply> $who, a mount.app-like dockapp, that uses LEDs and big icons. URL: http://wmaker.strlen.net/stuff.shtml
WMMon => <reply> $who, . URL: http://windowmaker.mezaway.org/dockapps/wmmon.html
WMMon+SMP => <reply> $who, WMMon modified to work on Dual-Processor systems. URL: http://www.ne.jp/asahi/linux/timecop/
wmMoonClock => <reply> $who, Displays the current phase and ephemeris of the Moon.. URL: http://nis-www.lanl.gov/~mgh/WindowMaker/DockApps.shtml
wmmp3 => <reply> $who, mpg123 front end for Window Maker. URL: http://www.dotfiles.com/software/wmmp3/
WMmpg123 => <reply> $who, Menu generator for WindowMaker and mpg123. URL: http://hub.org/~jeff/
wmMuezzin => <reply> $who, Computes time and direction for a prayer to Mecca. URL: http://www.worldnet.net/~labayle/
wmnet => <reply> $who, Provides network statistics for the Window Maker desktop. URL: http://www.digitalkaos.net/linux/wmnet/
WMNetMon => <reply> $who, A WindowMaker dockable network host monitoring tool using ICMP pings.. URL: http://neubula.utad.pt/~alvieboy/new/wmaker.html
wmphoto => <reply> $who, Put your favorites pictures on your desktop. URL: http://www.dcc.uchile.cl/~amartoq/wmphoto
wmpinboard => <reply> $who, Window Maker pinboard dock-app. URL: http://www.tu-ilmenau.de/~gomar/stuff/wmpinboard/
factpacks/Linux.fact view on Meta::CPAN
SMM++ Mud Client => <reply> $who, SMM++ Mud Client is a mud client with extended and unique features. URL: http://www.Physik.Uni-Dortmund.DE/~issevers/SMM++/downloads/smm4r2.tar.gz
SMB-Mode => <reply> $who, SMB-Mode is a simple Emacs major mode to assist in editing Samba's smb.conf configuration file. URL: http://users.gtn.net/fraserm/smb-mode.el
mpg123-mysql => <reply> $who, mpg123-mysql consists of some patches to mpg123 which make it support MySQL. URL: http://www.nonsensss.de/domi/mpg123-mysql/mpg123-mysql-0.3.tar.gz
netttimer => <reply> $who, netttimer is a very small, simple program that calculates the amount of time and money you've spent using the internet. URL: http://members.xoom.com/kodgehopper/nettimer-0.01.tar.gz
Mserv => <reply> $who, Mserv is an MP3 server that has clients for telnet, Web and shell, and is easily extendable to other forms of interface. URL: http://www.mserv.org/download/
wmMailMenu => <reply> $who, wmMailMenu creates a Window Maker menu with mail addresses. URL: http://student.dei.uc.pt/~mtavares/wmMailMenu/wmMailMenu-latest.tgz
XPLSISNJASP => <reply> $who, XPLSISNJASP (Xplisnjasp Parport LightShow Is Not Just A Software Project) is an XMMS visualization plugin and it provides a light show via parallel port. URL: http://www.na.linux.hr/projects/xplsisnjasp/
ipacct => <reply> $who, ipacct is a script which collects IP accounting information for metered IP accounting usage. URL: ftp://ftp2.empnet.com/pub/ipacct/ipacct-1.06.tar.gz
fblogo => <reply> $who, fblogo will let you replace the penguin boot-logo you see when booting kernels with framebuffer support.. URL: http://home.sol.no/~dvedoy/fblogo-0.1.tar.gz
FutureForum Web Discussion Software => <reply> $who, FutureForum Web Discussion Software is a Web discussion forum written in Perl and MySQL, using DBI:DBD. URL:
Python Builder => <reply> $who, Python Builder is a direct replacement for MS Visual Basic on both the Windows and Linux platforms. URL: http://www.pcpros.net/~vbman/pbuilder.zip
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Amibroker/OLE/APXCreator.pm view on Meta::CPAN
=item * Open Amibroker -> Analysis window -> Settings
=item * Edit settings as per your requirement
=item * Menu-> File-> Save_AS -> select (.apx extenstion)
=back
For more infor on apx file, check this forum : L<http://amibrokerforum.proboards.com/thread/57/analysis-project-files-apx>
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Amon2/Setup/Asset/Bootstrap.pm view on Meta::CPAN
"bootstrap/css/bootstrap-reboot.min.css.map" => "{\"version\":3,\"sources\":[\"../../scss/bootstrap-reboot.scss\",\"../../scss/_reboot.scss\",\"dist/css/bootstrap-reboot.css\",\"../../scss/vendor/_rfs.scss\",\"bootstrap-reboot.css\",\"../../scss/mi...
"bootstrap/css/bootstrap.css" => "/*!\n * Bootstrap v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors\n * Copyright 2011-2019 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE...
"bootstrap/css/bootstrap.css.map" => "{\"version\":3,\"sources\":[\"../../scss/bootstrap.scss\",\"bootstrap.css\",\"../../scss/_root.scss\",\"../../scss/_reboot.scss\",\"../../scss/_variables.scss\",\"../../scss/vendor/_rfs.scss\",\"../../scss/mixi...
"bootstrap/css/bootstrap.min.css" => "/*!\n * Bootstrap v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors\n * Copyright 2011-2019 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LIC...
"bootstrap/css/bootstrap.min.css.map" => "{\"version\":3,\"sources\":[\"../../scss/bootstrap.scss\",\"../../scss/_root.scss\",\"../../scss/_reboot.scss\",\"dist/css/bootstrap.css\",\"../../scss/vendor/_rfs.scss\",\"bootstrap.css\",\"../../scss/mixi...
"bootstrap/dropdown.js" => "/*!\n * Bootstrap dropdown.js v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/bo...
"bootstrap/dropdown.js.map" => "{\"version\":3,\"file\":\"dropdown.js\",\"sources\":[\"../src/dropdown.js\"],\"sourcesContent\":[\"/**\\n * --------------------------------------------------------------------------\\n * Bootstrap (v4.4.1): dropdown...
"bootstrap/index.js" => "/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.4.0): index.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ------------------------...
"bootstrap/index.js.map" => "{\"version\":3,\"sources\":[\"../src/index.js\"],\"names\":[\"\$\",\"TypeError\",\"version\",\"fn\",\"jquery\",\"split\",\"minMajor\",\"ltMajor\",\"minMinor\",\"minPatch\",\"maxMajor\",\"Error\"],\"mappings\":\"AAaA;;;;...
"bootstrap/js/bootstrap.bundle.js" => "/*!\n * Bootstrap v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/boo...
"bootstrap/js/bootstrap.bundle.js.map" => "{\"version\":3,\"file\":\"bootstrap.bundle.js\",\"sources\":[\"../../js/src/util.js\",\"../../js/src/alert.js\",\"../../js/src/button.js\",\"../../js/src/carousel.js\",\"../../js/src/collapse.js\",\"../../...
"bootstrap/js/bootstrap.bundle.min.js" => "/*!\n * Bootstrap v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs...
"bootstrap/js/bootstrap.bundle.min.js.map" => "{\"version\":3,\"sources\":[\"../../js/src/util.js\",\"../../js/src/alert.js\",\"../../js/src/button.js\",\"../../js/src/carousel.js\",\"../../js/src/collapse.js\",\"../../node_modules/popper.js/dist/e...
"bootstrap/js/bootstrap.js" => "/*!\n * Bootstrap v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/bootstrap/...
"bootstrap/js/bootstrap.js.map" => "{\"version\":3,\"file\":\"bootstrap.js\",\"sources\":[\"../../js/src/util.js\",\"../../js/src/alert.js\",\"../../js/src/button.js\",\"../../js/src/carousel.js\",\"../../js/src/collapse.js\",\"../../js/src/dropdow...
"bootstrap/js/bootstrap.min.js" => "/*!\n * Bootstrap v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/bootst...
"bootstrap/js/bootstrap.min.js.map" => "{\"version\":3,\"sources\":[\"../../js/src/util.js\",\"../../js/src/alert.js\",\"../../js/src/button.js\",\"../../js/src/carousel.js\",\"../../js/src/collapse.js\",\"../../js/src/dropdown.js\",\"../../js/src/...
"bootstrap/modal.js" => "/*!\n * Bootstrap modal.js v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/bootstra...
"bootstrap/modal.js.map" => "{\"version\":3,\"file\":\"modal.js\",\"sources\":[\"../src/modal.js\"],\"sourcesContent\":[\"/**\\n * --------------------------------------------------------------------------\\n * Bootstrap (v4.4.1): modal.js\\n * Lic...
"bootstrap/popover.js" => "/*!\n * Bootstrap popover.js v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/boot...
"bootstrap/popover.js.map" => "{\"version\":3,\"file\":\"popover.js\",\"sources\":[\"../src/popover.js\"],\"sourcesContent\":[\"/**\\n * --------------------------------------------------------------------------\\n * Bootstrap (v4.4.1): popover.js\...
"bootstrap/scrollspy.js" => "/*!\n * Bootstrap scrollspy.js v4.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/...
view all matches for this distribution