aboutsummaryrefslogtreecommitdiff
path: root/util/buildbot
Commit message (Expand)AuthorAge
* Update library versions in buildbot (#11229)sfan52021-04-27
* Buildbot changes to allow out-of-tree builds (#11180)sfan52021-04-11
* Adjust build config for Irrlicht changes (again)sfan52021-03-26
* Clean up cmake DLL installation and other minor thingssfan52021-03-12
* CI: update configurations for Irrlicht forksfan52021-03-09
* buildbot: Drop i586-mingw32msvc, add i686-w64-mingw32-posix detectionsfan52021-03-06
* Replace travis with github actions (#9641)Loïc Blot2020-04-20
* Update some libraries for buildbotsfan52020-02-12
* Update curl dependency in buildbotsfan52019-08-05
* Improve buildbot scriptPierre-Yves Rollo2019-06-21
* Update a few dependency versions for buildbot (#8319)sfan52019-03-07
* buildbot: exit 0 at the end of the scriptLoïc Blot2017-06-09
* Implement GItlab CI daily builds for windows platform (32 & 64) (#5923)Loïc Blot2017-06-08
* Minetest for C++11 (CMakeLists + Travis)Loic Blot2017-06-04
* Buildbot: Update Gettext version (#4971)sfan52016-12-29
* Buildbot: Update LuaJIT versionsfan52016-12-08
* Update library versions in buildbotsfan52016-09-21
* buildbot: retrieve short commit hash properlyFernando Carmona Varo2016-07-29
* Update URLs for buildbot & travissfan52015-12-26
* Update toolchain_mingw64.cmakeRui2015-07-18
* Add SQLite3 libraries to buildbotsfan52015-01-08
* Fix buildbot (was broken by 04a1a446cf845a0db80d39fd0e42771aa07e4492)sfan52015-01-06
* Build for win32 & win64 on Travis toosfan52014-12-06
* Update the cURL the buildbot uses to 7.38.0sfan52014-10-19
* Add ZLIBWAPI_DLL and LEVELDB_DLL CMake options Remove legacy MINGWM10_DLL CMa...sfan52014-07-29
* Update buildbot scripts and add 64-bit buildbotsfan52014-06-18
* Remove common from CMakeLists.txt, README.txt, lua-api.txt and buildwin.shPilzAdam2013-05-18
* Update buildwin32.sh to get minetest/commonPerttu Ahola2013-03-21
* Update buildbotPilzAdam2013-02-24
* Tweak buildbotsfan52013-01-23
* Fix buildbotPerttu Ahola2012-04-03
* Add util/buildbotPerttu Ahola2012-04-03
ildren.begin(); i != children.end(); i++) { children_copy.push_back(*i); } for (core::list<gui::IGUIElement*>::Iterator i = children_copy.begin(); i != children_copy.end(); i++) { (*i)->remove(); } } void GUIFileSelectMenu::regenerateGui(v2u32 screensize) { removeChildren(); m_fileOpenDialog = 0; core::dimension2du size(600,400); core::rect < s32 > rect(0,0,screensize.X,screensize.Y); DesiredRect = rect; recalculateAbsolutePosition(false); m_fileOpenDialog = Environment->addFileOpenDialog(m_title.c_str(),false,this,-1); core::position2di pos = core::position2di(screensize.X/2 - size.Width/2,screensize.Y/2 -size.Height/2); m_fileOpenDialog->setRelativePosition(pos); m_fileOpenDialog->setMinSize(size); } void GUIFileSelectMenu::drawMenu() { gui::IGUISkin* skin = Environment->getSkin(); if (!skin) return; gui::IGUIElement::draw(); } void GUIFileSelectMenu::acceptInput() { if ((m_text_dst != 0) && (this->m_formname != "")){ std::map<std::string, std::string> fields; if (m_accepted) fields[m_formname + "_accepted"] = wide_to_narrow(m_fileOpenDialog->getFileName()); else fields[m_formname + "_canceled"] = m_formname; this->m_text_dst->gotText(fields); } } bool GUIFileSelectMenu::OnEvent(const SEvent& event) { if (event.EventType == irr::EET_GUI_EVENT) { int callerId = event.GUIEvent.Caller->getID(); if (callerId >= 0) { std::cout << "CallerId:" << callerId << std::endl; } switch (event.GUIEvent.EventType) { case gui::EGET_ELEMENT_CLOSED: case gui::EGET_FILE_CHOOSE_DIALOG_CANCELLED: m_accepted=false; acceptInput(); quitMenu(); return true; break; case gui::EGET_DIRECTORY_SELECTED: case gui::EGET_FILE_SELECTED: m_accepted=true; acceptInput(); quitMenu(); return true; break; default: //ignore this event break; } } return Parent ? Parent->OnEvent(event) : false; }