aboutsummaryrefslogtreecommitdiff
path: root/util/travis/before_install.sh
Commit message (Expand)AuthorAge
* Add clang format & skip build if no source file modified (#5433)Loïc Blot2017-03-25
* CI: Add memleak checking using valgrind (#5350)Loïc Blot2017-03-06
* Travis: Only trigger a compile, when C/C++ related files were touched (#4284)Tim2016-10-15
* Fix macosx build by disabling postgresql upgradeLoic Blot2016-10-06
* Travis: build matrix improvements + CPP11 buildLoic Blot2016-10-06
* Implement a PostgreSQL backendLoic Blot2016-05-22
* Implement OSX Travis buildsPavel Puchkin2016-02-04
* Update URLs for buildbot & travissfan52015-12-26
* Make travis work againest312015-12-05
* Add LibGMPest312015-05-11
* Replaced libjpeg dependency on apt-get, it should be libjpeg-dev instead of l...Megaf2015-05-11
* Clean up and tweak build systemShadowNinja2015-03-27
* Add LevelDB and redis to Travis Linux buildssfan52015-02-16
* Update MinGW toolchain downloads used by travissfan52014-12-23
* Build for win32 & win64 on Travis toosfan52014-12-06
hl kwb">const SEvent &event); s32 getMax() const { return max_pos; } s32 getMin() const { return min_pos; } s32 getLargeStep() const { return large_step; } s32 getSmallStep() const { return small_step; } s32 getPos() const; void setMax(const s32 &max); void setMin(const s32 &min); void setSmallStep(const s32 &step); void setLargeStep(const s32 &step); void setPos(const s32 &pos); void setPageSize(const s32 &size); void setArrowsVisible(ArrowVisibility visible); private: void refreshControls(); s32 getPosFromMousePos(const core::position2di &p) const; f32 range() const { return f32(max_pos - min_pos); } IGUIButton *up_button; IGUIButton *down_button; ArrowVisibility arrow_visibility = DEFAULT; bool is_dragging; bool is_horizontal; bool is_auto_scaling; bool dragged_by_slider; bool tray_clicked; s32 scroll_pos; s32 draw_center; s32 thumb_size; s32 min_pos; s32 max_pos; s32 small_step; s32 large_step; s32 drag_offset; s32 page_size; s32 border_size; core::rect<s32> slider_rect; video::SColor current_icon_color; };