view release on metacpan or search on metacpan
bin/playwright_server view on Meta::CPAN
// var theFile = path.dirname(sharedir) + '/api.json';
// let rawdata = fs.readFileSync(theFile);
// This is automatically inserted via sed
let spec =
[{"name":"Accessibility","spec":[{"type":"text","text":"The Accessibility class provides methods for inspecting Chromium's accessibility tree. The accessibility tree is used byâµassistive technology such as [screen readers](https://en.wikipedia.org/...
function arr2hash (arr,primary_key) {
var inside_out = {};
for (var item of arr) {
inside_out[item.name] = item;
view all matches for this distribution
view release on metacpan or search on metacpan
45728.329 000.335 000.335: sourcing /home/yanick/.config/nvim/plugged/deoplete.nvim/autoload/deoplete/custom.vim
46596.172 9301.449: opening buffers
46596.709 000.538: BufEnter autocommands
46596.727 000.018: editing files in windows
46597.321 000.594: VimEnter autocommands
47501.024 760.152 760.152: sourcing /usr/share/nvim/runtime/autoload/provider/clipboard.vim
47501.043 143.570: before starting main loop
48135.997 000.544 000.544: sourcing /home/yanick/.config/nvim/plugged/ale/autoload/ale/cursor.vim
48268.547 000.817 000.817: sourcing /home/yanick/.config/nvim/plugged/vim-airline/autoload/airline/async.vim
48660.000 000.177 000.177: sourcing /home/yanick/.config/nvim/plugged/ale/autoload/ale/statusline.vim
48671.221 1168.641: first screen update
view all matches for this distribution
view release on metacpan or search on metacpan
t/sample.pod view on Meta::CPAN
Control-\ clears any selection in the widget.
=item [20]
The F16 key (labelled Copy on many Sun workstations) or Meta-w
copies the selection in the widget to the clipboard, if there is a selection.
=item [21]
The F20 key (labelled Cut on many Sun workstations) or Control-w
copies the selection in the widget to the clipboard and deletes
the selection.
If there is no selection in the widget then these keys have no effect.
=item [22]
The F18 key (labelled Paste on many Sun workstations) or Control-y
inserts the contents of the clipboard at the position of the
insertion cursor.
=item [23]
The Delete key deletes the selection, if there is one in the widget.
view all matches for this distribution
view release on metacpan or search on metacpan
Prima/Application.pm view on Meta::CPAN
See L<Prima::Printer> for details.
=item Clipboard
$::application hosts set of Prima::Clipboard objects, created automatically to
reflect the system-provided clipboard IPC functionality. Their number depends
on the system, - under X11 environment there is three clipboard objects, and
only one under Win32.
These are no methods to access these clipboard objects, except fetch() ( or,
the indirect name calling ) - the clipboard objects are named after the system
clipboard names, which are returned by
Prima::Clipboard::get_standard_clipboards.
The default clipboard is named I<Clipboard>, and is accessible via
my $clipboard = $::application-> Clipboard;
code.
See L<Prima::Clipboard> for details.
Prima/Application.pm view on Meta::CPAN
Selects if the system is allowed to generate key codes in unicode. Returns the
effective state of the unicode input flag, which cannot be changed if perl or
operating system do not support UTF8.
If 1, C<Prima::Clipboard::text> property may return UTF8 text from system
clipboards is available.
Default value: 1
=back
Prima/Application.pm view on Meta::CPAN
=over
=item Clipboard $CLIPBOARD, $ACTION, $TARGET
With (the only implemented) C<$ACTION> I<copy>, is called whenever another
application requests clipboard data in format C<$TARGET>. This notification is
handled internally to optimize image pasting through the cliboard. Since the
clipboard pasting semantics in Prima is such that data must be supplied to the
clipboard in advance, before another application can request it, there is a
problem which format to use. In order to not encode an image or other complex
data in all possible formats but do that on demand and in the format the other
application wants, this notification can be used.
Only implemented for X11.
=item CopyImage $CLIPBOARD, $IMAGE
The notification stores C<$IMAGE> in clipboard.
=item CopyText $CLIPBOARD, $TEXT
The notification stores C<$TEXT> in clipboard.
=item Die $@, $STACK
Called when an exception occurs inside the event loop C<Prima::run>. By
default, consults the C<guiException> property, and if it is set, displays the
Prima/Application.pm view on Meta::CPAN
The notification queries C<$CLIPBOARD> for image content and stores in
C<$$IMAGE_REF>. Default action is that C<'Image'> format is queried. On unix,
encoded formats C<'image/bmp'>, C<'image/png'> etc are queried if the default
C<'Image'> is not found.
The C<PasteImage> mechanism is devised to read images from clipboard in GTK
environment.
=item PasteText $CLIPBOARD, $$TEXT_REF
The notification queries C<$CLIPBOARD> for text content and stores in
C<$$TEXT_REF>. Default action is that C<'Text'> format is queried if
C<wantUnicodeInput> is unset. Otherwise, C<'UTF8'> format is queried
beforehand.
The C<PasteText> mechanism is devised to ease defining text unicode/ascii
conversion between clipboard and standard widgets, in a standard way.
=back
=head2 Methods
Prima/Application.pm view on Meta::CPAN
Returns dimensions of the system scrollbars - width of the standard vertical
scrollbar and height of the standard horizon scrollbar. The method can be
called with a class string instead of an object instance.
=item get_dnd_clipboard
Returns the predefined special clipboard used as a proxy for drag and drop
interactions.
See also: C<Widget/Drag and drop>, C<Clipboard/is_dnd>.
=item get_default_window_borders BORDER_STYLE = bs::Sizeable
view all matches for this distribution
view release on metacpan or search on metacpan
qtgui/examples/mainwindows/application/MainWindow.pm view on Meta::CPAN
this->{exitAct} = $exitAct;
my $cutAct = Qt::Action(Qt::Icon("images/cut.png"), "Cu&t", this);
$cutAct->setShortcut(Qt::KeySequence("Ctrl+X"));
$cutAct->setStatusTip("Cut the current selection's contents to the " .
"clipboard");
this->connect($cutAct, SIGNAL 'triggered()', $textEdit, SLOT 'cut()');
this->{cutAct} = $cutAct;
my $copyAct = Qt::Action(Qt::Icon("images/copy.png"), "&Copy", this);
$copyAct->setShortcut(Qt::KeySequence("Ctrl+C"));
$copyAct->setStatusTip("Copy the current selection's contents to the " .
"clipboard");
this->connect($copyAct, SIGNAL 'triggered()', $textEdit, SLOT 'copy()');
this->{copyAct} = $copyAct;
my $pasteAct = Qt::Action(Qt::Icon("images/paste.png"), "&Paste", this);
$pasteAct->setShortcut(Qt::KeySequence("Ctrl+V"));
$pasteAct->setStatusTip("Paste the clipboard's contents into the current " .
"selection");
this->connect($pasteAct, SIGNAL 'triggered()', $textEdit, SLOT 'paste()');
this->{pasteAct} = $pasteAct;
my $aboutAct = Qt::Action("&About", this);
view all matches for this distribution
view release on metacpan or search on metacpan
qtcore/tools/puic/perl/qclass_lib_map.h view on Meta::CPAN
QT_CLASS_LIB(QActionGroup, QtGui4, qactiongroup.h)
QT_CLASS_LIB(QApplication, QtGui4, qapplication.h)
QT_CLASS_LIB(QBoxLayout, QtGui4, qboxlayout.h)
QT_CLASS_LIB(QHBoxLayout, QtGui4, qboxlayout.h)
QT_CLASS_LIB(QVBoxLayout, QtGui4, qboxlayout.h)
QT_CLASS_LIB(QClipboard, QtGui4, qclipboard.h)
QT_CLASS_LIB(QCursor, QtGui4, qcursor.h)
QT_CLASS_LIB(QCursor, QtGui4, qcursor.h)
QT_CLASS_LIB(QCursorShape, QtGui4, qcursor.h)
QT_CLASS_LIB(QDesktopWidget, QtGui4, qdesktopwidget.h)
QT_CLASS_LIB(QDrag, QtGui4, qdrag.h)
view all matches for this distribution
view release on metacpan or search on metacpan
examples/mainwindows/menus/MainWindow.pm view on Meta::CPAN
$this->{redoAct}->setStatusTip(QString("Redo the last operation"));
$this->connect($this->{redoAct}, SIGNAL('triggered()'), $this, SLOT('redo()'));
$this->{cutAct} = QAction(QString("Cu&t"), $this);
$this->{cutAct}->setShortcut(QKeySequence(QString("Ctrl+X")));
$this->{cutAct}->setStatusTip(QString("Cut the current selection's contents to the clipboard"));
$this->connect($this->{cutAct}, SIGNAL('triggered()'), $this, SLOT('cut()'));
$this->{copyAct} = QAction(QString("&Copy"), $this);
$this->{copyAct}->setShortcut(QKeySequence(QString("Ctrl+C")));
$this->{copyAct}->setStatusTip(QString("Copy the current selection's contents to the clipboard"));
$this->connect($this->{copyAct}, SIGNAL('triggered()'), $this, SLOT('copy()'));
$this->{pasteAct} = QAction(QString("&Paste"), $this);
$this->{pasteAct}->setShortcut(QKeySequence(QString("Ctrl+V")));
$this->{pasteAct}->setStatusTip(QString("Paste the clipboard's contents into the current selection"));
$this->connect($this->{pasteAct}, SIGNAL('triggered()'), $this, SLOT('paste()'));
$this->{boldAct} = QAction(QString("&Bold"), $this);
$this->{boldAct}->setCheckable(1); # 1 == true
$this->{boldAct}->setShortcut(QKeySequence(QString("Ctrl+B")));
view all matches for this distribution
view release on metacpan or search on metacpan
exercises/compile-tcsh/tcsh-6.10.00/ed.chared.c view on Meta::CPAN
#ifndef WINNT_NATIVE
/* Since ed.defns.h is generated from ed.defns.c, these empty
functions will keep the F_NUM_FNS consistent
*/
CCRETVAL
e_copy_to_clipboard(c)
int c;
{
USE(c);
return CC_ERROR;
}
CCRETVAL
e_paste_from_clipboard(c)
int c;
{
USE(c);
return (CC_ERROR);
}
view all matches for this distribution
view release on metacpan or search on metacpan
share/www/js/editor.js view on Meta::CPAN
addEventHandler(document.body, "paste", function(event) {
cursorActivity();
var text = null;
try {
var clipboardData = event.clipboardData || window.clipboardData;
if (clipboardData) text = clipboardData.getData('Text');
}
catch(e) {}
if (text !== null) {
event.stop();
self.replaceSelection(text);
view all matches for this distribution
view release on metacpan or search on metacpan
package-lock.json view on Meta::CPAN
"@ckeditor/ckeditor5-ui": "44.1.0",
"@ckeditor/ckeditor5-utils": "44.1.0",
"ckeditor5": "44.1.0"
}
},
"node_modules/@ckeditor/ckeditor5-clipboard": {
"version": "44.1.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-clipboard/-/ckeditor5-clipboard-44.1.0.tgz",
"integrity": "sha512-Z5P1P6ATLVy/c7AvI3Akt3mEqQfCnhZmz4EdAS7sF34WTayrHQ/TQjdte/0mN+6LXcQV1whhXe1xLM7GVsG+bg==",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"@ckeditor/ckeditor5-core": "44.1.0",
"@ckeditor/ckeditor5-engine": "44.1.0",
package-lock.json view on Meta::CPAN
"version": "44.1.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-44.1.0.tgz",
"integrity": "sha512-2z4ULLehgMjwxvo0a26UkA2p3MdDITGVDpt7FZkO+P9XCim/j5DdXK4/xVNXLbrOifpFq/5kfrAZvjDX0lPMIw==",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "44.1.0",
"@ckeditor/ckeditor5-core": "44.1.0",
"@ckeditor/ckeditor5-engine": "44.1.0",
"@ckeditor/ckeditor5-enter": "44.1.0",
"@ckeditor/ckeditor5-ui": "44.1.0",
"@ckeditor/ckeditor5-utils": "44.1.0",
package-lock.json view on Meta::CPAN
"version": "44.1.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-essentials/-/ckeditor5-essentials-44.1.0.tgz",
"integrity": "sha512-UWSc2lSCqztfy3LLeuHfyKU/oSbFyw/4KEbQso9DsMPQ4vdmX/sW6BoklCYF9mPJrg+zNSseJj9T/M1Q+Z6U0Q==",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "44.1.0",
"@ckeditor/ckeditor5-core": "44.1.0",
"@ckeditor/ckeditor5-enter": "44.1.0",
"@ckeditor/ckeditor5-select-all": "44.1.0",
"@ckeditor/ckeditor5-typing": "44.1.0",
"@ckeditor/ckeditor5-ui": "44.1.0",
package-lock.json view on Meta::CPAN
"version": "44.1.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-image/-/ckeditor5-image-44.1.0.tgz",
"integrity": "sha512-8BbS0y1YSGnQAiA6rTps05DIJ8CcdbGYb+1XFb8QOUCzJenFzNGAe4gnlEPw0zW1C8ZjdahRY1K2Fcb16/q7TQ==",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "44.1.0",
"@ckeditor/ckeditor5-core": "44.1.0",
"@ckeditor/ckeditor5-engine": "44.1.0",
"@ckeditor/ckeditor5-typing": "44.1.0",
"@ckeditor/ckeditor5-ui": "44.1.0",
"@ckeditor/ckeditor5-undo": "44.1.0",
package-lock.json view on Meta::CPAN
"version": "44.1.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-link/-/ckeditor5-link-44.1.0.tgz",
"integrity": "sha512-+tDlzrhOrl3TMlj01DsGJwQEsrXZl6A7fD4gFfYS3rO9sgGZSLU+fSxOwWHdQyBp1ujiJGsGFXmKFAUZxs7M/w==",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "44.1.0",
"@ckeditor/ckeditor5-core": "44.1.0",
"@ckeditor/ckeditor5-engine": "44.1.0",
"@ckeditor/ckeditor5-typing": "44.1.0",
"@ckeditor/ckeditor5-ui": "44.1.0",
"@ckeditor/ckeditor5-utils": "44.1.0",
package-lock.json view on Meta::CPAN
"version": "44.1.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-list/-/ckeditor5-list-44.1.0.tgz",
"integrity": "sha512-lwUAtK68GfNVr1yI+VLom54K8F5bRZee8HKkzFZPgTCANYLUnmHGUNF9La7qETeqjNV6bljUnKwn/knOeserGg==",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "44.1.0",
"@ckeditor/ckeditor5-core": "44.1.0",
"@ckeditor/ckeditor5-engine": "44.1.0",
"@ckeditor/ckeditor5-enter": "44.1.0",
"@ckeditor/ckeditor5-typing": "44.1.0",
"@ckeditor/ckeditor5-ui": "44.1.0",
package-lock.json view on Meta::CPAN
"version": "44.1.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-44.1.0.tgz",
"integrity": "sha512-ZlFa3xi8vSCCqs4cvfxjZrcXz87i7XIKAd+eTQdwoInQDJHnGpUcM67hKIMSU3E8AjEz+tXdsaauxSofZTS+zQ==",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "44.1.0",
"@ckeditor/ckeditor5-core": "44.1.0",
"@ckeditor/ckeditor5-engine": "44.1.0",
"ckeditor5": "44.1.0",
"marked": "4.0.12",
"turndown": "7.2.0",
package-lock.json view on Meta::CPAN
"version": "44.1.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-media-embed/-/ckeditor5-media-embed-44.1.0.tgz",
"integrity": "sha512-ymG55dCUv+i0o0th4+vYMvVHhC2DXTs6J+5t40tNvdMS7apt882Tbq9vAE6iqgQZbtQVVlRpQbGD0UByBO5LVA==",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "44.1.0",
"@ckeditor/ckeditor5-core": "44.1.0",
"@ckeditor/ckeditor5-engine": "44.1.0",
"@ckeditor/ckeditor5-typing": "44.1.0",
"@ckeditor/ckeditor5-ui": "44.1.0",
"@ckeditor/ckeditor5-undo": "44.1.0",
package-lock.json view on Meta::CPAN
"version": "44.1.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-paste-from-office/-/ckeditor5-paste-from-office-44.1.0.tgz",
"integrity": "sha512-NIhtkFoDXNpOaPBDH6dDTU2BC3GUJ1rE5gUV0i4hrtOeERuk9EdkADCOBEHEm7UC31kCQ4si6wkry+d4oZ5FMw==",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "44.1.0",
"@ckeditor/ckeditor5-core": "44.1.0",
"@ckeditor/ckeditor5-engine": "44.1.0",
"ckeditor5": "44.1.0"
}
},
package-lock.json view on Meta::CPAN
"version": "44.1.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-table/-/ckeditor5-table-44.1.0.tgz",
"integrity": "sha512-8iQUW5apSYFrsJhguW0ROPBf+gmKhtP75KIeal6GdEtYlOMA8vP/ixUhQB5HZBmecfAVULyu1fF4YfGzHelZhw==",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "44.1.0",
"@ckeditor/ckeditor5-core": "44.1.0",
"@ckeditor/ckeditor5-engine": "44.1.0",
"@ckeditor/ckeditor5-ui": "44.1.0",
"@ckeditor/ckeditor5-utils": "44.1.0",
"@ckeditor/ckeditor5-widget": "44.1.0",
package-lock.json view on Meta::CPAN
"@ckeditor/ckeditor5-basic-styles": "44.1.0",
"@ckeditor/ckeditor5-block-quote": "44.1.0",
"@ckeditor/ckeditor5-bookmark": "44.1.0",
"@ckeditor/ckeditor5-ckbox": "44.1.0",
"@ckeditor/ckeditor5-ckfinder": "44.1.0",
"@ckeditor/ckeditor5-clipboard": "44.1.0",
"@ckeditor/ckeditor5-cloud-services": "44.1.0",
"@ckeditor/ckeditor5-code-block": "44.1.0",
"@ckeditor/ckeditor5-core": "44.1.0",
"@ckeditor/ckeditor5-easy-image": "44.1.0",
"@ckeditor/ckeditor5-editor-balloon": "44.1.0",
view all matches for this distribution
view release on metacpan or search on metacpan
html/Callbacks/CopySubjectButton/Ticket/Display.html/BeforeShowHistory view on Meta::CPAN
$TicketSubject = "<div id=\"24t45g45ygh5k8rgh\" style=\"display: none;\">" . $Ticket->SubjectTag . " " . $Ticket->Subject . "</div>";
print $TicketSubject;
}
</%PERL>
<!-- Add the necessary JS to copy the subject to the clipboard -->
<script type="text/javascript">
if (window.location.href.includes("Ticket/Display.html")){
document.getElementById('header').getElementsByTagName("h1")[0].innerHTML+=' <button class="button form-control btn btn-primary float-right" onclick="copyContent()">Copy</button>';
}
const copyContent = async () => {
let subjectwithtag = document.getElementById("24t45g45ygh5k8rgh").innerHTML;
try {
await navigator.clipboard.writeText(subjectwithtag);
console.log('Content copied to clipboard');
} catch (err) {
console.error('Failed to copy: ', err);
}
}
</script>
view all matches for this distribution
view release on metacpan or search on metacpan
html/NoAuth/js/chosen.jquery.min.js view on Meta::CPAN
/* Chosen v1.1.0 | (c) 2011-2013 by Harvest | MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md */
!function(){var a,AbstractChosen,Chosen,SelectParser,b,c={}.hasOwnProperty,d=function(a,b){function d(){this.constructor=a}for(var e in b)c.call(b,e)&&(a[e]=b[e]);return d.prototype=b.prototype,a.prototype=new d,a.__super__=b.prototype,a};SelectParse...
view all matches for this distribution
view release on metacpan or search on metacpan
static/css/terminal-light/jquery-ui.custom.modified.css view on Meta::CPAN
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
view all matches for this distribution
view release on metacpan or search on metacpan
share/scaffolds/bootstrap-blog/fonts/font-awesome.min.css view on Meta::CPAN
/*!
* Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
*/@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('...
view all matches for this distribution
view release on metacpan or search on metacpan
share/assets/font-awesome/css/font-awesome.min.css view on Meta::CPAN
/*!
* Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
*/@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('...
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Raylib/FFI.pm view on Meta::CPAN
Get the human-readable, UTF-8 encoded name of the monitor.
=head2 SetClipboardText( $text )
Set clipboard text content.
=head2 GetClipboardText() : string
Get clipboard text content.
=head2 GetClipboardImage() : Raylib::FFI::Image
Get clipboard image content.
=head2 EnableEventWaiting()
Enable waiting for events on EndDrawing, automatic event polling.
view all matches for this distribution
view release on metacpan or search on metacpan
t/.orion.installed.modules view on Meta::CPAN
'/usr/lib/perl5/auto/Tk/Listbox/ExtendUpDown.al',
'/usr/lib/perl5/auto/Tk/Listbox/DataExtend.al',
'/usr/lib/perl5/auto/Tk/Listbox/Cancel.al',
'/usr/lib/perl5/auto/Tk/Listbox/SelectAll.al',
'/usr/lib/perl5/auto/Tk/Listbox/SetList.al',
'/usr/lib/perl5/auto/Tk/Listbox/clipboardPaste.al',
'/usr/lib/perl5/auto/Tk/Listbox/getSelected.al',
'/usr/lib/perl5/auto/Tk/Listbox/autosplit.ix',
'/usr/lib/perl5/auto/Tk/JPEG/JPEG.so',
'/usr/lib/perl5/auto/Tk/JPEG/JPEG.bs',
'/usr/lib/perl5/auto/Tk/InputO/InputO.so',
t/.orion.installed.modules view on Meta::CPAN
'/usr/lib/perl5/auto/Tk/Frame/AddScrollbars.al',
'/usr/lib/perl5/auto/Tk/Frame/packscrollbars.al',
'/usr/lib/perl5/auto/Tk/Frame/scrollbars.al',
'/usr/lib/perl5/auto/Tk/Frame/FindMenu.al',
'/usr/lib/perl5/auto/Tk/Frame/autosplit.ix',
'/usr/lib/perl5/auto/Tk/Widget/clipboardKeysyms.al',
'/usr/lib/perl5/auto/Tk/Widget/bindDump.al',
'/usr/lib/perl5/auto/Tk/Widget/ASkludge.al',
'/usr/lib/perl5/auto/Tk/Widget/autosplit.ix',
'/usr/lib/perl5/auto/Tk/Widget/pathname.al',
'/usr/lib/perl5/auto/Tk/Clipboard/getSelected.al',
t/.orion.installed.modules view on Meta::CPAN
'Tk/Xrm.pm' => { dir => '/usr/lib/perl5', files => [
'/usr/lib/perl5/Tk/Xrm.pod',
'/usr/lib/perl5/Tk/Xrm.pm' ] },
'Tk/Widget.pm' => { dir => '/usr/lib/perl5', files => [
'/usr/lib/perl5/Tk/Widget.pod',
'/usr/lib/perl5/auto/Tk/Widget/clipboardKeysyms.al',
'/usr/lib/perl5/auto/Tk/Widget/bindDump.al',
'/usr/lib/perl5/auto/Tk/Widget/ASkludge.al',
'/usr/lib/perl5/auto/Tk/Widget/autosplit.ix',
'/usr/lib/perl5/auto/Tk/Widget/pathname.al',
'/usr/lib/perl5/Tk/Widget.pm' ] },
t/.orion.installed.modules view on Meta::CPAN
'/usr/lib/perl5/auto/Tk/Listbox/ExtendUpDown.al',
'/usr/lib/perl5/auto/Tk/Listbox/DataExtend.al',
'/usr/lib/perl5/auto/Tk/Listbox/Cancel.al',
'/usr/lib/perl5/auto/Tk/Listbox/SelectAll.al',
'/usr/lib/perl5/auto/Tk/Listbox/SetList.al',
'/usr/lib/perl5/auto/Tk/Listbox/clipboardPaste.al',
'/usr/lib/perl5/auto/Tk/Listbox/getSelected.al',
'/usr/lib/perl5/auto/Tk/Listbox/autosplit.ix',
'/usr/lib/perl5/Tk/Listbox.pm' ] },
'Tk/JPEG.pm' => { dir => '/usr/lib/perl5', files => [
'/usr/lib/perl5/auto/Tk/JPEG/JPEG.so',
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Renard/Curie/Component/JacquardCanvas/Role/MouseSelection.pm view on Meta::CPAN
=head2 cb_on_text_selected
Callback for C<text-selected> signal.
Currently sets the primary clipboard to the text of the selection.
=head1 AUTHOR
Project Renard
view all matches for this distribution
view release on metacpan or search on metacpan
share/google-code-prettify/lang-matlab.js view on Meta::CPAN
var a=null,b=window.PR,c=[[b.PR_PLAIN,/^[\t-\r \xa0]+/,a," \t\r\n\u000b\u000c\u00a0"],[b.PR_COMMENT,/^%{[^%]*%+(?:[^%}][^%]*%+)*}/,a],[b.PR_COMMENT,/^%[^\n\r]*/,a,"%"],["syscmd",/^![^\n\r]*/,a,"!"]],d=[["linecont",/^\.\.\.\s*[\n\r]/,a],["err",/^\?\?\...
[b.PR_STRING,/^'(?:[^']|'')*'/,a],[b.PR_LITERAL,/^[+-]?\.?\d+(?:\.\d*)?(?:[Ee][+-]?\d+)?[ij]?/,a],[b.PR_TAG,/^[()[\]{}]/,a],[b.PR_PUNCTUATION,/^[!&*-/:->@\\^|~]/,a]],e=[["lang-matlab-identifiers",/^([A-Za-z]\w*(?:\.[A-Za-z]\w*)*)/,a],[b.PR_TAG,/^[()[...
b.registerLangHandler(b.createSimpleLexer([],[[b.PR_KEYWORD,/^\b(?:break|case|catch|classdef|continue|else|elseif|end|for|function|global|if|otherwise|parfor|persistent|return|spmd|switch|try|while)\b/,a],["const",/^\b(?:true|false|inf|Inf|nan|NaN|ep...
a],["fun_tbx",/^\b(?:addedvarplot|andrewsplot|anova[12n]|ansaribradley|aoctool|barttest|bbdesign|beta(?:cdf|fit|inv|like|pdf|rnd|stat)|bino(?:cdf|fit|inv|pdf|rnd|stat)|biplot|bootci|bootstrp|boxplot|candexch|candgen|canoncorr|capability|capaplot|case...
a],["fun_tbx",/^\b(?:adapthisteq|analyze75info|analyze75read|applycform|applylut|axes2pix|bestblk|blockproc|bwarea|bwareaopen|bwboundaries|bwconncomp|bwconvhull|bwdist|bwdistgeodesic|bweuler|bwhitmiss|bwlabel|bwlabeln|bwmorph|bwpack|bwperim|bwselect|...
a],["fun_tbx",/^\b(?:bintprog|color|fgoalattain|fminbnd|fmincon|fminimax|fminsearch|fminunc|fseminf|fsolve|fzero|fzmult|gangstr|ktrlink|linprog|lsqcurvefit|lsqlin|lsqnonlin|lsqnonneg|optimget|optimset|optimtool|quadprog)\b/,a],["ident",/^[A-Za-z]\w*(...
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Rex/JobControl/public/3rdparty/jquery-ui-1.11.1/index.html view on Meta::CPAN
<li class="ui-state-default ui-corner-all" title=".ui-icon-close"><span class="ui-icon ui-icon-close"></span></li>
<li class="ui-state-default ui-corner-all" title=".ui-icon-closethick"><span class="ui-icon ui-icon-closethick"></span></li>
<li class="ui-state-default ui-corner-all" title=".ui-icon-key"><span class="ui-icon ui-icon-key"></span></li>
<li class="ui-state-default ui-corner-all" title=".ui-icon-lightbulb"><span class="ui-icon ui-icon-lightbulb"></span></li>
<li class="ui-state-default ui-corner-all" title=".ui-icon-scissors"><span class="ui-icon ui-icon-scissors"></span></li>
<li class="ui-state-default ui-corner-all" title=".ui-icon-clipboard"><span class="ui-icon ui-icon-clipboard"></span></li>
<li class="ui-state-default ui-corner-all" title=".ui-icon-copy"><span class="ui-icon ui-icon-copy"></span></li>
<li class="ui-state-default ui-corner-all" title=".ui-icon-contact"><span class="ui-icon ui-icon-contact"></span></li>
<li class="ui-state-default ui-corner-all" title=".ui-icon-image"><span class="ui-icon ui-icon-image"></span></li>
<li class="ui-state-default ui-corner-all" title=".ui-icon-video"><span class="ui-icon ui-icon-video"></span></li>
<li class="ui-state-default ui-corner-all" title=".ui-icon-script"><span class="ui-icon ui-icon-script"></span></li>
view all matches for this distribution
view release on metacpan or search on metacpan
lib/SDL2/FFI.pm view on Meta::CPAN
require SDL2::stdinc;
require SDL2::assert; # Enable with use var like C<use SDL2 -assert=3;>
require SDL2::atomic;
require SDL2::rwops; # Does not belong here?
require SDL2::audio;
require SDL2::clipboard;
require SDL2::cpuinfo;
require SDL2::error;
require SDL2::events;
require SDL2::filesystem;
require SDL2::gamecontroller;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/SDL3.pm view on Meta::CPAN
_atomic();
_audio();
_bits();
_blendmode();
_camera();
_clipboard();
_cpuinfo();
_dialog();
_error();
_events();
_filesystem();
lib/SDL3.pm view on Meta::CPAN
_affix_and_export SDL_AcquireCameraFrame => [ Pointer [ SDL_Camera() ], Pointer [UInt64] ], Pointer [ SDL_Surface() ];
_affix_and_export SDL_ReleaseCameraFrame => [ Pointer [ SDL_Camera() ], Pointer [ SDL_Surface() ] ], Void;
_affix_and_export SDL_CloseCamera => [ Pointer [ SDL_Camera() ] ], Void;
}
=head3 C<:clipboard> - Clipboard Handling
SDL provides access to the system clipboard, both for reading information from other processes and publishing
information of its own.
This is not just text! SDL apps can access and publish data by mimetype.
See L<SDL3: CategoryClipboard|https://wiki.libsdl.org/SDL3/CategoryClipboard>
=cut
sub _clipboard() {
state $done++ && return;
#
_error();
_stdinc();
#
lib/SDL3.pm view on Meta::CPAN
pmotion => SDL_PenMotionEvent(),
pbutton => SDL_PenButtonEvent(),
paxis => SDL_PenAxisEvent(),
render => SDL_RenderEvent(),
drop => SDL_DropEvent(),
clipboard => SDL_ClipboardEvent(),
padding => Array [ UInt8, 128 ]
];
_affix_and_export SDL_PumpEvents => [], Void;
_enum_and_export SDL_EventAction => [ 'SDL_ADDEVENT', 'SDL_PEEKEVENT', 'SDL_GETEVENT' ];
_affix_and_export SDL_PeepEvents => [ Pointer [ SDL_Event() ], Int, SDL_EventAction(), UInt32, UInt32 ], Int;
view all matches for this distribution
view release on metacpan or search on metacpan
t/XamlPresentation2006.xsd view on Meta::CPAN
</xs:group>
<xs:group name="peSection">
<xs:choice>
<xs:element name="Section.HasTrailingParagraphBreakOnPaste" type="dBooleanContainer" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Gets or sets a value that indicates whether or not a trailing paragraph break should be inserted after the last paragraph when placing the contents of a root Section element on the clipboard.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Section.SiblingBlocks" type="dBlockCollectionContent" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Gets a BlockCollection that contains Block elements that are siblings to this Block element.</xs:documentation>
t/XamlPresentation2006.xsd view on Meta::CPAN
<xs:attributeGroup ref="InlineAttributes"/>
</xs:attributeGroup>
<xs:attributeGroup name="SectionAttributes">
<xs:attribute name="HasTrailingParagraphBreakOnPaste" type="frlrfSystemBooleanClassTopic">
<xs:annotation>
<xs:documentation>Gets or sets a value that indicates whether or not a trailing paragraph break should be inserted after the last paragraph when placing the contents of a root Section element on the clipboard.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="BlockAttributes"/>
</xs:attributeGroup>
<xs:attributeGroup name="TableAttributes">
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Script/Carp.pm view on Meta::CPAN
use Script::Carp -stop; # display error and wait STDIN
use Script::Carp -file => "error.txt"; # write message to error.txt
use Script::Carp -stop, -file => "error.txt"; # mixed the above
use Script::Carp -log => "error_log.txt"; # append message to error_log.txt
use Script::Carp -beep => "c d e f g"; # beep
use Script::Carp -clip; # message is copied to clipboard
use class method with options
Script::Carp->setup(-stop);
Script::Carp->setup(-file => "error.txt");
lib/Script/Carp.pm view on Meta::CPAN
or
Script::Carp->setup(-clip);
message is copied to clipboard when script died.
It requires Clipboard module.
=head1 METHOD
=head2 setup
view all matches for this distribution
view release on metacpan or search on metacpan
share/js-source/HTTP/Request.js view on Meta::CPAN
if ( typeof( HTTP.Request.Transport ) == "undefined" ) {
if ( window.XMLHttpRequest ) {
HTTP.Request.Transport = window.XMLHttpRequest;
}
// This tests for ActiveXObject in IE5+
else if ( window.ActiveXObject && window.clipboardData ) {
var msxmls = new Array(
"Msxml2.XMLHTTP.5.0"
,"Msxml2.XMLHTTP.4.0"
,"Msxml2.XMLHTTP.3.0"
,"Msxml2.XMLHTTP"
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Slovo/resources/public/js/editormd/css/editormd.min.css view on Meta::CPAN
/*! Editor.md v1.5.0 | editormd.min.css | Open source online markdown editor. | MIT License | By: Pandao | https://github.com/pandao/editor.md | 2015-06-09 */
@charset "UTF-8";/*! prefixes.scss v0.1.0 | Author: Pandao | https://github.com/pandao/prefixes.scss | MIT license | Copyright (c) 2015 */.fa-ul,.markdown-body .task-list-item,li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}.edit...
* Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
*/@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.eot?v=4.3.0);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0)format("embedded-opentype"),url(../fonts/fontawesome-webfont.woff2?v=4.3.0)format("woff2"),url(../fonts/fo...
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Speak.pm view on Meta::CPAN
=item $msg:
Message to speak. If $msg is defined and scalar then that is the message
to speak. If it is a file handle then the text will be read from that file.
Otherwise the text in the clipboard will be used.
=item $log
If provided, errors and messages will be logged to the logfile, otherwise to speak.log
view all matches for this distribution
view release on metacpan or search on metacpan
share/enable1.txt view on Meta::CPAN
cliometric
cliometrician
cliometricians
cliometrics
clip
clipboard
clipboards
clipped
clipper
clippers
clipping
clippings
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Spreadsheet/Engine/Sheet.pm view on Meta::CPAN
border:bordernum:value - text of border definition (thickness style color) for border bordernum
layout:layoutnum:value - text of vertical alignment and padding style for cell layout layoutnum:
vertical-alignment:vavalue;padding topval rightval bottomval leftval;
cellformat:cformatnum:value - text of cell alignment (left/center/right) for cellformat cformatnum
valueformat:vformatnum:value - text of number format (see format_value_for_display) for valueformat vformatnum (changed in v1.2)
clipboardrange:upperleftcoord:bottomrightcoord - origin of clipboard data. Not present if clipboard empty.
There must be a clipboardrange before any clipboard lines
clipboard:coord:type:value:... - clipboard data, in same format as cell data
The resulting $sheetdata data structure is as follows:
$sheetdata{version} - version of save file read in
$sheetdata{datatypes}->{$coord} - Origin of {datavalues} value:
lib/Spreadsheet/Engine/Sheet.pm view on Meta::CPAN
$sheetdata{layoutstylehash}->{$value} - hash with cell layout specification as keys and {layoutstyle}->[] index position as values
$sheetdata{cellformats}->[$index] - cell format specifications addressable by array position
$sheetdata{cellformathash}->{$value} - hash with cell format specification as keys and {cellformats}->[] index position as values
$sheetdata{valueformats}->[$index] - value format specifications addressable by array position
$sheetdata{valueformathash}->{$value} - hash with value format specification as keys and {valueformats}->[] index position as values
$sheetdata{clipboard}-> - the sheet's clipboard
{range} - coord:coord range of where the clipboard contents came from or null if empty
{datavalues} - like $sheetdata{datavalues} but for clipboard copy of cells
{datatypes} - like $sheetdata{datatypes} but for clipboard copy of cells
{valuetypes} - like $sheetdata{valuetypes} but for clipboard copy of cells
{formulas} - like $sheetdata{formulas} but for clipboard copy of cells
{cellerrors} - like $sheetdata{cellerrors} but for clipboard copy of cells
{cellattribs} - like $sheetdata{cellattribs} but for clipboard copy of cells
$sheetdata{loaderror} - if non-blank, there was an error loading this sheet and this is the text of that error
=cut
sub parse_sheet_save {
lib/Spreadsheet/Engine/Sheet.pm view on Meta::CPAN
$valueformats->[$style] = $value;
$valueformathash->{$value} = $style;
} elsif ($linetype eq "version") {
$sheetdata->{version} = $rest;
} elsif ($linetype eq "") {
} elsif ($linetype eq "clipboardrange") {
$sheetdata->{clipboard} = {}; # clear and create clipboard
$sheetdata->{clipboard}->{datavalues} = {};
$clipdatavalues = $sheetdata->{clipboard}->{datavalues};
$sheetdata->{clipboard}->{datatypes} = {};
$clipdatatypes = $sheetdata->{clipboard}->{datatypes};
$sheetdata->{clipboard}->{valuetypes} = {};
$clipvaluetypes = $sheetdata->{clipboard}->{valuetypes};
$sheetdata->{clipboard}->{formulas} = {};
$clipdataformulas = $sheetdata->{clipboard}->{formulas};
$sheetdata->{clipboard}->{cellerrors} = {};
$clipcellerrors = $sheetdata->{clipboard}->{cellerrors};
$sheetdata->{clipboard}->{cellattribs} = {};
$clipcellattribs = $sheetdata->{clipboard}->{cellattribs};
$coord = uc($rest);
$sheetdata->{clipboard}->{range} = $coord;
} elsif ($linetype eq "clipboard")
{ # must have a clipboardrange command somewhere before it
($coord, $type, $rest) = split (/:/, $rest, 3);
$coord = uc($coord);
if (!$sheetdata->{clipboard}->{range}) {
$errortext = "Missing clipboardrange before clipboard data in file\n";
$type = "norange";
}
$clipcellattribs->{$coord} = { 'coord', $coord };
while ($type) {
if ($type eq "v") {
lib/Spreadsheet/Engine/Sheet.pm view on Meta::CPAN
for (my $i = 1 ; $i < @$valueformats ; $i++) {
$style = encode_for_save($valueformats->[$i]);
$outstr .= "valueformat:$i:$style\n";
}
if ($sheetdata->{clipboard}) {
my $clipdatavalues = $sheetdata->{clipboard}->{datavalues};
my $clipdatatypes = $sheetdata->{clipboard}->{datatypes};
my $clipvaluetypes = $sheetdata->{clipboard}->{valuetypes};
my $clipdataformulas = $sheetdata->{clipboard}->{formulas};
my $clipcellerrors = $sheetdata->{clipboard}->{cellerrors};
my $clipcellattribs = $sheetdata->{clipboard}->{cellattribs};
$outstr .= "clipboardrange:$sheetdata->{clipboard}->{range}\n";
foreach my $coord (sort keys %$clipcellattribs) {
$outstr .= "clipboard:$coord";
if ($clipdatatypes->{$coord} eq "v") {
$value = encode_for_save($clipdatavalues->{$coord});
if (!$clipvaluetypes->{$coord} || $clipvaluetypes->{$coord} eq "n")
{ # use simpler version
$outstr .= ":v:$value";
lib/Spreadsheet/Engine/Sheet.pm view on Meta::CPAN
set 22 attributename value
set B attributename value
set A1 attributename value1 value2... (see each attribute below for details)
set A1:B5 attributename value1 value2...
erase/copy/cut/paste/fillright/filldown A1:B5 all/formulas/format
clearclipboard
merge C3:F3
unmerge C3
insertcol/insertrow C5
deletecol/deleterow C5:E7
name define NAME definition
lib/Spreadsheet/Engine/Sheet.pm view on Meta::CPAN
}
$sheetdata->{sheetattribs}->{needsrecalc} = "yes";
}
elsif ($cmd1 eq "copy" || $cmd1 eq "cut") {
$sheetdata->{clipboard} = {}; # clear and create clipboard
$sheetdata->{clipboard}->{datavalues} = {};
my $clipdatavalues = $sheetdata->{clipboard}->{datavalues};
$sheetdata->{clipboard}->{datatypes} = {};
my $clipdatatypes = $sheetdata->{clipboard}->{datatypes};
$sheetdata->{clipboard}->{valuetypes} = {};
my $clipvaluetypes = $sheetdata->{clipboard}->{valuetypes};
$sheetdata->{clipboard}->{formulas} = {};
my $clipdataformulas = $sheetdata->{clipboard}->{formulas};
$sheetdata->{clipboard}->{cellerrors} = {};
my $clipcellerrors = $sheetdata->{clipboard}->{cellerrors};
$sheetdata->{clipboard}->{cellattribs} = {};
my $clipcellattribs = $sheetdata->{clipboard}->{cellattribs};
for (my $r = $r1 ; $r <= $r2 ; $r++) {
for (my $c = $c1 ; $c <= $c2 ; $c++) {
my $cr = cr_to_coord($c, $r);
$clipcellattribs->{$cr}->{ 'coord' => $cr } =
lib/Spreadsheet/Engine/Sheet.pm view on Meta::CPAN
delete $valuetypes->{$cr};
}
}
}
}
$sheetdata->{clipboard}->{range} =
$coord2 ? "$coord1:$coord2" : "$coord1:$coord1";
$sheetdata->{sheetattribs}->{needsrecalc} = "yes" if $cmd1 eq "cut";
}
elsif ($cmd1 eq "paste") {
my $crbase = $sheetdata->{clipboard}->{range};
if (!$crbase) {
$errortext = "Empty clipboard\n";
return 0;
}
my $clipdatavalues = $sheetdata->{clipboard}->{datavalues};
my $clipdatatypes = $sheetdata->{clipboard}->{datatypes};
my $clipvaluetypes = $sheetdata->{clipboard}->{valuetypes};
my $clipdataformulas = $sheetdata->{clipboard}->{formulas};
my $clipcellerrors = $sheetdata->{clipboard}->{cellerrors};
my $clipcellattribs = $sheetdata->{clipboard}->{cellattribs};
my ($clipcoord1, $clipcoord2) = split (/:/, $crbase);
$clipcoord2 = $clipcoord1 unless $clipcoord2;
my ($clipc1, $clipr1) = coord_to_cr($clipcoord1);
my ($clipc2, $clipr2) = coord_to_cr($clipcoord2);
lib/Spreadsheet/Engine/Sheet.pm view on Meta::CPAN
}
$sheetdata->{sheetattribs}->{needsrecalc} = "yes";
}
}
elsif ($cmd1 eq "clearclipboard") {
delete $sheetdata->{clipboard};
}
elsif ($cmd1 eq "merge") {
($what, $rest) = split (/ /, $rest, 2);
$what = uc($what);
view all matches for this distribution