view release on metacpan or search on metacpan
doc/examples/sql/DataGlue.as view on Meta::CPAN
// test w/ combobox, listbox, tree, chart?
_global.DataGlue = function(dataProvider)
{
this.dataProvider = dataProvider;
}
view all matches for this distribution
view release on metacpan or search on metacpan
applications/htmlroot/cgi-bin/admin/crontabs.pl view on Meta::CPAN
$sqlWhereList = " $SERVERTABLCRONTABS.catalogID='$CcatalogID' and";
$urlWithAccessParametersQuery = "&catalogID=$CcatalogID";
}
$sql = "select catalogID, catalogName from $SERVERTABLCATALOG where not catalogID = '$CATALOGID' and activated = '1' order by catalogName asc";
($rv, $catalogIDSelect, undef) = create_combobox_from_DBI ($rv, $dbh, $sql, 1, '', $CcatalogID, 'catalogID', $CATALOGID, '-Parent-', '', 'onChange="javascript:submitForm();"', $pagedir, $pageset, $htmlTitle, $subTitle, $sessionID, $debug);
$sql = "select SQL_NO_CACHE count(lineNumber) from $SERVERTABLCRONTABS $sqlWhereCount";
($rv, $numberRecordsIntoQuery) = do_action_DBI ($rv, $dbh, $sql, $pagedir, $pageset, $htmlTitle, $subTitle, $sessionID, $debug);
$navigationBar = record_navigation_bar ($pageNo, $numberRecordsIntoQuery, $RECORDSONPAGE, $ENV{SCRIPT_NAME} . "?pagedir=$pagedir&pageset=$pageset&debug=$debug&CGISESSID=$sessionID&action=$nextAction&orderBy=$orderBy$urlWithAcces...
applications/htmlroot/cgi-bin/admin/crontabs.pl view on Meta::CPAN
$sql = "select uKey, concat( title, ' (', $SERVERTABLENVIRONMENT.label, ')' ) as optionValueTitle from $SERVERTABLPLUGINS, $SERVERTABLENVIRONMENT where catalogID = '$CcatalogID' and $SERVERTABLPLUGINS.environment = $SERVERTABLENVIRONMENT.envi...
} else {
$sql = "select uKey, concat( title, ' (', $SERVERTABLENVIRONMENT.label, ')' ) from $SERVERTABLPLUGINS, $SERVERTABLENVIRONMENT where uKey = '$CuKey' and catalogID = '$CcatalogID' and $SERVERTABLPLUGINS.environment = $SERVERTABLENVIRONMENT.envi...
}
($rv, $uKeySelect, $htmlTitle) = create_combobox_from_DBI ($rv, $dbh, $sql, 1, $nextAction, $CuKey, 'uKey', 'none', '-Select-', $formDisabledPrimaryKey, '', $pagedir, $pageset, $htmlTitle, $subTitle, $sessionID, $debug);
$sql = "select collectorDaemon, groupName from $SERVERTABLCLLCTRDMNS where catalogID = '$CcatalogID' order by groupName";
($rv, $collectorDaemonSelect, undef) = create_combobox_from_DBI ($rv, $dbh, $sql, 1, '', $CcollectorDaemon, 'collectorDaemon', 'none', '-Select-', $formDisabledAll, '', $pagedir, $pageset, $htmlTitle, $subTitle, $sessionID, $debug);
}
$dbh->disconnect or $rv = error_trap_DBI(*STDOUT, "Sorry, the database was unable to add your entry.", $debug, $pagedir, $pageset, $htmlTitle, $subTitle, 3600, '', $sessionID);
}
applications/htmlroot/cgi-bin/admin/crontabs.pl view on Meta::CPAN
</td></tr>
HTML
}
if ( $action ne 'crontabView' ) {
my $noOfflineSelect = create_combobox_from_keys_and_values_pairs ('=>|noOFFLINE=>noOFFLINE|multiOFFLINE=>multiOFFLINE|noTEST=>noTEST', 'K', 0, $CnoOffline, 'noOffline', '', '', $formDisabledAll, '', $debug);
print <<HTML;
<tr><td><b>Arguments: </b></td><td>
<input type="text" name="arguments" value="$Carguments" size="100" maxlength="1024" $formDisabledAll>
</td></tr>
view all matches for this distribution
view release on metacpan or search on metacpan
smoke/qt/qtcore/tests/test.cpp view on Meta::CPAN
}
#endif
#ifdef TEST_QT_NO_COMBOBOX
#include "QtGui/qcombobox.h"
int main(int argc, char ** argv)
{
QComboBox foo( (QWidget*)NULL );
}
view all matches for this distribution
view release on metacpan or search on metacpan
share/docs/app-1c3b39672c292d36e4a5ff05c1bb7035.js view on Meta::CPAN
If you are unsure which license is appropriate for your use, please contact the sales department
at http://www.sencha.com/contact.
Build date: 2013-04-03 15:07:25
*/
var CodeMirror=(function(){function v(aN,aK){var b2={},bk=v.defaults;for(var aA in bk){if(bk.hasOwnProperty(aA)){b2[aA]=(aK&&aK.hasOwnProperty(aA)?aK:bk)[aA]}}var aE=document.createElement("div");aE.className="CodeMirror"+(b2.lineWrapping?" CodeMirro...
view all matches for this distribution
view release on metacpan or search on metacpan
dtds/dialog.dtd view on Meta::CPAN
)">
<!ENTITY % control "(dlg:bulletinboard|
dlg:button|
dlg:checkbox|
dlg:combobox|
dlg:menulist|
dlg:radiogroup|
dlg:titledbox|
dlg:textfield|
dlg:text|
dtds/dialog.dtd view on Meta::CPAN
dlg:checked %boolean; #IMPLIED
dlg:tristate %boolean; #IMPLIED
dlg:tabstop %boolean; #IMPLIED
>
<!ELEMENT dlg:combobox (dlg:menupopup?, (%event;)*)>
<!ATTLIST dlg:combobox %default-attributes;
dlg:tabstop %boolean; #IMPLIED
dlg:readonly %boolean; #IMPLIED
dlg:autocomplete %boolean; #IMPLIED
dlg:spin %boolean; #IMPLIED
dlg:maxlength %numeric; #IMPLIED
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Chart/Gtk2/DownloadDialog.pm view on Meta::CPAN
= Gtk2::ListStore->new ('Glib::String', 'Glib::Scalar');
$what_model->set ($what_model->append, 0, __('One symbol'), 1, undef);
$what_model->set ($what_model->append, 0, __('Favourites'), 1, 'favourites');
$what_model->set ($what_model->append, 0, __('All'), 1, 'all');
my $what_combobox = $self->{'what_combobox'}
= Gtk2::ComboBox->new_with_model ($what_model);
my $what_renderer = Gtk2::CellRendererText->new;
$what_combobox->pack_start ($what_renderer, 1);
$what_combobox->set_attributes ($what_renderer, text => 0);
$hbox->pack_start ($what_combobox, 0,0,0);
my $entry = $self->{'entry'} = Gtk2::Entry->new;
$hbox->pack_start ($entry, 1,1, 0.5 * Gtk2::Ex::Units::em($entry));
$what_combobox->signal_connect ('changed', \&_do_what_changed, $self);
$what_combobox->set_active (1);
$hbox->pack_start (Gtk2::Label->new (' ' . __('When:')), 0,0,0);
my $when_model = $self->{'when_model'}
= Gtk2::ListStore->new ('Glib::String', 'Glib::Scalar');
$when_model->insert_with_values (WHEN_UPDATE, 0 => __('Update'));
$when_model->insert_with_values (WHEN_BACKTO, 0 => __('Backto'));
my $when_combobox = $self->{'when_combobox'}
= Gtk2::ComboBox->new_with_model ($when_model);
my $when_renderer = Gtk2::CellRendererText->new;
$when_combobox->pack_start ($when_renderer, 1);
$when_combobox->set_attributes ($when_renderer, text => 0);
$hbox->pack_start ($when_combobox, 0,0,0);
$when_combobox->set_active (WHEN_UPDATE);
$when_combobox->signal_connect ('changed', \&_do_when_changed, $self);
require Date::Calc;
my ($today_year, undef, undef) = Date::Calc::Today();
my $when_adj = Gtk2::Adjustment->new ($today_year-5, # initial
1800, $today_year+1, # min,max
lib/App/Chart/Gtk2/DownloadDialog.pm view on Meta::CPAN
my ($textbuf, $self) = @_;
_update_clear_sensitive ($self);
}
sub _do_what_changed {
my ($combobox, $self) = @_;
my $idx = $self->{'what_combobox'}->get_active;
$self->{'entry'}->set_sensitive ($idx == 0);
}
sub _do_when_changed {
my ($combobox, $self) = @_;
my $idx = $self->{'when_combobox'}->get_active;
$self->{'when_spin'}->set_sensitive ($idx == WHEN_BACKTO);
}
# 'message' emission hook on App::Chart::Gtk2::Job
sub _do_job_message {
lib/App/Chart/Gtk2/DownloadDialog.pm view on Meta::CPAN
}
sub _do_start_button {
my ($self) = @_;
my $what = $self->{'what_combobox'}->get_active;
my $type;
if ($what == 0) {
$what = $self->{'entry'}->get_text;
$what =~ s/$RE{ws}{crop}//g; # leading and trailing whitespace
if ($what eq '') {
lib/App/Chart/Gtk2/DownloadDialog.pm view on Meta::CPAN
} else {
$type = __('All');
$what = '--all';
}
my $when_index = $self->{'when_combobox'}->get_active;
my $when = ($when_index == WHEN_BACKTO
? $self->{'when_spin'}->get_value
: undef);
$self->start ($what, $when);
view all matches for this distribution
view release on metacpan or search on metacpan
* + change main function of X and Y pendulum
* + sped up sketch drawing
* ? cleaned up POD from incorrect leftover bits
* ? added some POD
* " cleaned left lower corner of GUI
* " made all comboboxes readonly (were never meant to be editable, but select only)
* " deactivated help dialogs
0.56 2022-10-18 lichtkind
-------
* = maintenance
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Guiio/Ascii.pm view on Meta::CPAN
$i++;
$colCount++;
}
$i--;
$colCount--;
push(@EndX,$colCount); # we offset the last occurance of _ in that portion of the substring by 3 as the combobox infact ends after 3 characters on the following line
$colCount--;
}
elsif (substr($input,$i) =~ m/^\[Combo *\|V\].*/s and is_control_exists($colCount,$lineCount,'ComboHeader',\@StartX,\@StartY,\@EndX,\@EndY,\@ControlType) >= 0 and
is_control_exists($colCount+index(substr($input,$i),']'),$lineCount,'ComboHeader',\@StartX,\@StartY,\@EndX,\@EndY,\@ControlType) >= 0 and
is_control_exists($colCount+index(substr($input,$i),']'),$lineCount,'ComboHeader',\@StartX,\@StartY,\@EndX,\@EndY,\@ControlType) ==
is_control_exists($colCount,$lineCount,'ComboHeader',\@StartX,\@StartY,\@EndX,\@EndY,\@ControlType)) # found the content part of the combobox
{
my $controlIndex = is_control_exists($colCount,$lineCount,'ComboHeader',\@StartX,\@StartY,\@EndX,\@EndY,\@ControlType);
$ControlType[$controlIndex] = 'Combobox';
$EndY[$controlIndex] = $lineCount;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/InvestSim/GUI.pm view on Meta::CPAN
$currently_selected = $widget;
$widget->m_state('selected');
}
# Some global variables for some widgets that are accessed by other methods.
my $modes_combobox;
my @core_display_values;
my $display_table;
my $rent_cap_entry;
# Some variables that are linked to widgets, that are set from elsewhere.
lib/App/InvestSim/GUI.pm view on Meta::CPAN
{
my $frame = $root->new_ttk__frame(-padding => 5);
$frame->g_grid(-column => 1, -row => 1, -sticky => "nwes");
$frame->g_grid_columnconfigure(0, -weight => 1); # So that it extends to the whole width.
$modes_combobox = $frame->new_ttk__combobox(-state => 'readonly', -values => \@modes, -justify => 'center');
$modes_combobox->g_grid(-column => 0, -row => 0, -sticky => "we");
$modes_combobox->m_current(MONTHLY_PAYMENT);
$modes_combobox->g_bind('<<ComboboxSelected>>', \&update_displayed_mode);
}
# Build the core table with the computation output.
{
my $frame = $root->new_ttk__frame(-padding => 3);
lib/App/InvestSim/GUI.pm view on Meta::CPAN
}
# Update the values displayed in the core value table.
my @computed_values; # The output of compute_all()
sub update_displayed_mode {
my $current_mode = $modes_combobox->m_current();
$modes_combobox->m_selection('clear');
my $format = $modes_format[$current_mode];
for my $i (0..NUM_LOAN_DURATION-1) {
for my $j (0..NUM_LOAN_AMOUNT-1) {
$core_display_values[$i][$j] = $format->($computed_values[$i][$j][$current_mode]);
}
lib/App/InvestSim/GUI.pm view on Meta::CPAN
$total_rent_text = format_euro(App::InvestSim::Finance::total_rent());
$notary_fees_text = format_euro(App::InvestSim::Finance::notary_fees());
$total_invested_text = format_euro(App::InvestSim::Finance::total_invested());
my $current_mode = $modes_combobox->m_current();
$modes_combobox->m_selection('clear');
for my $i (0..NUM_LOAN_DURATION-1) {
for my $j (0..NUM_LOAN_AMOUNT-1) {
$computed_values[$i][$j] = [ App::InvestSim::Finance::calculate($values{loan_amounts}[$j], $values{loan_durations}[$i], $values{loan_rates}[$i]) ];
}
}
view all matches for this distribution
view release on metacpan or search on metacpan
public/javascripts/ace/mode-autohotkey.js view on Meta::CPAN
caseInsensitive: true },
{ token: 'support.constant.ahk',
regex: '(?:\\b|^)(?:shift|lshift|rshift|alt|lalt|ralt|control|lcontrol|rcontrol|ctrl|lctrl|rctrl|lwin|rwin|appskey|altdown|altup|shiftdown|shiftup|ctrldown|ctrlup|lwindown|lwinup|rwindown|rwinup|lbutton|rbutton|mbutton|wheelup|wheelleft|wh...
caseInsensitive: true },
{ token: 'variable.parameter',
regex: '(?:\\b|^)(?:pixel|mouse|screen|relative|rgb|ltrim|rtrim|join|low|belownormal|normal|abovenormal|high|realtime|ahk_id|ahk_pid|ahk_class|ahk_group|between|contains|in|is|integer|float|integerfast|floatfast|number|digit|xdigit|alpha|u...
caseInsensitive: true },
{ keywordMap: {"constant.language": autoItKeywords}, regex: '\\w+\\b'},
{ keywordMap: {"variable.function": atKeywords}, regex: '@\\w+\\b'},
{ token : "constant.numeric", regex : "[+-]?\\d+(?:(?:\\.\\d*)?(?:[eE][+-]?\\d+)?)?\\b"},
{ token: 'keyword.operator.ahk',
view all matches for this distribution
view release on metacpan or search on metacpan
share/files/public/skins/default/jquery-ui-1.9.1.custom/development-bundle/demos/accordion/hoverintent.html
share/files/public/skins/default/jquery-ui-1.9.1.custom/development-bundle/demos/accordion/index.html
share/files/public/skins/default/jquery-ui-1.9.1.custom/development-bundle/demos/accordion/no-auto-height.html
share/files/public/skins/default/jquery-ui-1.9.1.custom/development-bundle/demos/accordion/sortable.html
share/files/public/skins/default/jquery-ui-1.9.1.custom/development-bundle/demos/autocomplete/categories.html
share/files/public/skins/default/jquery-ui-1.9.1.custom/development-bundle/demos/autocomplete/combobox.html
share/files/public/skins/default/jquery-ui-1.9.1.custom/development-bundle/demos/autocomplete/custom-data.html
share/files/public/skins/default/jquery-ui-1.9.1.custom/development-bundle/demos/autocomplete/default.html
share/files/public/skins/default/jquery-ui-1.9.1.custom/development-bundle/demos/autocomplete/folding.html
share/files/public/skins/default/jquery-ui-1.9.1.custom/development-bundle/demos/autocomplete/images/jquery_32x32.png
share/files/public/skins/default/jquery-ui-1.9.1.custom/development-bundle/demos/autocomplete/images/jqueryui_32x32.png
view all matches for this distribution
view release on metacpan or search on metacpan
share/root/jquery-ui-1.11.1/jquery-ui.min.js view on Meta::CPAN
(function(e){"function"==typeof define&&define.amd?define(["jquery"],e):e(jQuery)})(function(e){function t(t,s){var n,a,o,r=t.nodeName.toLowerCase();return"area"===r?(n=t.parentNode,a=n.name,t.href&&a&&"map"===n.nodeName.toLowerCase()?(o=e("img[usema...
}})},_destroy:function(){this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeClass("ui-menu ui-widget ui-widget-content ui-menu-icons ui-front").removeAttr("role").removeAttr("tabIndex").removeAttr("aria-labelledby").rem...
}catch(n){}return!0},_showDatepicker:function(t){if(t=t.target||t,"input"!==t.nodeName.toLowerCase()&&(t=e("input",t.parentNode)[0]),!e.datepicker._isDisabledDatepicker(t)&&e.datepicker._lastInput!==t){var i,n,a,o,h,l,u;i=e.datepicker._getInst(t),e.d...
},_generatePosition:function(e,t){var i,s,n,a,o=this.options,r=this._isRootNode(this.scrollParent[0]),h=e.pageX,l=e.pageY;return r&&this.offset.scroll||(this.offset.scroll={top:this.scrollParent.scrollTop(),left:this.scrollParent.scrollLeft()}),t&&(t...
if(t.keyCode===e.ui.keyCode.TAB&&!t.isDefaultPrevented()){var i=this.uiDialog.find(":tabbable"),s=i.filter(":first"),n=i.filter(":last");t.target!==n[0]&&t.target!==this.uiDialog[0]||t.shiftKey?t.target!==s[0]&&t.target!==this.uiDialog[0]||!t.shiftKe...
f&&e.effects.save(i,l),i.from={height:s.height*a.from.y,width:s.width*a.from.x,outerHeight:s.outerHeight*a.from.y,outerWidth:s.outerWidth*a.from.x},i.to={height:s.height*a.to.y,width:s.width*a.to.x,outerHeight:s.height*a.to.y,outerWidth:s.width*a.to....
return e.ui.ddmanager&&(e.ui.ddmanager.current=this),e.ui.ddmanager&&!o.dropBehaviour&&e.ui.ddmanager.prepareOffsets(this,t),this.dragging=!0,this.helper.addClass("ui-sortable-helper"),this._mouseDrag(t),!0},_mouseDrag:function(t){var i,s,n,a,o=this....
}).addClass("ui-tabs-anchor").attr({role:"presentation",tabIndex:-1}),this.panels=e(),this.anchors.each(function(i,s){var n,a,o,r=e(s).uniqueId().attr("id"),h=e(s).closest("li"),l=h.attr("aria-controls");t._isLocal(s)?(n=s.hash,o=n.substring(1),a=t.e...
view all matches for this distribution
view release on metacpan or search on metacpan
],
"cookies": [],
"content": {
"size": 436180,
"mimeType": "text/javascript",
"text": "/* _GlobalPrefix_ */\n/* _Module_:quantum */\ntry{\nvar s_,s_aaa=\"function\"==typeof Object.defineProperties?Object.defineProperty:function(a,b,c){if(c.get||c.set)throw new TypeError(\"ES3 does not support getters and setters.\"...
},
"redirectURL": "",
"headersSize": -1,
"bodySize": 0,
"_transferSize": 0
view all matches for this distribution
view release on metacpan or search on metacpan
lib/AsposeCellsCloud/Object/CheckBox.pm view on Meta::CPAN
read_only => '',
},
'shadow' => {
datatype => 'boolean',
base_name => 'Shadow',
description => 'Indicates whether the combobox has 3-D shading.',
format => '',
read_only => '',
},
'value' => {
datatype => 'boolean',
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CLI/Gwrapper/wxGrid.pm view on Meta::CPAN
use Carp;
use Scalar::Util(qw( looks_like_number ));
use Wx qw(
:sizer
:combobox
:textctrl
wxNOT_FOUND wxID_EXIT
wxTELETYPE
);
use Wx::Event qw(
view all matches for this distribution
view release on metacpan or search on metacpan
bin/cvs_wxlog view on Meta::CPAN
use base qw(Wx::Frame);
use File::Basename;
use Wx::Event qw(EVT_MENU EVT_BUTTON EVT_COMBOBOX EVT_TREE_SEL_CHANGED);
use Wx qw(:window :sizer :treectrl :bitmap :button :combobox :statictext :icon :color);
use Wx qw(wxDefaultPosition wxDefaultSize wxOK);
use constant ID_QUIT => 10000;
sub new {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CallBackery/qooxdoo/callbackery/source/class/callbackery/ui/form/Auto.js view on Meta::CPAN
this._settingData--;
},
/**
* set the data in a combobox
*
* @param box {var} TODOC
* @param widget {var} TODOC
* @param data {var} TODOC
*/
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Catalyst/Plugin/AutoCRUD/Model/StorageEngine/DBIC/CRUD.pm view on Meta::CPAN
my $link = $c->stash->{cpac}->{m}->t->{ $ci->extra('ref_table') };
# some kind of update to an existing relation
if (!exists $params->{'checkbox.' . $col}) {
# someone is messing with the AJAX (tests?)
next COL if !defined $params->{'combobox.' . $col};
# user has blanked the field to remove the relation
if (!length $params->{'combobox.' . $col}) {
$self_row->set_column($_ => undef)
for @{$ci->extra('fields')};
delete $proxy_updates->{$col};
}
# user has cleared or not updated the field
next COL if $params->{'combobox.' . $col} !~ m/\000/;
# update to new related record
# we find the target and pass in the row object to DBIC
my $finder = _extract_ID($params->{'combobox.' . $col});
my $found_row = $c->model( $link->extra('model') )->find($finder, {key => 'primary'})
or $self_row->throw_exception("autocrud: failed to find row for $col");
$self_row->set_inflated_columns({$col => $found_row});
delete $proxy_updates->{$col};
lib/Catalyst/Plugin/AutoCRUD/Model/StorageEngine/DBIC/CRUD.pm view on Meta::CPAN
$new_related->{$fcol} = $params->{"$col.$fcol"};
}
# any foreign keys (belongs_to) in the related record
# we find the target and pass the row object to DBIC
elsif (exists $params->{"combobox.$col.$fcol"}) {
next unless length $params->{"combobox.$col.$fcol"};
my $finder = _extract_ID($params->{"combobox.$col.$fcol"});
my $link_link = $c->stash->{cpac}->{m}->t->{ $fci->extra('ref_table') };
$new_related->{$fcol} =
$c->model( $link_link->extra('model') )->find($finder, {key => 'primary'})
or $self_row->throw_exception("autocrud: failed to find row for $fcol");
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CatalystX/ListFramework.pm view on Meta::CPAN
Displaying tabulated lists of database records, updating those records and
creating new ones is a common task in Catalyst applications.
This class supplies such lists, and forms to edit such records, to a set of
templates, using simple definition files and your L<DBIx::Class> Catalyst
model. A search form is also supplied, which can include JSON-powered
ExtJS comboboxes (see L<http://www.extjs.com/>).
To run the included demo application, grab a copy of ExtJS, then
cd t/
ln -s /path/to/extjs/ static/extjs-1.1
view all matches for this distribution
view release on metacpan or search on metacpan
share/js/jquery-ui-1.11.4.js view on Meta::CPAN
// Create button
this.button = $( "<span>", {
"class": "ui-selectmenu-button ui-widget ui-state-default ui-corner-all",
tabindex: this.options.disabled ? -1 : 0,
id: this.ids.button,
role: "combobox",
"aria-expanded": "false",
"aria-autocomplete": "list",
"aria-owns": this.ids.menu,
"aria-haspopup": "true"
})
view all matches for this distribution
view release on metacpan or search on metacpan
share/web/static/css/main.css view on Meta::CPAN
@import "app-base.css";
@import "base.css";
@import "nav.css";
@import "context-menus.css";
@import "calendar.css";
@import "combobox.css";
@import "keybindings.css";
@import "forms.css";
@import "halos.css";
@import "app.css";
@import "autocomplete.css";
view all matches for this distribution
view release on metacpan or search on metacpan
bin/SplitCombine.xml view on Meta::CPAN
<property name="left_attach">2</property>
<property name="right_attach">3</property>
</packing>
</child>
<child>
<object class="GtkComboBox" id="combobox1">
<property name="width_request">80</property>
<property name="height_request">28</property>
<property name="visible">True</property>
<property name="model">liststore1</property>
<child>
view all matches for this distribution
view release on metacpan or search on metacpan
public/javascripts/jQuery/jquery-ui-1.12.min.js view on Meta::CPAN
(function(t){"function"==typeof define&&define.amd?define(["jquery"],t):t(jQuery)})(function(t){function e(t){for(var e=t.css("visibility");"inherit"===e;)t=t.parent(),e=t.css("visibility");return"hidden"!==e}function i(t){for(var e,i;t.length&&t[0]!...
}}(t.fn.show),hide:function(t){return function(s){if(i(s))return t.apply(this,arguments);var n=e.apply(this,arguments);return n.mode="hide",this.effect.call(this,n)}}(t.fn.hide),toggle:function(t){return function(s){if(i(s)||"boolean"==typeof s)retur...
this.isMultiLine=o||!a&&this._isContentEditable(this.element),this.valueMethod=this.element[o||a?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(n...
}},_updateDatepicker:function(e){this.maxRows=4,m=e,e.dpDiv.empty().append(this._generateHTML(e)),this._attachHandlers(e);var i,s=this._getNumberOfMonths(e),n=s[1],a=17,r=e.dpDiv.find("."+this._dayOverClass+" a");r.length>0&&o.apply(r.get(0)),e.dpDiv...
},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)|...
},disable:t.noop,enable:t.noop,close:function(e){var i=this;this._isOpen&&this._trigger("beforeClose",e)!==!1&&(this._isOpen=!1,this._focusedElement=null,this._destroyOverlay(),this._untrackInstance(),this.opener.filter(":focusable").trigger("focus")...
},_refresh:function(){this._createRange(),this._createHandles(),this._setupEvents(),this._refreshValue()},_createHandles:function(){var e,i,s=this.options,n=this.element.find(".ui-slider-handle"),o="<span tabindex='0'></span>",a=[];for(i=s.values&&s....
this._delay(function(){n===this.counter&&this.refreshPositions(!s)})},_clear:function(t,e){function i(t,e,i){return function(s){i._trigger(t,s,e._uiHash(e))}}this.reverting=!1;var s,n=[];if(!this._noFinalSort&&this.currentItem.parent().length&&this.p...
view all matches for this distribution
view release on metacpan or search on metacpan
share/assets/dash_core_components/async~dropdown.js view on Meta::CPAN
/*! For license information please see async~dropdown.js.LICENSE */
(window.webpackJsonpdash_core_components=window.webpackJsonpdash_core_components||[]).push([[0],{197:function(e,t,n){"use strict";!function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(...
//# sourceMappingURL=async~dropdown.js.map
view all matches for this distribution
view release on metacpan or search on metacpan
etk_test/etk_test.pl view on Meta::CPAN
label => "Menu",
frame => "adv",
cb => \&menu_window_show
},
combobox => {
label => "Combobox",
frame => "adv",
cb => \&combobox_window_show
},
iconbox => {
label => "Iconbox",
frame => "adv",
etk_test/etk_test.pl view on Meta::CPAN
my $menu_item = Etk::Menu::Item::Separator->new();
$menubar->Append($menu_item);
return $menu_item;
}
sub __combobox_entry_populate
{
my $combo = shift;
my $dir = shift;
$combo->Clear();
etk_test/etk_test.pl view on Meta::CPAN
}
}
sub combobox_window_show
{
my $win = Etk::Window->new();
$win->TitleSet("Etk-Perl Combo Test");
my $vbox = Etk::VBox->new(0, 3);
my $frame = Etk::Frame->new("Simple combobox");
$vbox->Append($frame);
my $combobox = Etk::Combobox::new_default();
$frame->Add($combobox);
$combobox->ItemAppend("Test 1");
$combobox->ItemAppend("Test 2");
$combobox->ItemAppend("Test 3");
$frame = Etk::Frame->new("Entry combobox");
$vbox->Append($frame);
$combobox = Etk::Combobox::Entry->new();
$combobox->SignalConnect("active-item-changed", sub {
print "TODO\n";
});
$combobox->ColumnAdd(EntryImage, 24, EntryNone, 0.0);
$combobox->ColumnAdd(EntryLabel, 75, EntryExpand, 0.0);
$combobox->Build();
$frame->Add($combobox);
__combobox_entry_populate($combobox, ".");
$frame = Etk::Frame->new("Some stock icons");
$vbox->Append($frame);
my $vbox2 = Etk::VBox->new(0, 3);
$frame->Add($vbox2);
my $image = Etk::Image->new(DocumentNew, SizeBig);
$vbox2->Append($image);
$combobox = Etk::Combobox->new();
$combobox->ColumnAdd(ColumnTypeImage, 24, 0, 0.0);
$combobox->ColumnAdd(ColumnTypeLabel, 75, 1, 0.0);
$combobox->Build();
$vbox2->Append($combobox);
for( my $i = DocumentNew;
$i <= FormatTextUnderline; $i++)
{
my $image2 = Etk::Image->new($i, SizeSmall);
my $item = $combobox->ItemAppend($image2, Etk::Stock::label_get($i));
# $item->ColSet(1, Etk::Stock::label_get($i));
$item->DataSet($i);
}
$combobox->ActiveItemSet($combobox->ActiveItemGet());
$combobox->SignalConnect("active-item-changed",
sub {
my $item = $combobox->ActiveItemGet();
my $stock_id = $item->DataGet();
$image->SetFromStock($stock_id, SizeBig);
}
);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/FBP/Perl.pm view on Meta::CPAN
} elsif ( $window->isa('FBP::Choice') ) {
$lines = $self->choice_create($window, $parent);
} elsif ( $window->isa('FBP::Choicebook') ) {
$lines = $self->choicebook_create($window, $parent);
} elsif ( $window->isa('FBP::ComboBox') ) {
$lines = $self->combobox_create($window, $parent);
} elsif ( $window->isa('FBP::ColourPickerCtrl') ) {
$lines = $self->colourpickerctrl_create($window, $parent);
} elsif ( $window->isa('FBP::CustomControl' ) ) {
$lines = $self->customcontrol_create($window, $parent);
} elsif ( $window->isa('FBP::DatePickerCtrl') ) {
lib/FBP/Perl.pm view on Meta::CPAN
$self->window_style($control),
");",
);
}
sub combobox_create {
my $self = shift;
my $control = shift;
my $parent = $self->object_parent(@_);
my $id = $self->object_id($control);
my $value = $self->quote( $control->value );
view all matches for this distribution
view release on metacpan or search on metacpan
t/03_simple.t view on Meta::CPAN
is_deeply(
[ $combo->items ],
[ 'one', 'two', "a'b", 'c"d \\"' ],
'->items',
);
is( $combo->OnCombobox, 'on_combobox', '->OnCombobox' );
# Line properties
my $line = $fbp->find_first(
isa => 'FBP::StaticLine',
);
view all matches for this distribution
view release on metacpan or search on metacpan
CompanyNames/TextSupport.pm view on Meta::CPAN
combin combinable combination combinational combinations combine combined combiner combiners combines combining
combinator combinators
combinatorial combinatoric combinatorical combinatorics
combline comblines
combo combos
combobox comboboxes
combust combustable combusted combuster combustibility combustible combustibles combusting combustion combustions combusts
combustor combustors
come comer comers comes coming
comeback comebacks
comedian comedians
view all matches for this distribution
view release on metacpan or search on metacpan
doc/examples/sql/DataGlue.as view on Meta::CPAN
// test w/ combobox, listbox, tree, chart?
_global.DataGlue = function(dataProvider)
{
this.dataProvider = dataProvider;
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/GUIDeFATE.pm view on Meta::CPAN
}
while ($line =~m/(\^([A-z]+)\s*\^)/g){ #ComboBoxes
my $ps=length($`);my $label=$2; my $len=length ($label);$label=~s/^(\s+)|(\s+)$//g;
$line=~s/(\^([A-z]+)\s*\^)/" " x length($1)/e;
$log= "combobox calls function &combo$bid\n"; ##
if ($verbose){ print $log; }
if ($auto){ $autoGen.=makeSub("combo$bid", "combobox with data from \@$label"); }
addWidget(["combo",$bid,$label,[$winScale*($ps*2-1),$winScale*$l*4],[$winScale*($len*2+3),$winScale*4], \&{"main::combo".$bid}]);
$bid++;
}
while ($line =~m/(\{([^}]*)\})/g){ # buttons are made from { <label> }
my $ps=length($`);my $label=$2; my $len=length ($label);$label=~s/^(\s+)|(\s+)$//g;
view all matches for this distribution