Searched +refs:mouse +refs:right (Results 1 - 25 of 47) sorted by relevance

12

/macosx-10.10/vim-55/runtime/macros/
H A Dswapmous.vim1 " These macros swap the left and right mouse buttons (for left handed)
2 " Don't forget to do ":set mouse=a" or the mouse won't work at all
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/examples/ntext/
H A DntextDemoBindings.tcl24 Try editing the text with the keyboard and mouse; compare the bindings for Text (left panel) and Ntext (right panel).
26 Try word-by-word navigation (Control key with left cursor or right cursor key); try word selection (double click); try these for the different word-break detection options (selected below).
48 pack [frame .rhf] -side right -anchor nw
65 pack [radiobutton .rhf.h.on -text "On " -variable ::ntext::classicMouseSelect -value 1] -side right
66 pack [radiobutton .rhf.h.off -text "Off" -variable ::ntext::classicMouseSelect -value 0] -side right
67 pack [label .rhf.h.l -text "classicMouseSelect: "] -side right
70 pack [radiobutton .rhf.g.on -text "On " -variable ::ntext::classicAnchor -value 1] -side right
71 pack [radiobutton .rhf.g.off -text "Off" -variable ::ntext::classicAnchor -value 0] -side right
72 pack [label .rhf.g.l -text "classicAnchor: "] -side right
[all...]
/macosx-10.10/tcl-105/tk/tk/library/demos/
H A Dixset121 set mouseacc [.mouse.hor.acc.entry get]
122 set mousethr [.mouse.hor.thr.entry get]
154 .mouse.hor.acc.entry delete 0 end
155 .mouse.hor.acc.entry insert 0 $mouseacc
156 .mouse.hor.thr.entry delete 0 end
157 .mouse.hor.thr.entry insert 0 $mousethr
182 pack $path.entry -side right -expand y -fill x
234 pack .bell.val.dur -side right -padx 5
260 labelframe .mouse -text "Mouse Settings" -padx 1.5m -pady 1.5m
262 frame .mouse
[all...]
H A Dtext.tcl28 pack $w.scroll -side right -fill y
37 2. Scanning. Press mouse button 2 in the text window and drag up or down.
40 3. Insert text. Press mouse button 1 to set the insertion cursor, then
43 4. Select. Press mouse button 1 and drag to select a range of characters.
46 selection nearest the mouse cursor and you can drag that end of the
47 selection by dragging the mouse before releasing the mouse button.
57 click button 2 to copy the selection to the point of the mouse cursor.
62 erase the character to the right of the insertion cursor. Meta-backspace
64 the word to the right o
[all...]
H A Dbind.tcl28 pack $w.scroll -side right -fill y
44 The same tag mechanism that controls display styles in text widgets can also be used to associate Tcl commands with regions of text, so that mouse or keyboard actions on the text cause particular Tcl commands to be invoked. For example, in the text below the descriptions of the canvas demonstrations have been tagged. When you move the mouse over a demo description the description lights up, and when you press button 1 over a description then that particular demonstration is invoked.
H A Drolodex63 pack .menu.help -side right
185 set helpTopics(context) {Unfortunately, this application doesn't support context-sensitive help in the usual way, because when this demo was written Tk didn't have a grab mechanism and this is needed for context-sensitive help. Instead, you can achieve much the same effect by simply moving the mouse over the window you're curious about and pressing the Help or F1 keys. You can do this anytime.}
186 set helpTopics(help) {This application provides only very crude help. Besides the entries in this menu, you can get help on individual windows by moving the mouse cursor over the window and pressing the Help or F1 keys.}
/macosx-10.10/tcl-105/tk84/tk/library/demos/
H A Dixset125 set mouseacc [.mouse.hor.acc.entry get]
126 set mousethr [.mouse.hor.thr.entry get]
158 .mouse.hor.acc.entry delete 0 end
159 .mouse.hor.acc.entry insert 0 $mouseacc
160 .mouse.hor.thr.entry delete 0 end
161 .mouse.hor.thr.entry insert 0 $mousethr
186 pack $path.entry -side right -expand y -fill x
238 pack .bell.val.dur -side right -padx 5
264 labelframe .mouse -text "Mouse Settings" -padx 1.5m -pady 1.5m
266 frame .mouse
[all...]
H A Dtext.tcl28 pack $w.scroll -side right -fill y
37 2. Scanning. Press mouse button 2 in the text window and drag up or down.
40 3. Insert text. Press mouse button 1 to set the insertion cursor, then
43 4. Select. Press mouse button 1 and drag to select a range of characters.
46 selection nearest the mouse cursor and you can drag that end of the
47 selection by dragging the mouse before releasing the mouse button.
57 click button 2 to copy the selection to the point of the mouse cursor.
62 erase the character to the right of the insertion cursor. Meta-backspace
64 the word to the right o
[all...]
H A Dbind.tcl28 pack $w.scroll -side right -fill y
44 The same tag mechanism that controls display styles in text widgets can also be used to associate Tcl commands with regions of text, so that mouse or keyboard actions on the text cause particular Tcl commands to be invoked. For example, in the text below the descriptions of the canvas demonstrations have been tagged. When you move the mouse over a demo description the description lights up, and when you press button 1 over a description then that particular demonstration is invoked.
H A Drolodex57 pack .menu.help -side right
179 set helpTopics(context) {Unfortunately, this application doesn't support context-sensitive help in the usual way, because when this demo was written Tk didn't have a grab mechanism and this is needed for context-sensitive help. Instead, you can achieve much the same effect by simply moving the mouse over the window you're curious about and pressing the Help or F1 keys. You can do this anytime.}
180 set helpTopics(help) {This application provides only very crude help. Besides the entries in this menu, you can get help on individual windows by moving the mouse cursor over the window and pressing the Help or F1 keys.}
/macosx-10.10/WebCore-7600.1.25/plugins/mac/
H A DPluginViewMac.mm285 m_npWindow.clipRect.right = m_windowRect.x() + m_windowRect.width();
291 m_npWindow.clipRect.right - m_npWindow.clipRect.left, m_npWindow.clipRect.bottom - m_npWindow.clipRect.top);
385 IntRect r(rect->left, rect->top, rect->right - rect->left, rect->bottom - rect->top);
414 cocoaEvent.data.mouse.pluginX = event->layerX() - m_npWindow.x + m_windowRect.x() - m_element->offsetLeft();
415 cocoaEvent.data.mouse.pluginY = event->layerY() - m_npWindow.y + m_windowRect.y() - m_element->offsetTop();
416 cocoaEvent.data.mouse.deltaX = [currentEvent deltaX];
417 cocoaEvent.data.mouse.deltaY = [currentEvent deltaY];
418 cocoaEvent.data.mouse.deltaZ = [currentEvent deltaZ];
419 cocoaEvent.data.mouse.modifierFlags = getModifiers(event);
423 cocoaEvent.data.mouse
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/sample/demos-en/
H A Dtext.rb59 pack('side'=>'right', 'fill'=>'y')
73 2. Scanning. Press mouse button 2 in the text window and drag up or down.
76 3. Insert text. Press mouse button 1 to set the insertion cursor, then
79 4. Select. Press mouse button 1 and drag to select a range of characters.
82 selection nearest the mouse cursor and you can drag that end of the
83 selection by dragging the mouse before releasing the mouse button.
93 click button 2 to copy the selection to the point of the mouse cursor.
98 erase the character to the right of the insertion cursor. Meta-backspace
100 the word to the right o
[all...]
H A Dpaned2.rb24 The sash between the two scrolled windows below can be used to divide the area between them. Use the left mouse button to resize without redrawing by just moving the sash, and use the middle mouse button to resize opaquely (always redrawing the windows in each position.)
74 yscrollbar(TkScrollbar.new(paned2_top).pack(:side=>:right,
H A Dspin.rb28 Delete and Control-d delete the chararacter to the right of the \
31 with mouse button2 pressed. Note that the first spin-box will \
H A Dttknote.rb54 Not only can the tabs be selected with the mouse, \
88 editor_s.pack(:side=>:right, :fill=>:y, :padx=>[0,2], :pady=>2)
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Plugins/Netscape/mac/
H A DNetscapePluginMac.mm166 if (!convertPoint(m_currentMouseEvent->data.mouse.pluginX, m_currentMouseEvent->data.mouse.pluginY, NPCoordinateSpacePlugin, screenX, screenY, NPCoordinateSpaceScreen))
371 bounds.right = screenX + m_pluginSize.width();
420 // We only want to set the btnState if a mouse button is _not_ down.
433 // Set controlKey if the control key is down or the right mouse button is down.
518 event.data.mouse.modifierFlags = modifierFlags(mouseEvent);
519 event.data.mouse.pluginX = eventPositionInPluginCoordinates.x();
520 event.data.mouse.pluginY = eventPositionInPluginCoordinates.y();
521 event.data.mouse
[all...]
/macosx-10.10/emacs-93/emacs/lisp/
H A Dmouse.el0 ;;; mouse.el --- window system-independent mouse support
7 ;; Keywords: hardware, mouse
29 ;; system access) through the mouse. All this code assumes that mouse
38 ;;; Indent track-mouse like progn.
39 (put 'track-mouse 'lisp-indent-function 0)
41 (defcustom mouse-yank-at-point nil
42 "*If non-nil, mouse yank commands yank at point instead of at click."
44 :group 'mouse)
[all...]
H A Dcus-start.el45 (mode-line-format modeline sexp) ;Hard to do right.
61 (const :tag "On right, with arrows" right)
73 (const :tag "On the right" (t . right)))
78 (const :tag "On the right" (top . right)))
83 (const :tag "On the right" (bottom . right)))
88 (const :tag "On the right" (u
[all...]
H A Dscroll-bar.el28 ;; Window-system-independent bindings of mouse clicks on the scroll bar.
33 (require 'mouse)
60 SIDE must be the symbol `left' or `right'."
65 ((not (memq side '(left right)))
66 (error "`left' or `right' expected instead of %S" side))
116 and `right' (scroll bars on right).
122 (const right))
258 (track-mouse
261 (if (eq (car-safe event) 'mouse
[all...]
H A Dbindings.el50 (defun make-mode-line-mouse-map (mouse function) "\
51 Return a keymap with single entry for mouse key MOUSE on the mode line.
55 (define-key map (vector 'mode-line mouse) function)
106 (define-key map [mode-line mouse-2]
114 (define-key map [mode-line mouse-3]
126 (define-key map [mode-line mouse-1]
159 'help-echo (format "%s end-of-line; mouse-1 to cycle"
167 (define-key map [mode-line mouse-1] 'mode-line-change-eol)
169 'mouse
[all...]
H A Dmenu-bar.el8 ;; Keywords: internal, mouse
42 :group 'mouse)
379 "Fill text in region to fit between left and right margin"))
462 (not (mouse-region-match)))
501 (if (mouse-region-match)
502 (message "Selecting a region with the mouse does `copy' automatically")
686 (define-key menu-bar-options-menu [mouse-set-font]
687 '(menu-item "Set Font/Fontset..." mouse-set-font
753 "Display top and bottom indicators in opposite fringes, arrows in right."
756 '((t . right) (to
[all...]
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/cursor/
H A Dcursor.tcl29 ll_angle lr_angle man middlebutton mouse pencil pirate plus \
131 pack $t.sy -side right -fill y
132 pack $t.lb -side right -fill both -expand 1
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DDetailsSection.css137 .details-section > .header:not(.mouse-over-options-element):active::before {
145 .details-section.collapsed > .header:not(.mouse-over-options-element):active::before {
150 float: right;
153 text-align: right;
168 float: right;
263 text-align: right;
273 padding-right: 6px;
301 border-right: none;
/macosx-10.10/emacs-93/emacs/etc/
H A Dorgcard.tex240 % form near the right margin.
364 \key{move the current column right}{M-RIGHT}
433 \key{open link at point}{mouse-1/2}
434 \key{...force open in emacs/other window}{mouse-3}
483 \key{right here (cursor not on heading)}{RET}
544 \key{Select date while prompted}{mouse-1/RET}
545 %\key{... select date in calendar}{mouse-1/RET}
597 \key{show original location of item}{SPC/mouse-3}
598 %\key{... also available with}{mouse-3}
600 \key{goto original location in other window}{TAB/mouse
[all...]
/macosx-10.10/emacs-93/emacs/src/
H A Dmacmenu.c226 following items should appear on the right of a dialog box.
388 /* Indicate boundary between left and right. */
657 POSITION is a position specification. This is either a mouse button event
662 If POSITION is t, it means to use the current mouse position.
693 instance by clicking the mouse away from a valid choice or by typing
695 `x-popup-menu' does not return. But if POSITION is a mouse button
696 event (indicating that the user invoked the menu with the mouse) then
724 /* Use the mouse's current position. */
919 This is normally a mouse button event or a window or frame.
920 If POSITION is t, it means to use the frame the mouse i
2540 short bottom, right, max_height, left_align_shift; local
2733 Point mouse; local
[all...]

Completed in 316 milliseconds

12