view release on metacpan or search on metacpan
lib/PDF/API2/Simple.pm view on Meta::CPAN
These methods modify the actual layout of the PDF. Note that most of these methods set some internal state. Most often, the last C<x> and C<y> are set after the rendered object.
Most times, underscores may be stripped and the arguments will still work, such as is the difference between C<fill_color>, and C<fillcolor>.
=head3 popup C<text>[, C<%opts>]
Creates a 25x25 box at C<opts{x}> (or the current C<x>), C<opts{y}> (or the current C<y>) to represent an annotation at that point. The user may then click that icon for a full annotation.
=cut
sub popup {
my ($self, $text, %opts) = @_;
my $x = exists $opts{'x'} ? $opts{'x'} : $self->x;
my $y = exists $opts{'y'} ? $opts{'y'} : $self->y;
my $annotation = $self->current_page->annotation;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/PDF/Builder/Annotation.pm view on Meta::CPAN
Defines the annotation as a text note with content string C<$text> and
options %opts (common parameters, text, open: see descriptions below).
The C<$text> may include newlines \n for multiple lines. Note that the option
'border' is ignored, since an I<icon> is used.
The option C<text> is the popup's label string, not to be confused with the
main C<$text>.
The icon appears in the upper left corner of the C<rect> selection rectangle,
and its active clickable area is fixed by the icon (it is I<not> equal to the
rectangle). The icon size is fixed, and its fill color set by C<color>.
lib/PDF/Builder/Annotation.pm view on Meta::CPAN
$self->rect(@{$opts{'rect'}}) if defined $opts{'rect'};
$self->Color(@{$opts{'color'}}) if defined $opts{'color'};
#$self->border($opts{'border'}) if defined $opts{'border'}; # ignored
$self->open($opts{'open'}) if defined $opts{'open'};
# popup label (title)
# have seen /T as (xFEFF UTF-16 chars)
$self->{'T'} = PDFString($opts{'text'}, 'p') if exists $opts{'text'};
# icon opacity?
if (defined $opts{'opacity'}) {
$self->{'CA'} = PDFNum($opts{'opacity'});
lib/PDF/Builder/Annotation.pm view on Meta::CPAN
Defines the annotation as a text note with content string C<$text> and
options %opts (color, text, open, opacity: see descriptions below).
The C<$text> may include newlines \n for multiple lines.
C<text> is the popup's label string, not to be confused with the main C<$text>.
There is no icon. Instead, the annotated text marked by C<$PointList> is
highlighted in one of four ways specified by C<$highlight>.
=back
lib/PDF/Builder/Annotation.pm view on Meta::CPAN
if (defined $opts{'color'}) {
$self->Color(@{$opts{'color'}});
} else {
$self->Color([]);
}
# popup label (title)
# have seen /T as (xFEFF UTF-16 chars)
$self->{'T'} = PDFString($opts{'text'}, 'p') if exists $opts{'text'};
# opacity?
if (defined $opts{'opacity'}) {
$self->{'CA'} = PDFNum($opts{'opacity'});
lib/PDF/Builder/Annotation.pm view on Meta::CPAN
Defines the annotation as a movie from C<$file> with
content (MIME) type C<$contentType> and
options %opts (common parameters, text: see descriptions below).
The C<rect> rectangle B<also serves as the area where the movie is played>, so
it should be of usable size and aspect ratio. It does not use a separate popup
player. It is known to play .avi and .wav files -- others have not been tested.
Using Adobe Reader, it will not play .mpg files (unsupported type). More work
is probably needed on this annotation method.
=back
lib/PDF/Builder/Annotation.pm view on Meta::CPAN
#$f->{' streamfile'} = $file;
$self->rect(@{$opts{'rect'}}) if defined $opts{'rect'};
$self->border(@{$opts{'border'}}) if defined $opts{'border'};
$self->Color(@{$opts{'color'}}) if defined $opts{'color'};
# popup label (title) DOESN'T SEEM TO SHOW UP ANYWHERE
# self->A->T and self->T also fail to display
$self->{'Movie'}->{'T'} = PDFString($opts{'text'}, 'p') if exists $opts{'text'};
return $self;
}
lib/PDF/Builder/Annotation.pm view on Meta::CPAN
If given, show the entire path and file name on mouse rollover, rather than
just the file name.
=item text => string
A text label for the popup (on mouseover) that contains the file name.
=back
Note that while PDF permits different specifications (paths) to DOS/Windows,
Mac, and Unix (including Linux) versions of a file, and different format copies
lib/PDF/Builder/Annotation.pm view on Meta::CPAN
return $self;
}
# TBD additional annotation types without icons
# free text, line, square, circle, polygon (1.5), polyline (1.5), highlight,
# underline, squiggly, strikeout, caret (1.5), ink, popup, sound, widget,
# screen (1.5), printermark, trapnet, watermark (1.6), 3D (1.6), redact (1.7)
# TBD additional annotation types with icons
# stamp
# icons: Approved, Experimental, NotApproved, Asis, Expired,
view all matches for this distribution
view release on metacpan or search on metacpan
0.07 Thu Oct 23 2003
Added an example about "Filling in a form without
spending a fortune"
0.06 Wed Sep 3 2003
A new example about how to produce bookmarks. Also
an example how to make "individual" popup menus.
0.05 Sun Aug 17
Added 3 examples with links
0.04 Thu June 5
- Changed last example to use PDF::Reuse::Barcode and
let it show 3 different barcode images
view all matches for this distribution
view release on metacpan or search on metacpan
lib/PDL/Graphics/Prima.pm view on Meta::CPAN
# Other important and basic settings
selectable => 1,
buffered => 1,
popupItems => default_popup_items(),
};
}
sub default_popup_items
{[
['~Copy' => 'copy_to_clipboard' ],
['P~rint' => 'print' ],
['~Export to' => [
[ '~Image' => 'save_to_image' ],
lib/PDL/Graphics/Prima.pm view on Meta::CPAN
# Set the new min/max values:
$self->y->minmax($min_real, $max_real);
$self->clear_event;
}
elsif ($x_stop_rel == $x_start_rel and $y_stop_rel == $y_start_rel) {
# Call the popup menu if it 'looks' like a right-click
# by not clearing the event
} else {
$self->clear_event;
}
# Remove the previous button record, so a zoom rectangle is not drawn:
view all matches for this distribution
view release on metacpan or search on metacpan
use PDL::IO::HDF5;
use Tk::Balloon;
my $maxElements = 50; # Largest Array (in number of elements) that we
# will try to show in a popup balloon
my $filename = shift @ARGV || 'varlen.hdf5';
my $mw = MainWindow->new;
view all matches for this distribution
view release on metacpan or search on metacpan
t/sess_refcnt view on Meta::CPAN
sq_base_url|s:19:"http://192.168.0.17";base_uri|s:9:"/webmail/";onetimepad|s:8:"3eoPdw==";sqimap_capabilities|a:16:{s:9:"IMAP4REV1";b:1;s:8:"LITERAL+";b:1;s:3:"ACL";b:1;s:4:"IDLE";b:1;s:9:"NAMESPACE";b:1;s:17:"MAILBOX-REFERRALS";b:1;s:6:"BINARY";b:1;...
";}delimiter|s:1:"/";username|s:17:"test@192.168.0.17";prefs_cache|a:43:{s:7:"isStyle";s:7:"default";s:17:"show_html_default";s:1:"0";s:4:"sort";s:1:"0";s:15:"compose_new_win";s:1:"1";s:15:"smallcal_bottom";s:1:"0";s:18:"smallcal_separator";s:1:"0";s...
";s:9:"formatted";s:5:"INBOX";s:14:"unformatted-dm";s:5:"INBOX";s:11:"unformatted";s:5:"INBOX";s:16:"unformatted-disp";s:5:"INBOX";s:2:"id";i:5;s:5:"flags";a:1:{i:0;s:11:"noinferiors";}}i:1;a:7:{s:3:"raw";s:33:"* LIST (\NoInferiors) "/" Draft
";s:9:"formatted";s:5:"Draft";s:14:"unformatted-dm";s:5:"Draft";s:11:"unformatted";s:5:"Draft";s:16:"unformatted-disp";s:5:"Draft";s:2:"id";i:2;s:5:"flags";a:1:{i:0;s:11:"noinferiors";}}i:2;a:7:{s:3:"raw";s:32:"* LIST (\NoInferiors) "/" Sent
";s:9:"formatted";s:4:"Sent";s:14:"unformatted-dm";s:4:"Sent";s:11:"unformatted";s:4:"Sent";s:16:"unformatted-disp";s:4:"Sent";s:2:"id";i:8;s:5:"flags";a:1:{i:0;s:11:"noinferiors";}}i:3;a:7:{s:3:"raw";s:33:"* LIST (\NoInferiors) "/" Trash
";s:9:"formatted";s:5:"Trash";s:14:"unformatted-dm";s:5:"Trash";s:11:"unformatted";s:5:"Trash";s:16:"unformatted-disp";s:5:"Trash";s:2:"id";i:14;s:5:"flags";a:1:{i:0;s:11:"noinferiors";}}i:4;a:7:{s:3:"raw";s:36:"* LIST (\NoInferiors) "/" Calendar
";s:9:"formatted";s:8:"Calendar";s:14:"unformatted-dm";s:8:"Calendar";s:11:"unformatted";s:8:"Calendar";s:16:"unformatted-disp";s:8:"Calendar";s:2:"id";i:0;s:5:"flags";a:1:{i:0;s:11:"noinferiors";}}i:5;a:7:{s:3:"raw";s:36:"* LIST (\NoInferiors) "/" C...
view all matches for this distribution
view release on metacpan or search on metacpan
lib/PMLTQ/CGI.pm view on Meta::CPAN
my ($cgi)=@_;
return
$cgi->div({-style=>'width:99%', -class=>'qmenubar'},
$cgi->div(
{-style=>'float:right'},
'Limit: '.$cgi->popup_menu(-name=>"limit",
-default=>(scalar($cgi->param('limit'))||100),
-values => [1,10,100,1000,10000]),
'Timeout: '.$cgi->popup_menu(-name=>"timeout",
-default=>(scalar($cgi->param('timeout'))||30),
-values => [20,30,45,60,90,120,200,300])
).
$cgi->start_div({-id => 'qm'}).$cgi->end_div()
).
view all matches for this distribution
view release on metacpan or search on metacpan
doc/pmltq_tutorial_web_client.html view on Meta::CPAN
a t-node attribute <code class="literal">functor</code>
from menu <span class="inlinemediaobject"><img src="images/callouts/toolbar-Attributes.png" height="25" alt="Attributes"></span> in the toolbar. Next, select operator <code class="literal">=</code> from the <code class="literal">Comparison</co...
in the <span class="inlinemediaobject"><img src="images/callouts/toolbar-Operators.png" height="25" alt="Operators"></span> menu in the toolbar, and type <code class="literal">"PRED"</code>. Finish by closing the definition of the t-no...
<a class="xref" href="#fig-screenshot-web-lindat-pdt30-query-PRED" title="Figure 6. A simple query searching for Predicates in PDT 3.0">Figure 6, âA simple query searching for Predicates in PDT 3.0â</a> shows how the query should look li...
</p><div class="figure"><a name="fig-screenshot-web-lindat-pdt30-query-PRED"></a><p class="title"><b>Figure 6. A simple query searching for Predicates in PDT 3.0</b></p><div class="figure-contents"><div class="mediaobject" align="center"><img ...
</p></li><li class="listitem"><p>Method 2: In the query text area, start typing <code class="literal">t-</code>. The popup menu with possible node types will be offered:
</p><div class="figure"><a name="fig-screenshot-web-lindat-pdt30-node-type-hints-t-layer-cut"></a><p class="title"><b>Figure 7. List of available node types for PDT 3.0 containing the string <code class="literal">t-</code></b></p><div class="f...
Choose <code class="literal">t-node</code> and continue typing the query, i.e. <code class="literal">[ fu</code>. After you start typing the name of the attribute,
another popup window with possible attributes is offered:
</p><div class="figure"><a name="fig-screenshot-web-lindat-pdt30-attribute-hints-functor-cut"></a><p class="title"><b>Figure 8. List of available attribute names in PDT 3.0 containing the string <code class="literal">fu</code></b></p><div clas...
Choose <code class="literal">functor</code> and finish typing the rest of the query, i.e. <code class="literal">="functor"]</code>.
</p><p>
The resulting query should be the same as in <a class="xref" href="#fig-screenshot-web-lindat-pdt30-query-PRED" title="Figure 6. A simple query searching for Predicates in PDT 3.0">Figure 6, âA simple query searching for Predicates in PDT ...
view all matches for this distribution
view release on metacpan or search on metacpan
htdocs/examples/dojo/dojo/dojo.js.uncompressed.js view on Meta::CPAN
}
var curnode = node;
do{
var n = curnode.offsetLeft;
//FIXME: ugly hack to workaround the submenu in
//popupmenu2 does not shown up correctly in opera.
//Someone have a better workaround?
if(!d.isOpera || n > 0){
ret.x += isNaN(n) ? 0 : n;
}
var t = curnode.offsetTop;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/POE/Component/SmokeBox/Backend.pm view on Meta::CPAN
$GOT_PTY = 1;
};
if ( $^O eq 'MSWin32' ) {
require POE::Wheel::Run::Win32;
# MSWin32: Disable critical error popups
# Thanks to https://rt.cpan.org/Public/Bug/Display.html?id=56547
# Call kernel32.SetErrorMode(SEM_FAILCRITICALERRORS):
# "The system does not display the critical-error-handler message box.
# Instead, the system sends the error to the calling process." and
lib/POE/Component/SmokeBox/Backend.pm view on Meta::CPAN
if ( eval { require Win32API::File } ) {
Win32API::File->import( qw( SetErrorMode SEM_FAILCRITICALERRORS SEM_NOGPFAULTERRORBOX ) );
SetErrorMode( SEM_FAILCRITICALERRORS() | SEM_NOGPFAULTERRORBOX() );
} else {
warn "Unable to use Win32API::File -> $@";
warn 'This means sometimes perl.exe will popup a dialog box... Annoying!';
}
}
}
my @cmds = qw(check index smoke);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/POE/XUL/ChangeManager.pm view on Meta::CPAN
my( $self ) = @_;
$self->Prepend( [ 'timeslice' ] );
}
##############################################################
sub popup_window
{
my( $self, $name, $features ) = @_;
$name ||= $WIN_NAME++;
$features ||= {};
croak "Features must be a hashref" unless 'HASH' eq ref $features;
$self->Prepend( [ 'popup_window', $name, $features ] );
return $name;
}
##############################################################
sub close_window
lib/POE/XUL/ChangeManager.pm view on Meta::CPAN
return $self->flush;
}
elsif( $op eq 'timeslice' ) { # give up a timeslice
return $self->timeslice;
}
elsif( $op eq 'popup_window' ) {
return $self->popup_window( @param );
}
elsif( $op eq 'close_window' ) {
return $self->close_window( @param );
}
else {
lib/POE/XUL/ChangeManager.pm view on Meta::CPAN
to find out when all XBL has finished rendering, the C<timeslice> is handled
by pausing for 5 milliseconds.
To be very useful, you should preceed this with a L</flush>.
=item popup_window
pxInstruction( [ popup_window => $id, $features ] );
PLEASE USE L<POE::XUL::Window/open> INSTEAD.
Tell the client library to create a new window. The new window's name will
be C<$id>. The new window will be created with the features defined in
lib/POE/XUL/ChangeManager.pm view on Meta::CPAN
C<resizable>,
C<dependent>.
See L<http://developer.mozilla.org/en/docs/DOM:window.open> for an explanation
of what they mean.
Once the window is opened, it will load C</popup.xul?app=$APP&SID=$SID> (where
C<$APP> is the current application and C<$SID> is the session ID of the
current application instance). C<popup.xul> will then send a C<connect>
event. See L<POE::XUL/connect>.
=item close_window
view all matches for this distribution
view release on metacpan or search on metacpan
lib/PPI/HTML/CodeFolder.pm view on Meta::CPAN
#
# folddiv CSS
#
our $ftcss = <<'EOFTCSS';
.popupdiv {
font-family: fixed, Courier;
font-size: 8pt;
font-style: normal;
/* lineheight: 10pt; */
border:solid 1px #666666;
view all matches for this distribution
view release on metacpan or search on metacpan
PPresenter/Export.pm view on Meta::CPAN
( -options => [ $default, grep {$_ ne $default} @_ ]
, -variable => \$export->{$flag}
);
}
sub popup($$)
{ my ($export, $show, $screen) = @_;
$export->popup($show, $screen)
->Popup(-popover => 'cursor');
}
1;
view all matches for this distribution
view release on metacpan or search on metacpan
-value => "Edit Table: $lookup_table");
}
}
$output .= "<TD>".
$search_click .
$query->popup_menu(-name => "pq_$field",
-values => \@keys,
-default => $default,
-labels => $lookup_hash) .
"$lookup_button</TD></TR>\n";
undef $lookup_button;
view all matches for this distribution
view release on metacpan or search on metacpan
'Borrowed' some code to open files from Padre's Directory browser.
More UI final touches on "Open Resource"... more simpler...
Handle Padre crash while calling a Padre action that should be called at that moment
e.g. no documents...
Display currently searched directory beside "Open Resource" dialog title
Added an options popup menu for skip VCS and MANIFEST.SKIP
"Open Resource" now respects MANIFEST.SKIP if it exists in project directory.
You can now copy the file path.
Selecting multiple files displays the number of files selected.
Open Resource status label should display files paths all the time mimicking Eclipse's behavior.
Changed "Open in Explorer" to "Open in File Browser" to be more less-win32 centric (El_Che++)
- Handled 'no filename' crash
- Do nothing to exit the dialog when "No suggestion" is selected...
0.11 2009.6.21
- Implemented "Quick Fix" popup list box which finds its list via
Padre::Document::SubClass->event_on_quick_fix.
- Renamed List Key bindings into Quick Assist.
0.10 2009.6.10
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Padre/Plugin/Perl6/StdColorizerTask.pm view on Meta::CPAN
# 1. popping out a command line on each run...
# 2. STD.pm uses Storable
# 3. Padre TaskManager does not like tasks that do Storable operations...
if (Padre::Constant::WIN32) {
# on win32 platforms, we need to use this to prevent command line popups when using wperl.exe
require Win32;
require Win32::Process;
sub print_error {
print Win32::FormatMessage( Win32::GetLastError() );
view all matches for this distribution
view release on metacpan or search on metacpan
* Changed the blame (log) display to show as a tree view.
* gettext-ified some messages (Zeno Gantner)
0.04 2009.11.11
* Fixed up the handling of the commit message Dialog - You are now prompted when no commit message is provided.
* Changed the add message from popup to status bar (SEWI)
0.03 2009.11.07
* Added Update Action - (Peter Lavender)
* Ask for save before commit (Sewi)
* Fixed a Use of uninitlized value for new files added to SVN (Sewi)
view all matches for this distribution
view release on metacpan or search on metacpan
share/doc/wxwidgets.pod view on Meta::CPAN
virtual bool AnimateShow(const wxRect& rect, int flags)
This member function is not normally called in application code.
Instead, it can be implemented in a derived class to create a custom
popup animation.
Parameters
Same as in DoShowPopup.
share/doc/wxwidgets.pod view on Meta::CPAN
Copies the selected text to the clipboard and removes the selection.
=head2 Wx::ComboCtrl::DoSetPopupControl
void DoSetPopupControl(wxComboPopup* popup)
This member function is not normally called in application code.
Instead, it can be implemented in a derived class to return default
wxComboPopup, incase popup is NULL.
Note: If you have implemented OnButtonClick to do something else than
show the popup, then DoSetPopupControl must always return NULL.
=head2 Wx::ComboCtrl::DoShowPopup
virtual void DoShowPopup(const wxRect& rect, int flags)
This member function is not normally called in application code.
Instead, it must be called in a derived class to make sure popup is
properly shown after a popup animation has finished (but only if
AnimateShow did not finish the animation within it's function scope).
Parameters
rect
Position to show the popup window at, in screen coordinates.
flags
Combination of any of the following:
=head2 Wx::ComboCtrl::EnablePopupAnimation
void EnablePopupAnimation(bool enable = true)
Enables or disables popup animation, if any, depending on the value of
the argument.
=head2 Wx::ComboCtrl::GetBitmapDisabled
const wxBitmap& GetBitmapDisabled() const
share/doc/wxwidgets.pod view on Meta::CPAN
=head2 Wx::ComboCtrl::IsPopupWindowState
bool IsPopupWindowState(int state) const
Returns true if the popup window is in the given state. Possible
values are:
=head2 Wx::ComboCtrl::GetLastPosition
long GetLastPosition() const
share/doc/wxwidgets.pod view on Meta::CPAN
=head2 Wx::ComboCtrl::GetPopupControl
wxComboPopup* GetPopupControl()
Returns current popup interface that has been set with
SetPopupControl.
=head2 Wx::ComboCtrl::GetPopupWindow
wxWindow* GetPopupWindow() const
Returns popup window containing the popup control.
=head2 Wx::ComboCtrl::GetTextCtrl
wxTextCtrl* GetTextCtrl() const
share/doc/wxwidgets.pod view on Meta::CPAN
=head2 Wx::ComboCtrl::HidePopup
void HidePopup()
Dismisses the popup window.
=head2 Wx::ComboCtrl::IsPopupShown
bool IsPopupShown() const
Returns true if the popup is currently shown
=head2 Wx::ComboCtrl::OnButtonClick
void OnButtonClick()
Implement in a derived class to define what happens on dropdown button
click.
Default action is to show the popup.
Note: If you implement this to do something else than show the popup,
you must then also implement DoSetPopupControl to always return NULL.
=head2 Wx::ComboCtrl::Paste
void Paste()
share/doc/wxwidgets.pod view on Meta::CPAN
=head2 Wx::ComboCtrl::SetPopupAnchor
void SetPopupAnchor(int anchorSide)
Set side of the control to which the popup will align itself. Valid
values are wxLEFT, wxRIGHT and 0. The default value 0 means that the
most appropriate side is used (which, currently, is always wxLEFT).
=head2 Wx::ComboCtrl::SetPopupControl
void SetPopupControl(wxComboPopup* popup)
Set popup interface class derived from wxComboPopup. This method
should be called as soon as possible after the control has been
created, unless OnButtonClick has been overridden.
=head2 Wx::ComboCtrl::SetPopupExtents
void SetPopupExtents(int extLeft, int extRight)
Extends popup size horizontally, relative to the edges of the combo
control.
Parameters
extLeft
share/doc/wxwidgets.pod view on Meta::CPAN
=head2 Wx::ComboCtrl::SetPopupMaxHeight
void SetPopupMaxHeight(int height)
Sets preferred maximum height of the popup.
Remarks
Value -1 indicates the default.
Also, popup implementation may choose to ignore this.
=head2 Wx::ComboCtrl::SetPopupMinWidth
void SetPopupMinWidth(int width)
Sets minimum width of the popup. If wider than combo control, it will
extend to the left.
Remarks
Value -1 indicates the default.
Also, popup implementation may choose to ignore this.
=head2 Wx::ComboCtrl::SetSelection
void SetSelection(long from, long to)
share/doc/wxwidgets.pod view on Meta::CPAN
=head2 Wx::ComboCtrl::SetText
void SetText(const wxString& value)
Sets the text for the text field without affecting the popup. Thus,
unlike SetValue, it works equally well with combo control using
wxCB_READONLY style.
=head2 Wx::ComboCtrl::SetTextIndent
share/doc/wxwidgets.pod view on Meta::CPAN
void SetValue(const wxString& value)
Sets the text for the combo control text field.
NB: For a combo control with wxCB_READONLY style the string must be
accepted by the popup (for instance, exist in the dropdown list),
otherwise the call to SetValue() is ignored
=head2 Wx::ComboCtrl::SetValueWithEvent
void SetValueWithEvent(const wxString& value, bool withEvent = true)
share/doc/wxwidgets.pod view on Meta::CPAN
=head2 Wx::ComboCtrl::ShowPopup
void ShowPopup()
Show the popup.
=head2 Wx::ComboCtrl::Undo
void Undo()
share/doc/wxwidgets.pod view on Meta::CPAN
=head2 Wx::ComboCtrl::UseAltPopupWindow
void UseAltPopupWindow(bool enable = true)
Enable or disable usage of an alternative popup window, which
guarantees ability to focus the popup control, and allows common
native controls to function normally. This alternative popup window is
usually a wxDialog, and as such, when it is shown, its parent
top-level window will appear as if the focus has been lost from it.
=head1 Wx::ComboPopup
share/doc/wxwidgets.pod view on Meta::CPAN
=head2 Wx::ComboPopup::Create
bool Create(wxWindow* parent)
The derived class must implement this to create the popup control.
Return value
true if the call succeeded, false otherwise.
=head2 Wx::ComboPopup::Dismiss
void Dismiss()
Utility function that hides the popup.
=head2 Wx::ComboPopup::GetAdjustedSize
wxSize GetAdjustedSize(int minWidth, int prefHeight, int maxHeight)
The derived class may implement this to return adjusted size for the
popup control, according to the variables given.
Parameters
minWidth
share/doc/wxwidgets.pod view on Meta::CPAN
=head2 Wx::ComboPopup::LazyCreate
bool LazyCreate()
The derived class may implement this to return true if it wants to
delay call to Create until the popup is shown for the first time. It
is more efficient, but on the other hand it is often more convenient
to have the control created immediately.
Remarks
share/doc/wxwidgets.pod view on Meta::CPAN
=head2 Wx::ComboPopup::OnDismiss
void OnDismiss()
The derived class may implement this to do special processing when
popup is hidden.
=head2 Wx::ComboPopup::OnPopup
void OnPopup()
The derived class may implement this to do special processing when
popup is shown.
=head2 Wx::ComboPopup::PaintComboControl
void PaintComboControl(wxDC& dc, const wxRect& rect)
share/doc/wxwidgets.pod view on Meta::CPAN
=head2 Wx::HelpController::DisplayContextPopup
virtual bool DisplayContextPopup(int contextId)
Displays the section as a popup window using a context id.
Returns false if unsuccessful or not implemented.
=head2 Wx::HelpController::DisplaySection
share/doc/wxwidgets.pod view on Meta::CPAN
=head2 Wx::HelpController::DisplayTextPopup
virtual bool DisplayTextPopup(const wxString& text, const wxPoint& pos)
Displays the text in a popup window, if possible.
Returns false if unsuccessful or not implemented.
=head2 Wx::HelpController::GetFrameParameters
share/doc/wxwidgets.pod view on Meta::CPAN
Parameters
title
A title for the popup menu: the empty string denotes no title.
style
If set to wxMENU_TEAROFF, the menu will be detachable (wxGTK
only).
share/doc/wxwidgets.pod view on Meta::CPAN
~wxMenu()
Destructor, destroying the menu.
Note: under Motif, a popup menu must have a valid parent (the window
it was last popped up on) when being destroyed. Therefore, make sure
you delete or re-use the popup menu before destroying the parent
window. Re-use in this context means popping up the menu on a
different window from last time, which causes an implicit destruction
and recreation of internal data structures.
=head2 Wx::Menu::Append
share/doc/wxwidgets.pod view on Meta::CPAN
Returns the title of the menu.
Remarks
This is relevant only to popup menus, use wxMenuBar::GetMenuLabel for
the menus in the menubar.
See also
wxMenu::SetTitle
share/doc/wxwidgets.pod view on Meta::CPAN
The title to set.
Remarks
This is relevant only to popup menus, use wxMenuBar::SetLabelTop for
the menus in the menubar.
See also
wxMenu::GetTitle
share/doc/wxwidgets.pod view on Meta::CPAN
=head2 Wx::MenuEvent::IsPopup
bool IsPopup() const
Returns true if the menu which is being opened or closed is a popup
menu, false if it is a normal one.
This method should only be used with the OPEN and CLOSE events.
=head1 Wx::MenuItem
share/doc/wxwidgets.pod view on Meta::CPAN
=head2 Wx::TaskBarIcon::CreatePopupMenu
virtual wxMenu* CreatePopupMenu()
This method is called by the library when the user requests popup menu
(on Windows and Unix platforms, this is when the user right-clicks the
icon). Override this function in order to provide popup menu
associated with the icon.
If CreatePopupMenu returns NULL (this happens by default), no menu is
shown, otherwise the menu is displayed and then deleted by the library
as soon as the user dismisses it. The events can be handled by a class
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Padre/Config.pm view on Meta::CPAN
type => Padre::Constant::BOOLEAN,
store => Padre::Constant::HUMAN,
default => 0,
);
# Have we shown the birthday popup this year? (Prevents duplicate popups)
# Store it on the host, because we can't really sync it properly.
setting(
name => 'nth_birthday',
type => Padre::Constant::INTEGER,
store => Padre::Constant::HOST,
lib/Padre/Config.pm view on Meta::CPAN
setting(
name => 'info_on_statusbar',
type => Padre::Constant::BOOLEAN,
store => Padre::Constant::HUMAN,
default => 0,
help => _T('Show low-priority info messages on statusbar (not in a popup)'),
);
# Move of stacktrace to run menu: will be removed (run_stacktrace)
setting(
name => 'run_stacktrace',
view all matches for this distribution
view release on metacpan or search on metacpan
D was successful appears with link to login. How about triggering the usual
D enter password page saying the same thing so remove the need to click."
D - add Message Preview to Create New Thread page (thread/add)
D - show more forum/thread information
D - see if it's possible to display the forum-name as the first
D entry for the popup menu
D - show more info in the recently update threads page; number of views/posts
D - sane T&C management
D - extra forumcode markup: quote/pre/code
D - message preview before posting
D - proper/better validation error hadling for AJAX field updates
view all matches for this distribution
view release on metacpan or search on metacpan
t/02-line-nginx.t view on Meta::CPAN
127.0.0.1 - - [14/Jan/2013:20:42:01 +0100] "GET /wordpress/wp-admin/load-scripts.php?c=0&load[]=jquery,utils,json2&ver=3.5 HTTP/1.1" 200 98986 "http://localhost:8008/wordpress/wp-admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) Gecko/20...
127.0.0.1 - - [14/Jan/2013:20:42:01 +0100] "GET /wordpress/wp-admin/load-styles.php?c=0&dir=ltr&load=admin-bar,wp-admin,buttons&ver=3.5 HTTP/1.1" 200 134480 "http://localhost:8008/wordpress/wp-admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:...
127.0.0.1 - - [14/Jan/2013:20:42:01 +0100] "GET /wordpress/wp-admin/ HTTP/1.1" 200 61976 "http://localhost:8008/wordpress/wp-login.php" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) Gecko/20100101 Firefox/18.0"
127.0.0.1 - - [14/Jan/2013:20:42:01 +0100] "GET /wordpress/wp-includes/css/editor.min.css?ver=3.5 HTTP/1.1" 200 44688 "http://localhost:8008/wordpress/wp-admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) Gecko/20100101 Firefox/18.0"
127.0.0.1 - - [14/Jan/2013:20:42:01 +0100] "GET /wordpress/wp-admin/load-styles.php?c=0&dir=ltr&load=media-views,wp-jquery-ui-dialog&ver=3.5 HTTP/1.1" 200 27154 "http://localhost:8008/wordpress/wp-admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7;...
127.0.0.1 - - [14/Jan/2013:20:42:01 +0100] "GET /wordpress/wp-admin/load-scripts.php?c=0&load[]=admin-bar,hoverIntent,common,wp-ajax-response,jquery-color,wp-lists,quicktags,jquery-query,admin-comments,jquery-ui-core,jquery-&load[]=ui-widget,jquery-u...
127.0.0.1 - - [14/Jan/2013:20:42:01 +0100] "GET /wordpress/wp-admin/images/menu-shadow.png HTTP/1.1" 200 89 "http://localhost:8008/wordpress/wp-admin/css/colors-fresh.min.css?ver=3.5" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) Gecko/20100...
127.0.0.1 - - [14/Jan/2013:20:42:01 +0100] "GET /wordpress/wp-admin/images/icons32.png?ver=20121105 HTTP/1.1" 200 12989 "http://localhost:8008/wordpress/wp-admin/css/colors-fresh.min.css?ver=3.5" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0)...
127.0.0.1 - - [14/Jan/2013:20:42:01 +0100] "GET /wordpress/wp-includes/images/admin-bar-sprite.png?d=20120830 HTTP/1.1" 200 2470 "http://localhost:8008/wordpress/wp-admin/load-styles.php?c=0&dir=ltr&load=admin-bar,wp-admin,buttons&ver=3.5" "Mozilla/5...
127.0.0.1 - - [14/Jan/2013:20:42:01 +0100] "GET /wordpress/wp-admin/images/arrows.png HTTP/1.1" 200 243 "http://localhost:8008/wordpress/wp-admin/css/colors-fresh.min.css?ver=3.5" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) Gecko/20100101 ...
127.0.0.1 - - [14/Jan/2013:20:42:01 +0100] "GET /wordpress/wp-admin/images/menu.png?ver=20121105 HTTP/1.1" 200 9165 "http://localhost:8008/wordpress/wp-admin/css/colors-fresh.min.css?ver=3.5" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) Gec...
t/02-line-nginx.t view on Meta::CPAN
127.0.0.1 - - [14/Jan/2013:20:42:03 +0100] "GET /wordpress/wp-admin/index.php HTTP/1.1" 200 63048 "http://localhost:8008/wordpress/wp-admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) Gecko/20100101 Firefox/18.0"
127.0.0.1 - - [14/Jan/2013:20:42:03 +0100] "GET /wordpress/wp-admin/load-styles.php?c=1&dir=ltr&load=admin-bar,wp-admin,buttons&ver=3.5 HTTP/1.1" 200 31518 "http://localhost:8008/wordpress/wp-admin/index.php" "Mozilla/5.0 (Macintosh; Intel Mac OS X 1...
127.0.0.1 - - [14/Jan/2013:20:42:03 +0100] "GET /wordpress/wp-admin/load-scripts.php?c=1&load[]=jquery,utils,json2&ver=3.5 HTTP/1.1" 200 38656 "http://localhost:8008/wordpress/wp-admin/index.php" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0)...
127.0.0.1 - - [14/Jan/2013:20:42:03 +0100] "POST /wordpress/wp-cron.php?doing_wp_cron=1358192523.3355140686035156250000 HTTP/1.0" 499 0 "-" "WordPress/3.5; http://localhost:8008/wordpress"
127.0.0.1 - - [14/Jan/2013:20:42:03 +0100] "GET /wordpress/wp-admin/load-styles.php?c=1&dir=ltr&load=media-views,wp-jquery-ui-dialog&ver=3.5 HTTP/1.1" 200 6420 "http://localhost:8008/wordpress/wp-admin/index.php" "Mozilla/5.0 (Macintosh; Intel Mac OS...
127.0.0.1 - - [14/Jan/2013:20:42:03 +0100] "GET /wordpress/wp-admin/load-scripts.php?c=1&load[]=admin-bar,hoverIntent,common,wp-ajax-response,jquery-color,wp-lists,quicktags,jquery-query,admin-comments,jquery-ui-core,jquery-&load[]=ui-widget,jquery-u...
127.0.0.1 - - [14/Jan/2013:20:42:05 +0100] "GET /wordpress/wp-admin/admin-ajax.php?action=dashboard-widgets&widget=dashboard_plugins HTTP/1.1" 200 936 "http://localhost:8008/wordpress/wp-admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) ...
127.0.0.1 - - [14/Jan/2013:20:42:05 +0100] "GET /wordpress/ HTTP/1.1" 200 14350 "http://localhost:8008/wordpress/wp-admin/index.php" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) Gecko/20100101 Firefox/18.0"
127.0.0.1 - - [14/Jan/2013:20:42:05 +0100] "GET /wordpress/wp-includes/css/admin-bar.min.css?ver=3.5 HTTP/1.1" 200 12774 "http://localhost:8008/wordpress/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) Gecko/20100101 Firefox/18.0"
127.0.0.1 - - [14/Jan/2013:20:42:05 +0100] "GET /wordpress/wp-content/themes/twentytwelve/style.css?ver=3.5 HTTP/1.1" 200 35292 "http://localhost:8008/wordpress/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) Gecko/20100101 Firefox/18.0"
127.0.0.1 - - [14/Jan/2013:20:42:05 +0100] "GET /wordpress/wp-includes/js/admin-bar.min.js?ver=3.5 HTTP/1.1" 200 6173 "http://localhost:8008/wordpress/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) Gecko/20100101 Firefox/18.0"
t/02-line-nginx.t view on Meta::CPAN
::1 - - [21/Jan/2013:08:01:52 -0600] "GET /wordpress/wp-admin/css/colors-fresh.min.css?ver=3.5 HTTP/1.1" 304 0 "http://localhost/wordpress/wp-admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) Gecko/20100101 Firefox/18.0"
::1 - - [21/Jan/2013:08:01:52 -0600] "GET /wordpress/wp-includes/css/editor.min.css?ver=3.5 HTTP/1.1" 200 44688 "http://localhost/wordpress/wp-admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) Gecko/20100101 Firefox/18.0"
::1 - - [21/Jan/2013:08:01:52 -0600] "GET /wordpress/wp-admin/load-styles.php?c=1&dir=ltr&load=admin-bar,wp-admin,buttons&ver=3.5 HTTP/1.1" 200 31487 "http://localhost/wordpress/wp-admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) Gecko/...
::1 - - [21/Jan/2013:08:01:52 -0600] "GET /wordpress/wp-admin/load-scripts.php?c=1&load[]=jquery,utils,json2&ver=3.5 HTTP/1.1" 200 38656 "http://localhost/wordpress/wp-admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) Gecko/20100101 Fire...
::1 - - [21/Jan/2013:08:01:52 -0600] "GET /wordpress/wp-admin/load-styles.php?c=1&dir=ltr&load=media-views,wp-jquery-ui-dialog&ver=3.5 HTTP/1.1" 200 6420 "http://localhost/wordpress/wp-admin/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) Ge...
::1 - - [21/Jan/2013:08:01:52 -0600] "GET /wordpress/wp-admin/load-scripts.php?c=1&load[]=admin-bar,hoverIntent,common,wp-ajax-response,jquery-color,wp-lists,quicktags,jquery-query,admin-comments,jquery-ui-core,jquery-&load[]=ui-widget,jquery-ui-mous...
::1 - - [21/Jan/2013:08:01:52 -0600] "GET /wordpress/wp-admin/images/menu-shadow.png HTTP/1.1" 200 89 "http://localhost/wordpress/wp-admin/css/colors-fresh.min.css?ver=3.5" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) Gecko/20100101 Firefox...
::1 - - [21/Jan/2013:08:01:52 -0600] "GET /wordpress/wp-admin/images/menu.png?ver=20121105 HTTP/1.1" 200 9165 "http://localhost/wordpress/wp-admin/css/colors-fresh.min.css?ver=3.5" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) Gecko/20100101...
::1 - - [21/Jan/2013:08:01:52 -0600] "GET /wordpress/wp-includes/images/admin-bar-sprite.png?d=20120830 HTTP/1.1" 200 2470 "http://localhost/wordpress/wp-admin/load-styles.php?c=1&dir=ltr&load=admin-bar,wp-admin,buttons&ver=3.5" "Mozilla/5.0 (Macinto...
::1 - - [21/Jan/2013:08:01:52 -0600] "GET /wordpress/wp-admin/images/arrows.png HTTP/1.1" 200 243 "http://localhost/wordpress/wp-admin/css/colors-fresh.min.css?ver=3.5" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) Gecko/20100101 Firefox/18....
::1 - - [21/Jan/2013:08:01:52 -0600] "GET /wordpress/wp-admin/images/icons32.png?ver=20121105 HTTP/1.1" 200 12989 "http://localhost/wordpress/wp-admin/css/colors-fresh.min.css?ver=3.5" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) Gecko/2010...
view all matches for this distribution
view release on metacpan or search on metacpan
t/data/03modlist.data view on Meta::CPAN
'R',
'd',
'p',
'O',
'?',
'Tk popup dialog to edit data or objects',
'DDUMONT',
' 8'
],
[
'Lingua::Preferred',
t/data/03modlist.data view on Meta::CPAN
'M',
'd',
'p',
'O',
'o',
'Convert db data to 2 linked HTML popup menus',
'RSAVAGE',
' 7'
],
[
'DBIx::HTML::PopupRadio',
'M',
'd',
'p',
'O',
'o',
'Convert db data to popup menu or radio group',
'RSAVAGE',
' 7'
],
[
'DBIx::Table2Hash',
view all matches for this distribution
view release on metacpan or search on metacpan
t/traces/gdb/gnome-bug-583460 view on Meta::CPAN
Stack trace:
This is from --verbose --stack-trace-mode always:
Parsing '/home/jbaker/.gimp-2.7/colorrc'
loading menu '/opt/gimp-2.7/share/gimp/2.0/menus/image-menu.xml' for /image-menubar
loading menu '/opt/gimp-2.7/share/gimp/2.0/menus/layers-menu.xml' for /layers-popup
loading menu '/opt/gimp-2.7/share/gimp/2.0/menus/image-menu.xml' for /dummy-menubar
/opt/gimp-2.7/bin/gimp-2.7: fatal error: Segmentation fault
#0 0x00007f2ba4ca3bbf in waitpid () from /lib/libpthread.so.0
#1 0x00007f2ba4ec8622 in g_on_error_stack_trace ()
#2 0x0000000000479203 in gimp_eek (reason=0x736071 "fatal error",
t/traces/gdb/gnome-bug-583460 view on Meta::CPAN
Parsing '/home/jbaker/.gimp-2.7/colorrc'
loading menu '/opt/gimp-2.7/share/gimp/2.0/menus/image-menu.xml' for /image-menubar
sphere-designer is updating the progress too often
sphere-designer is updating the progress too often
loading menu '/opt/gimp-2.7/share/gimp/2.0/menus/image-menu.xml' for /dummy-menubar
loading menu '/opt/gimp-2.7/share/gimp/2.0/menus/layers-menu.xml' for /layers-popup
sphere-designer is updating the progress too often
Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x7f49e7be2780 (LWP 8803)]
0x00007f49e37a3a47 in g_object_get () from /usr/lib/libgobject-2.0.so.0
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Parse/Vipar.pm view on Meta::CPAN
->pack(-anchor => 'w', -fill => 'x');
return $view;
}
sub popup_debug_window {
my $top = Toplevel->new();
$top->Entry()->pack();
}
sub layout_statusline {
view all matches for this distribution
view release on metacpan or search on metacpan
Paw::Listbox box with selectable lines
Paw::Menu pulldown menus
Paw::Popup popup window with text and buttons
Paw::Progressbar a progressbar
Paw::Radiobutton a group of buttons but only one can be selected
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Pcore/Chrome.pm view on Meta::CPAN
'--disable-default-apps',
'--no-default-browser-check',
'--no-first-run',
'--disable-infobars',
'--disable-popup-blocking',
'--disable-default-apps',
'--disable-web-security',
'--allow-running-insecure-content',
qq[--proxy-pac-url="http://$self->{pac_listen}->{host_port}/"],
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Pcore/WebDriver/Session.pm view on Meta::CPAN
'--window-size=1280x720',
'--disable-default-apps',
'--no-first-run',
'--disable-infobars',
'--disable-popup-blocking',
'--disable-default-apps',
'--disable-web-security',
'--allow-running-insecure-content',
# logging
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Pcore/API/Chrome.pm view on Meta::CPAN
'--disable-default-apps',
'--no-default-browser-check',
'--no-first-run',
'--disable-infobars',
'--disable-popup-blocking',
'--disable-web-security',
'--allow-running-insecure-content',
# TODO socks currently may not work with http:80 requests
# $self->{proxy} ? qq[--proxy-server="socks5://$self->{_proxy_server}->{listen}->{host_port}"] : (),
view all matches for this distribution
view release on metacpan or search on metacpan
docs/summaries/2006/09-23.yaml view on Meta::CPAN
As for the API design discussion, it repeated the main
thread's arguments for the most part.
Jacinta Richardson introduced a new request: subroutines should have
a uniform naming scheme, rather than mixing terms (`scrolling_list` but
`popup_menu`) and underscores (`textfield` versus `password_field`).
For more CGI discussion, also see
<msgid:20060917103509.GJ16337@c4.convolution.nl>.
- date_from: 1157829345
date_to: 1158185556
view all matches for this distribution
view release on metacpan or search on metacpan
* Added script 'perlbench-timeit'.
* Renamed 'bench' as 'perlbench-run'.
* Moved old style benchmarks to the 'benchmarks' directory.
0.91 - 2005-12-15 Gisle Aas <gisle@ActiveState.com>
* More text on the HTML index. Use JavaScript popups.
0.90 - 2005-12-14 Gisle Aas <gisle@ActiveState.com>
* Rescaled test that ran too long on my current machine.
* Save result details in a directory with HTML index.
view all matches for this distribution