Home
last modified time | relevance | path

Searched refs:scroll (Results 1 – 25 of 72) sorted by relevance

123

/OK3568_Linux_fs/kernel/scripts/kconfig/lxdialog/
H A Dmenubox.c98 static void print_arrows(WINDOW * win, int item_no, int scroll, int y, int x, in print_arrows() argument
107 if (scroll > 0) { in print_arrows()
123 if ((height < item_no) && (scroll + height < item_no)) { in print_arrows()
158 static void do_scroll(WINDOW *win, int *scroll, int n) in do_scroll() argument
164 *scroll = *scroll + n; in do_scroll()
176 int key = 0, button = 0, scroll = 0, choice = 0; in dialog_menu() local
239 scroll = *s_scroll; in dialog_menu()
240 if ((scroll <= choice) && (scroll + max_choice > choice) && in dialog_menu()
241 (scroll >= 0) && (scroll + max_choice <= item_count())) { in dialog_menu()
242 first_item = scroll; in dialog_menu()
[all …]
H A Dchecklist.c52 static void print_arrows(WINDOW * win, int choice, int item_no, int scroll, in print_arrows() argument
57 if (scroll > 0) { in print_arrows()
72 if ((height < item_no) && (scroll + choice < item_no - 1)) { in print_arrows()
108 int key = 0, button = 0, choice = 0, scroll = 0, max_choice; in dialog_checklist() local
176 scroll = choice - list_height + 1; in dialog_checklist()
177 choice -= scroll; in dialog_checklist()
182 item_set(scroll + i); in dialog_checklist()
186 print_arrows(dialog, choice, item_count(), scroll, in dialog_checklist()
199 item_set(i + scroll); in dialog_checklist()
208 if (!scroll) in dialog_checklist()
[all …]
/OK3568_Linux_fs/buildroot/support/kconfig/lxdialog/
H A Dmenubox.c111 static void print_arrows(WINDOW * win, int item_no, int scroll, int y, int x, in print_arrows() argument
120 if (scroll > 0) { in print_arrows()
136 if ((height < item_no) && (scroll + height < item_no)) { in print_arrows()
171 static void do_scroll(WINDOW *win, int *scroll, int n) in do_scroll() argument
177 *scroll = *scroll + n; in do_scroll()
189 int key = 0, button = 0, scroll = 0, choice = 0; in dialog_menu() local
252 scroll = *s_scroll; in dialog_menu()
253 if ((scroll <= choice) && (scroll + max_choice > choice) && in dialog_menu()
254 (scroll >= 0) && (scroll + max_choice <= item_count())) { in dialog_menu()
255 first_item = scroll; in dialog_menu()
[all …]
H A Dchecklist.c65 static void print_arrows(WINDOW * win, int choice, int item_no, int scroll, in print_arrows() argument
70 if (scroll > 0) { in print_arrows()
85 if ((height < item_no) && (scroll + choice < item_no - 1)) { in print_arrows()
121 int key = 0, button = 0, choice = 0, scroll = 0, max_choice; in dialog_checklist() local
189 scroll = choice - list_height + 1; in dialog_checklist()
190 choice -= scroll; in dialog_checklist()
195 item_set(scroll + i); in dialog_checklist()
199 print_arrows(dialog, choice, item_count(), scroll, in dialog_checklist()
212 item_set(i + scroll); in dialog_checklist()
221 if (!scroll) in dialog_checklist()
[all …]
/OK3568_Linux_fs/u-boot/scripts/kconfig/lxdialog/
H A Dmenubox.c99 static void print_arrows(WINDOW * win, int item_no, int scroll, int y, int x, in print_arrows() argument
108 if (scroll > 0) { in print_arrows()
124 if ((height < item_no) && (scroll + height < item_no)) { in print_arrows()
159 static void do_scroll(WINDOW *win, int *scroll, int n) in do_scroll() argument
165 *scroll = *scroll + n; in do_scroll()
177 int key = 0, button = 0, scroll = 0, choice = 0; in dialog_menu() local
240 scroll = *s_scroll; in dialog_menu()
241 if ((scroll <= choice) && (scroll + max_choice > choice) && in dialog_menu()
242 (scroll >= 0) && (scroll + max_choice <= item_count())) { in dialog_menu()
243 first_item = scroll; in dialog_menu()
[all …]
H A Dchecklist.c53 static void print_arrows(WINDOW * win, int choice, int item_no, int scroll, in print_arrows() argument
58 if (scroll > 0) { in print_arrows()
73 if ((height < item_no) && (scroll + choice < item_no - 1)) { in print_arrows()
109 int key = 0, button = 0, choice = 0, scroll = 0, max_choice; in dialog_checklist() local
177 scroll = choice - list_height + 1; in dialog_checklist()
178 choice -= scroll; in dialog_checklist()
183 item_set(scroll + i); in dialog_checklist()
187 print_arrows(dialog, choice, item_count(), scroll, in dialog_checklist()
200 item_set(i + scroll); in dialog_checklist()
209 if (!scroll) in dialog_checklist()
[all …]
/OK3568_Linux_fs/kernel/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
H A DSchedGui.py42 self.scroll = wx.ScrolledWindow(self.panel)
43 …self.scroll.SetScrollbars(self.scroll_scale, self.scroll_scale, self.width_virtual / self.scroll_s…
44 self.scroll.EnableScrolling(True, True)
45 self.scroll.SetFocus()
48 self.scroll_panel = wx.Panel(self.scroll, size=(self.screen_width - 15, self.screen_height / 2))
52 self.scroll.Bind(wx.EVT_PAINT, self.on_paint)
53 self.scroll.Bind(wx.EVT_KEY_DOWN, self.on_key_press)
54 self.scroll.Bind(wx.EVT_LEFT_DOWN, self.on_mouse_down)
56 self.scroll.Fit()
72 (x, y) = self.scroll.GetViewStart()
[all …]
/OK3568_Linux_fs/kernel/drivers/input/keyboard/
H A Datkbd.c56 module_param_named(scroll, atkbd_scroll, bool, 0);
57 MODULE_PARM_DESC(scroll, "Enable scroll-wheel on MS Office and similar keyboards");
221 bool scroll; member
279 ATKBD_DEFINE_ATTR(scroll);
415 int scroll = 0, hscroll = 0, click = -1; in atkbd_interrupt() local
517 scroll = 1; in atkbd_interrupt()
520 scroll = 2; in atkbd_interrupt()
523 scroll = 4; in atkbd_interrupt()
526 scroll = 8; in atkbd_interrupt()
560 if (atkbd->scroll) { in atkbd_interrupt()
[all …]
/OK3568_Linux_fs/kernel/Documentation/input/devices/
H A Dsentelic.rst121 Bit4 => scroll up
122 Bit5 => scroll down
123 Bit6 => scroll left
124 Bit7 => scroll right
227 Byte 4: Bit7 => scroll right button
228 Bit6 => scroll left button
229 Bit5 => scroll down button
230 Bit4 => scroll up button
268 Bit4 => scroll down button
269 Bit5 => scroll up button
[all …]
H A Delantech.rst202 V: 1 = enable vertical scroll area
203 H: 1 = enable horizontal scroll area
211 scroll area width (small: 0x40 ... wide: 0xff)
272 ds3..ds0 = scroll wheel amount and direction
284 h = 1 when horizontal scroll action
292 ds7..ds0 = vertical scroll amount and direction
380 S: 1 = enable vertical scroll
/OK3568_Linux_fs/external/xserver/Xi/
H A Dxiquerydevice.c229 if (dev->valuator->axes[i].scroll.type != SCROLL_TYPE_NONE) in SizeDeviceClasses()
399 if (axis->scroll.type == SCROLL_TYPE_NONE) in ListScrollInfo()
405 switch (axis->scroll.type) { in ListScrollInfo()
414 axis->scroll.type); in ListScrollInfo()
417 info->increment = double_to_fp3232(axis->scroll.increment); in ListScrollInfo()
422 if (axis->scroll.flags & SCROLL_FLAG_DONT_EMULATE) in ListScrollInfo()
424 if (axis->scroll.flags & SCROLL_FLAG_PREFERRED) in ListScrollInfo()
/OK3568_Linux_fs/external/xserver/test/
H A Dinput.c102 assert(axis->scroll.increment == 3.0); in dix_init_valuators()
103 assert(axis->scroll.type == SCROLL_TYPE_VERTICAL); in dix_init_valuators()
104 assert(axis->scroll.flags == 0); in dix_init_valuators()
110 assert(axis->scroll.increment == 2.0); in dix_init_valuators()
111 assert(axis->scroll.type == SCROLL_TYPE_HORIZONTAL); in dix_init_valuators()
112 assert(axis->scroll.flags == 0); in dix_init_valuators()
124 assert(axis->scroll.increment == 5.5); in dix_init_valuators()
125 assert(axis->scroll.type == SCROLL_TYPE_VERTICAL); in dix_init_valuators()
126 assert(axis->scroll.flags == SCROLL_FLAG_PREFERRED); in dix_init_valuators()
132 assert(axis->scroll.increment == 8.8); in dix_init_valuators()
[all …]
/OK3568_Linux_fs/external/xserver/dix/
H A Deventconvert.c516 if (dce->valuators[axisnumber].scroll.type == SCROLL_TYPE_NONE) in appendScrollInfo()
522 switch (dce->valuators[axisnumber].scroll.type) { in appendScrollInfo()
531 dce->valuators[axisnumber].scroll.type); in appendScrollInfo()
535 double_to_fp3232(dce->valuators[axisnumber].scroll.increment); in appendScrollInfo()
540 if (dce->valuators[axisnumber].scroll.flags & SCROLL_FLAG_DONT_EMULATE) in appendScrollInfo()
542 if (dce->valuators[axisnumber].scroll.flags & SCROLL_FLAG_PREFERRED) in appendScrollInfo()
567 if (dce->valuators[i].scroll.type != SCROLL_TYPE_NONE) in eventToDeviceChanged()
614 if (dce->valuators[i].scroll.type != SCROLL_TYPE_NONE) { in eventToDeviceChanged()
H A Dgetevents.c285 dce->valuators[i].scroll = slave->valuator->axes[i].scroll; in CreateClassesChangedEvent()
747 valuator_mask_set_double(dev->last.scroll, valuator, 0); in add_to_scroll_valuator()
1521 if (dev->valuator->axes[axis].scroll.type == SCROLL_TYPE_NONE) in emulate_scroll_button_events()
1528 incr = ax->scroll.increment; in emulate_scroll_button_events()
1544 b = (ax->scroll.type == SCROLL_TYPE_VERTICAL) ? 5 : 7; in emulate_scroll_button_events()
1614 ValuatorMask scroll; in GetPointerEvents() local
1680 adj *= pDev->valuator->axes[axis].scroll.increment; in GetPointerEvents()
1696 valuator_mask_zero(&scroll); in GetPointerEvents()
1707 valuator_mask_set_double(&scroll, i, pDev->last.valuators[i]); in GetPointerEvents()
1710 emulate_scroll_button_events(events, pDev, realtype, i, &scroll, in GetPointerEvents()
[all …]
/OK3568_Linux_fs/kernel/arch/x86/boot/compressed/
H A Dmisc.c86 static void scroll(void) in scroll() function
133 scroll(); in __putstr()
141 scroll(); in __putstr()
/OK3568_Linux_fs/kernel/drivers/input/mouse/
H A Dsynaptics.h162 s8 scroll; member
185 int scroll; member
H A Dsynaptics.c849 hw->scroll = (s8)buf[1]; in synaptics_parse_hw_state()
1080 if (hw.scroll) { in synaptics_process_packet()
1081 priv->scroll += hw.scroll; in synaptics_process_packet()
1083 while (priv->scroll >= 4) { in synaptics_process_packet()
1088 priv->scroll -= 4; in synaptics_process_packet()
1090 while (priv->scroll <= -4) { in synaptics_process_packet()
1095 priv->scroll += 4; in synaptics_process_packet()
/OK3568_Linux_fs/kernel/Documentation/userspace-api/media/v4l/
H A Dext-ctrls-fm-rx.rst38 which can scroll strings sized as 8 x N characters. So, this control
51 also possible to find receivers which can scroll strings sized as 32
/OK3568_Linux_fs/kernel/Documentation/input/
H A Devent-codes.rst167 them on the touchpad in an effort to scroll content on screen,
192 - These codes are used for vertical and horizontal scroll wheels,
195 this may be an approximation based on the high-resolution scroll events,
202 - High-resolution scroll wheel data. The accumulated value 120 represents
207 If a vertical scroll wheel supports high-resolution scrolling, this code
210 scroll events. There is no guarantee that the high-resolution data
391 scroll wheel events where available.
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
H A Darmada-xp-lenovo-ix4-300d.dts160 scroll-button {
284 scroll_button_pin: scroll-button-pin {
/OK3568_Linux_fs/kernel/Documentation/fb/
H A Duvesafb.rst56 # modprobe uvesafb mode_option=1024x768-32 mtrr=3 scroll=ywrap (module)
77 used a parameter of the scroll option, e.g. scroll=ypan.)
/OK3568_Linux_fs/external/xserver/include/
H A Dinputstr.h277 ScrollInfo scroll; member
583 ValuatorMask *scroll; member
H A Deventstr.h194 ScrollInfo scroll; /**< Smooth scrolling info */ member
/OK3568_Linux_fs/buildroot/dl/qt5location/git/dist/
H A Dchanges-5.10.032 * Added rotation and tilt scroll wheel actions.
/OK3568_Linux_fs/yocto/poky/meta/recipes-sato/rxvt-unicode/
H A Drxvt-unicode.inc29 --enable-text-blink --enable-rxvt-scroll \

123