Home
last modified time | relevance | path

Searched refs:scroll_to (Results 1 – 25 of 523) sorted by relevance

12345678910>>...21

/dports/games/angband/Angband-4.2.2/src/
H A Dui-history.c86 size_t scroll_to = first_item + page_size; in history_display() local
87 first_item = (scroll_to < max_item ? scroll_to : max_item); in history_display()
93 int scroll_to = first_item - page_size; in history_display() local
94 first_item = (scroll_to >= 0 ? scroll_to : 0); in history_display()
99 size_t scroll_to = first_item + 1; in history_display() local
100 first_item = (scroll_to < max_item ? scroll_to : max_item); in history_display()
105 int scroll_to = first_item - 1; in history_display() local
106 first_item = (scroll_to >= 0 ? scroll_to : 0); in history_display()
/dports/games/wesnoth/wesnoth-1.14.17/data/multiplayer/scenarios/
H A DWesbench_Scroll.cfg148 [scroll_to]
151 [scroll_to]
154 [scroll_to]
157 [scroll_to]
160 [scroll_to]
163 [scroll_to]
166 [scroll_to]
169 [scroll_to]
172 [scroll_to]
175 [scroll_to]
[all …]
/dports/www/netrik/netrik-1.16.1/
H A Dpager.c402 static void scroll_to(page, new_line) in scroll_to() function
634 scroll_to(page, page->pager_pos+1);
639 scroll_to(page, page->pager_pos-1);
644 scroll_to(page, page->pager_pos+2);
649 scroll_to(page, page->pager_pos-2);
655 scroll_to(page, page->pager_pos+LINES);
660 scroll_to(page, page->pager_pos-LINES);
666 scroll_to(page, page->pager_pos+LINES/2);
672 scroll_to(page, page->pager_pos-LINES/2);
678 scroll_to(page, 0);
[all …]
/dports/x11-toolkits/gtkmm24/gtkmm-2.24.5/gtk/src/
H A Dtextview.ccg33 bool TextView::scroll_to(TextBuffer::iterator& iter, double within_margin)
39 bool TextView::scroll_to(TextBuffer::iterator& iter, double within_margin, double xalign, double ya…
44 void TextView::scroll_to(const Glib::RefPtr<TextBuffer::Mark>& mark, double within_margin)
50 void TextView::scroll_to(const Glib::RefPtr<TextBuffer::Mark>& mark, double within_margin, double x…
58 return scroll_to(iter, within_margin);
63 scroll_to(mark, within_margin);
68 scroll_to(mark);
/dports/games/wesnoth/wesnoth-1.14.17/data/campaigns/tutorial/utils/
H A Dutils.cfg92 [scroll_to]
95 [/scroll_to]
106 [scroll_to]
109 [/scroll_to]
111 [scroll_to]
114 [/scroll_to]
/dports/editors/xi-term/xi-term-d264767/src/widgets/
H A Deditor.rs142 XiNotification::ScrollTo(scroll_to) => self.scroll_to(scroll_to), in handle_core_event()
161 fn scroll_to(&mut self, scroll_to: ScrollTo) { in scroll_to() method
162 match self.views.get_mut(&scroll_to.view_id) { in scroll_to()
163 Some(view) => view.set_cursor(scroll_to.line, scroll_to.column), in scroll_to()
166 .push(CoreEvent::Notify(XiNotification::ScrollTo(scroll_to))), in scroll_to()
/dports/graphics/clutter/clutter-1.26.4/clutter/
H A Dclutter-scroll-actor.c61 ClutterPoint scroll_to; member
107 if (clutter_point_equals (&priv->scroll_to, point)) in G_DEFINE_TYPE_WITH_CODE()
111 clutter_point_init (&priv->scroll_to, 0.f, 0.f); in G_DEFINE_TYPE_WITH_CODE()
113 priv->scroll_to = *point; in G_DEFINE_TYPE_WITH_CODE()
116 dx = -priv->scroll_to.x; in G_DEFINE_TYPE_WITH_CODE()
121 dy = -priv->scroll_to.y; in G_DEFINE_TYPE_WITH_CODE()
238 g_value_set_boxed (value, &self->priv->scroll_to); in clutter_scroll_actor_get_initial_state()
396 &priv->scroll_to); in clutter_scroll_actor_scroll_to_point()
/dports/x11-wm/muffin/muffin-4.8.0/clutter/clutter/
H A Dclutter-scroll-actor.c61 ClutterPoint scroll_to; member
107 if (clutter_point_equals (&priv->scroll_to, point)) in G_DEFINE_TYPE_WITH_CODE()
111 clutter_point_init (&priv->scroll_to, 0.f, 0.f); in G_DEFINE_TYPE_WITH_CODE()
113 priv->scroll_to = *point; in G_DEFINE_TYPE_WITH_CODE()
116 dx = -priv->scroll_to.x; in G_DEFINE_TYPE_WITH_CODE()
121 dy = -priv->scroll_to.y; in G_DEFINE_TYPE_WITH_CODE()
238 g_value_set_boxed (value, &self->priv->scroll_to); in clutter_scroll_actor_get_initial_state()
396 &priv->scroll_to); in clutter_scroll_actor_scroll_to_point()
/dports/x11-wm/mutter/mutter-41.1/clutter/clutter/
H A Dclutter-scroll-actor.c59 graphene_point_t scroll_to; member
105 if (graphene_point_equal (&priv->scroll_to, point)) in G_DEFINE_TYPE_WITH_CODE()
109 graphene_point_init (&priv->scroll_to, 0.f, 0.f); in G_DEFINE_TYPE_WITH_CODE()
111 priv->scroll_to = *point; in G_DEFINE_TYPE_WITH_CODE()
114 dx = -priv->scroll_to.x; in G_DEFINE_TYPE_WITH_CODE()
119 dy = -priv->scroll_to.y; in G_DEFINE_TYPE_WITH_CODE()
237 g_value_set_boxed (value, &self->priv->scroll_to); in clutter_scroll_actor_get_initial_state()
395 &priv->scroll_to); in clutter_scroll_actor_scroll_to_point()
/dports/games/wesnoth/wesnoth-1.14.17/src/gui/dialogs/
H A Dunit_list.hpp40 explicit unit_list(unit_ptr_vector& unit_list, map_location& scroll_to);
42 static bool execute(unit_ptr_vector& units, map_location& scroll_to) in execute() argument
49 return unit_list(units, scroll_to).show(); in execute()
H A Dunit_list.cpp50 unit_list::unit_list(unit_ptr_vector& unit_list, map_location& scroll_to) in REGISTER_DIALOG()
52 , scroll_to_(scroll_to) in REGISTER_DIALOG()
204 map_location scroll_to; in show_unit_list() local
215 if(unit_list::execute(unit_list, scroll_to)) { in show_unit_list()
216 gui.scroll_to_tile(scroll_to, display::WARP); in show_unit_list()
217 gui.select_hex(scroll_to); in show_unit_list()
/dports/games/wesnoth/wesnoth-1.14.17/data/multiplayer/scenarios/ANL_utils/
H A DANL_auto_working.cfg49 [scroll_to]
51 [/scroll_to]
152 [scroll_to]
154 [/scroll_to]
280 [scroll_to]
282 [/scroll_to]
/dports/x11-toolkits/gtkmm30/gtkmm-3.24.2/gtk/src/
H A Dtextview.ccg30 bool TextView::scroll_to(TextBuffer::iterator& iter, double within_margin)
36 bool TextView::scroll_to(TextBuffer::iterator& iter, double within_margin, double xalign, double ya…
41 void TextView::scroll_to(const Glib::RefPtr<TextBuffer::Mark>& mark, double within_margin)
47 void TextView::scroll_to(const Glib::RefPtr<TextBuffer::Mark>& mark, double within_margin, double x…
/dports/games/supertux2/SuperTux-v0.6.3-Source/src/scripting/
H A Dcamera.cpp47 object.scroll_to(Vector(x, y), 0.0f); in set_pos()
66 Camera::scroll_to(float x, float y, float scrolltime) in scroll_to() function in scripting::Camera
70 object.scroll_to(Vector(x, y), scrolltime); in scroll_to()
/dports/editors/xi-term/xi-term-d264767/cargo-crates/xrl-0.0.8/src/structs/
H A Dscroll_to.rs18 let scroll_to = ScrollTo { in deserialize_ok() localVariable
23 assert_eq!(deserialized.unwrap(), scroll_to); in deserialize_ok()
H A Dmod.rs10 mod scroll_to; module
30 pub use self::scroll_to::ScrollTo;
/dports/games/burrtools/burrtools-0.6.3/src/flu/
H A DFlu_Wrap_Group.h90 void scroll_to( const Fl_Widget *w );
93 inline void scroll_to( const Fl_Widget& w ) in scroll_to() function
94 { scroll_to( &w ); } in scroll_to()
/dports/editors/jucipp/jucipp-b3b5182258b25835e7c5f683623ab774d8e34c75/src/
H A Dsource.cpp1209 scroll_to(get_buffer()->get_insert()); in scroll_to_cursor_delayed()
2661 scroll_to(get_buffer()->get_insert()); in on_key_press_event_basic()
2671 scroll_to(get_buffer()->get_insert()); in on_key_press_event_basic()
2676 scroll_to(get_buffer()->get_insert()); in on_key_press_event_basic()
2825 scroll_to(get_buffer()->get_insert()); in on_key_press_event_basic()
3242 scroll_to(get_buffer()->get_insert()); in on_key_press_event_bracket_language()
3311 scroll_to(get_buffer()->get_insert()); in on_key_press_event_bracket_language()
3453 scroll_to(iter); in on_key_press_event_smart_brackets()
3676 scroll_to(get_buffer()->get_insert()); in on_key_press_event_smart_inserts()
3685 scroll_to(get_buffer()->get_insert()); in on_key_press_event_smart_inserts()
[all …]
/dports/games/wesnoth/wesnoth-1.14.17/data/campaigns/Eastern_Invasion/scenarios/
H A D02_The_Escape_Tunnel.cfg195 [scroll_to]
197 [/scroll_to]
207 [scroll_to]
209 [/scroll_to]
219 [scroll_to]
221 [/scroll_to]
231 [scroll_to]
233 [/scroll_to]
/dports/deskutils/gnote/gnote-41.1/src/
H A Dnoteeditor.cpp197 scroll_to (get_buffer()->get_insert()); in key_pressed()
202 scroll_to (get_buffer()->get_insert()); in key_pressed()
206 scroll_to (get_buffer()->get_insert()); in key_pressed()
211 scroll_to (get_buffer()->get_insert()); in key_pressed()
/dports/deskutils/calibre/calibre-src-5.34.0/src/calibre/gui2/preferences/
H A Dtemplate_functions.py232 def build_function_names_box(self, scroll_to=''): argument
240 if scroll_to:
241 idx = self.function_name.findText(scroll_to)
244 if scroll_to not in self.builtins:
291 self.build_function_names_box(scroll_to=name)
367 def st_build_function_names_box(self, scroll_to=''): argument
376 if scroll_to:
377 idx = self.te_name.findText(scroll_to)
411 self.st_build_function_names_box(scroll_to=name)
/dports/emulators/kcemu/KCemu-0.5.1/src/ui/gtk/
H A Dhelp.cc73 _w->scroll_to("home", TRUE); in execute()
77 _w->scroll_to("index", TRUE); in execute()
83 _w->scroll_to(topic, TRUE); in execute()
110 w->scroll_to("home", TRUE); in sf_button_home()
117 w->scroll_to("index", TRUE); in sf_button_index()
528 if (scroll_to((const char *)_history_ptr->data, FALSE)) in history_next()
543 if (scroll_to((const char *)_history_ptr->data, FALSE)) in history_back()
610 HelpWindow::scroll_to(const char *topic, gboolean update_history) in scroll_to() function in HelpWindow
671 scroll_to(ref, TRUE); in follow_if_link()
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/docs_screenshots/
H A Dwiki_docs.rb25 scroll_to screenshot_area
40 scroll_to screenshot_area
/dports/misc/nut/nut-20.1/fltk/
H A DFoodRanking.cc214 ancient_scroll->scroll_to(0,0); in per_daily_recorded_meals()
243 ancient_scroll->scroll_to(0,0); in per_100_grams()
279 ancient_scroll->scroll_to(0,0); in per_100_grams_dry_weight()
314 ancient_scroll->scroll_to(0,0); in per_100_grams_within_food_group()
385 ancient_scroll->scroll_to(0,0); in per_serving_minimize()
421 ancient_scroll->scroll_to(0,0); in per_100_calories()
450 ancient_scroll->scroll_to(0,0); in per_serving()
/dports/audio/exaile/exaile-4.1.1/xlgui/
H A Dguiutil.py720 scroll_to = model.convert_child_path_to_path(visible_ref.get_path())
723 scroll_to = model.convert_child_path_to_path(visible_data)
725 if scroll_to is None:
727 scroll_to = _get_closest_visible(model, visible_data)
729 if scroll_to:
730 tv.scroll_to_cell(scroll_to, None, True, 0, 0)

12345678910>>...21