popup_menu.cpp 45 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529
  1. /*************************************************************************/
  2. /* popup_menu.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #include "popup_menu.h"
  31. #include "core/os/input.h"
  32. #include "core/os/keyboard.h"
  33. #include "core/os/os.h"
  34. #include "core/print_string.h"
  35. #include "core/translation.h"
  36. String PopupMenu::_get_accel_text(int p_item) const {
  37. ERR_FAIL_INDEX_V(p_item, items.size(), String());
  38. if (items[p_item].shortcut.is_valid())
  39. return items[p_item].shortcut->get_as_text();
  40. else if (items[p_item].accel)
  41. return keycode_get_string(items[p_item].accel);
  42. return String();
  43. }
  44. Size2 PopupMenu::get_minimum_size() const {
  45. int vseparation = get_constant("vseparation");
  46. int hseparation = get_constant("hseparation");
  47. Size2 minsize = get_stylebox("panel")->get_minimum_size();
  48. Ref<Font> font = get_font("font");
  49. float max_w = 0;
  50. float icon_w = 0;
  51. int font_h = font->get_height();
  52. int check_w = MAX(get_icon("checked")->get_width(), get_icon("radio_checked")->get_width()) + hseparation;
  53. int accel_max_w = 0;
  54. bool has_check = false;
  55. for (int i = 0; i < items.size(); i++) {
  56. Size2 size;
  57. if (!items[i].icon.is_null()) {
  58. Size2 icon_size = items[i].icon->get_size();
  59. size.height = MAX(icon_size.height, font_h);
  60. icon_w = MAX(icon_size.width + hseparation, icon_w);
  61. } else {
  62. size.height = font_h;
  63. }
  64. size.width += items[i].h_ofs;
  65. if (items[i].checkable_type)
  66. has_check = true;
  67. String text = items[i].xl_text;
  68. size.width += font->get_string_size(text).width;
  69. if (i > 0)
  70. size.height += vseparation;
  71. if (items[i].accel || (items[i].shortcut.is_valid() && items[i].shortcut->is_valid())) {
  72. int accel_w = hseparation * 2;
  73. accel_w += font->get_string_size(_get_accel_text(i)).width;
  74. accel_max_w = MAX(accel_w, accel_max_w);
  75. }
  76. if (items[i].submenu != "")
  77. size.width += get_icon("submenu")->get_width();
  78. max_w = MAX(max_w, size.width);
  79. minsize.height += size.height;
  80. }
  81. minsize.width += max_w + icon_w + accel_max_w;
  82. if (has_check)
  83. minsize.width += check_w;
  84. return minsize;
  85. }
  86. int PopupMenu::_get_mouse_over(const Point2 &p_over) const {
  87. if (p_over.x < 0 || p_over.x >= get_size().width)
  88. return -1;
  89. Ref<StyleBox> style = get_stylebox("panel");
  90. Point2 ofs = style->get_offset();
  91. if (ofs.y > p_over.y)
  92. return -1;
  93. Ref<Font> font = get_font("font");
  94. int vseparation = get_constant("vseparation");
  95. float font_h = font->get_height();
  96. for (int i = 0; i < items.size(); i++) {
  97. ofs.y += vseparation;
  98. float h;
  99. if (!items[i].icon.is_null()) {
  100. Size2 icon_size = items[i].icon->get_size();
  101. h = MAX(icon_size.height, font_h);
  102. } else {
  103. h = font_h;
  104. }
  105. ofs.y += h;
  106. if (p_over.y < ofs.y) {
  107. return i;
  108. }
  109. }
  110. return -1;
  111. }
  112. void PopupMenu::_activate_submenu(int over) {
  113. Node *n = get_node(items[over].submenu);
  114. ERR_FAIL_COND_MSG(!n, "Item subnode does not exist: " + items[over].submenu + ".");
  115. Popup *pm = Object::cast_to<Popup>(n);
  116. ERR_FAIL_COND_MSG(!pm, "Item subnode is not a Popup: " + items[over].submenu + ".");
  117. if (pm->is_visible_in_tree())
  118. return; //already visible!
  119. Point2 p = get_global_position();
  120. Rect2 pr(p, get_size());
  121. Ref<StyleBox> style = get_stylebox("panel");
  122. Point2 pos = p + Point2(get_size().width, items[over]._ofs_cache - style->get_offset().y) * get_global_transform().get_scale();
  123. Size2 size = pm->get_size();
  124. // fix pos
  125. if (pos.x + size.width > get_viewport_rect().size.width)
  126. pos.x = p.x - size.width;
  127. pm->set_position(pos);
  128. pm->set_scale(get_global_transform().get_scale());
  129. pm->popup();
  130. PopupMenu *pum = Object::cast_to<PopupMenu>(pm);
  131. if (pum) {
  132. pr.position -= pum->get_global_position();
  133. pum->clear_autohide_areas();
  134. pum->add_autohide_area(Rect2(pr.position.x, pr.position.y, pr.size.x, items[over]._ofs_cache));
  135. if (over < items.size() - 1) {
  136. int from = items[over + 1]._ofs_cache;
  137. pum->add_autohide_area(Rect2(pr.position.x, pr.position.y + from, pr.size.x, pr.size.y - from));
  138. }
  139. }
  140. }
  141. void PopupMenu::_submenu_timeout() {
  142. if (mouse_over == submenu_over)
  143. _activate_submenu(mouse_over);
  144. submenu_over = -1;
  145. }
  146. void PopupMenu::_scroll(float p_factor, const Point2 &p_over) {
  147. int vseparation = get_constant("vseparation");
  148. Ref<Font> font = get_font("font");
  149. float dy = (vseparation + font->get_height()) * 3 * p_factor * get_global_transform().get_scale().y;
  150. if (dy > 0) {
  151. const float global_top = get_global_position().y;
  152. const float limit = global_top < 0 ? -global_top : 0;
  153. dy = MIN(dy, limit);
  154. } else if (dy < 0) {
  155. const float global_bottom = get_global_position().y + get_size().y * get_global_transform().get_scale().y;
  156. const float viewport_height = get_viewport_rect().size.y;
  157. const float limit = global_bottom > viewport_height ? global_bottom - viewport_height : 0;
  158. dy = -MIN(-dy, limit);
  159. }
  160. set_position(get_position() + Vector2(0, dy));
  161. Ref<InputEventMouseMotion> ie;
  162. ie.instance();
  163. ie->set_position(p_over - Vector2(0, dy));
  164. _gui_input(ie);
  165. }
  166. void PopupMenu::_gui_input(const Ref<InputEvent> &p_event) {
  167. if (p_event->is_action("ui_down") && p_event->is_pressed()) {
  168. int search_from = mouse_over + 1;
  169. if (search_from >= items.size())
  170. search_from = 0;
  171. for (int i = search_from; i < items.size(); i++) {
  172. if (i < 0 || i >= items.size())
  173. continue;
  174. if (!items[i].separator && !items[i].disabled) {
  175. mouse_over = i;
  176. emit_signal("id_focused", i);
  177. update();
  178. accept_event();
  179. break;
  180. }
  181. }
  182. } else if (p_event->is_action("ui_up") && p_event->is_pressed()) {
  183. int search_from = mouse_over - 1;
  184. if (search_from < 0)
  185. search_from = items.size() - 1;
  186. for (int i = search_from; i >= 0; i--) {
  187. if (i >= items.size())
  188. continue;
  189. if (!items[i].separator && !items[i].disabled) {
  190. mouse_over = i;
  191. emit_signal("id_focused", i);
  192. update();
  193. accept_event();
  194. break;
  195. }
  196. }
  197. } else if (p_event->is_action("ui_left") && p_event->is_pressed()) {
  198. Node *n = get_parent();
  199. if (n && Object::cast_to<PopupMenu>(n)) {
  200. hide();
  201. accept_event();
  202. }
  203. } else if (p_event->is_action("ui_right") && p_event->is_pressed()) {
  204. if (mouse_over >= 0 && mouse_over < items.size() && !items[mouse_over].separator && items[mouse_over].submenu != "" && submenu_over != mouse_over) {
  205. _activate_submenu(mouse_over);
  206. accept_event();
  207. }
  208. } else if (p_event->is_action("ui_accept") && p_event->is_pressed()) {
  209. if (mouse_over >= 0 && mouse_over < items.size() && !items[mouse_over].separator) {
  210. if (items[mouse_over].submenu != "" && submenu_over != mouse_over) {
  211. _activate_submenu(mouse_over);
  212. } else {
  213. activate_item(mouse_over);
  214. }
  215. accept_event();
  216. }
  217. }
  218. Ref<InputEventMouseButton> b = p_event;
  219. if (b.is_valid()) {
  220. if (b->is_pressed())
  221. return;
  222. int button_idx = b->get_button_index();
  223. switch (button_idx) {
  224. case BUTTON_WHEEL_DOWN: {
  225. if (get_global_position().y + get_size().y * get_global_transform().get_scale().y > get_viewport_rect().size.y) {
  226. _scroll(-b->get_factor(), b->get_position());
  227. }
  228. } break;
  229. case BUTTON_WHEEL_UP: {
  230. if (get_global_position().y < 0) {
  231. _scroll(b->get_factor(), b->get_position());
  232. }
  233. } break;
  234. default: {
  235. // Allow activating item by releasing the LMB or any that was down when the popup appeared
  236. if (button_idx == BUTTON_LEFT || (initial_button_mask & (1 << (button_idx - 1)))) {
  237. bool was_during_grabbed_click = during_grabbed_click;
  238. during_grabbed_click = false;
  239. initial_button_mask = 0;
  240. int over = _get_mouse_over(b->get_position());
  241. if (invalidated_click) {
  242. invalidated_click = false;
  243. break;
  244. }
  245. if (over < 0) {
  246. if (!was_during_grabbed_click) {
  247. hide();
  248. }
  249. break; //non-activable
  250. }
  251. if (items[over].separator || items[over].disabled)
  252. break;
  253. if (items[over].submenu != "") {
  254. _activate_submenu(over);
  255. return;
  256. }
  257. activate_item(over);
  258. }
  259. }
  260. }
  261. //update();
  262. }
  263. Ref<InputEventMouseMotion> m = p_event;
  264. if (m.is_valid()) {
  265. if (invalidated_click) {
  266. moved += m->get_relative();
  267. if (moved.length() > 4)
  268. invalidated_click = false;
  269. }
  270. for (List<Rect2>::Element *E = autohide_areas.front(); E; E = E->next()) {
  271. if (!Rect2(Point2(), get_size()).has_point(m->get_position()) && E->get().has_point(m->get_position())) {
  272. call_deferred("hide");
  273. return;
  274. }
  275. }
  276. int over = _get_mouse_over(m->get_position());
  277. int id = (over < 0 || items[over].separator || items[over].disabled) ? -1 : (items[over].id >= 0 ? items[over].id : over);
  278. if (id < 0) {
  279. mouse_over = -1;
  280. update();
  281. return;
  282. }
  283. if (items[over].submenu != "" && submenu_over != over) {
  284. submenu_over = over;
  285. submenu_timer->start();
  286. }
  287. if (over != mouse_over) {
  288. mouse_over = over;
  289. update();
  290. }
  291. }
  292. Ref<InputEventPanGesture> pan_gesture = p_event;
  293. if (pan_gesture.is_valid()) {
  294. if (get_global_position().y + get_size().y > get_viewport_rect().size.y || get_global_position().y < 0) {
  295. _scroll(-pan_gesture->get_delta().y, pan_gesture->get_position());
  296. }
  297. }
  298. Ref<InputEventKey> k = p_event;
  299. if (allow_search && k.is_valid() && k->get_unicode() && k->is_pressed()) {
  300. uint64_t now = OS::get_singleton()->get_ticks_msec();
  301. uint64_t diff = now - search_time_msec;
  302. uint64_t max_interval = uint64_t(GLOBAL_DEF("gui/timers/incremental_search_max_interval_msec", 2000));
  303. search_time_msec = now;
  304. if (diff > max_interval) {
  305. search_string = "";
  306. }
  307. if (String::chr(k->get_unicode()) != search_string)
  308. search_string += String::chr(k->get_unicode());
  309. for (int i = mouse_over + 1; i <= items.size(); i++) {
  310. if (i == items.size()) {
  311. if (mouse_over <= 0)
  312. break;
  313. else
  314. i = 0;
  315. }
  316. if (i == mouse_over)
  317. break;
  318. if (items[i].text.findn(search_string) == 0) {
  319. mouse_over = i;
  320. emit_signal("id_focused", i);
  321. update();
  322. accept_event();
  323. break;
  324. }
  325. }
  326. }
  327. }
  328. bool PopupMenu::has_point(const Point2 &p_point) const {
  329. if (parent_rect.has_point(p_point))
  330. return true;
  331. for (const List<Rect2>::Element *E = autohide_areas.front(); E; E = E->next()) {
  332. if (E->get().has_point(p_point))
  333. return true;
  334. }
  335. return Control::has_point(p_point);
  336. }
  337. void PopupMenu::_notification(int p_what) {
  338. switch (p_what) {
  339. case NOTIFICATION_ENTER_TREE: {
  340. PopupMenu *pm = Object::cast_to<PopupMenu>(get_parent());
  341. if (pm) {
  342. // Inherit submenu's popup delay time from parent menu
  343. float pm_delay = pm->get_submenu_popup_delay();
  344. set_submenu_popup_delay(pm_delay);
  345. }
  346. } break;
  347. case NOTIFICATION_TRANSLATION_CHANGED: {
  348. for (int i = 0; i < items.size(); i++) {
  349. items.write[i].xl_text = tr(items[i].text);
  350. }
  351. minimum_size_changed();
  352. update();
  353. } break;
  354. case NOTIFICATION_DRAW: {
  355. RID ci = get_canvas_item();
  356. Size2 size = get_size();
  357. Ref<StyleBox> style = get_stylebox("panel");
  358. Ref<StyleBox> hover = get_stylebox("hover");
  359. Ref<Font> font = get_font("font");
  360. // In Item::checkable_type enum order (less the non-checkable member)
  361. Ref<Texture> check[] = { get_icon("checked"), get_icon("radio_checked") };
  362. Ref<Texture> uncheck[] = { get_icon("unchecked"), get_icon("radio_unchecked") };
  363. Ref<Texture> submenu = get_icon("submenu");
  364. Ref<StyleBox> separator = get_stylebox("separator");
  365. Ref<StyleBox> labeled_separator_left = get_stylebox("labeled_separator_left");
  366. Ref<StyleBox> labeled_separator_right = get_stylebox("labeled_separator_right");
  367. style->draw(ci, Rect2(Point2(), get_size()));
  368. Point2 ofs = style->get_offset();
  369. int vseparation = get_constant("vseparation");
  370. int hseparation = get_constant("hseparation");
  371. Color font_color = get_color("font_color");
  372. Color font_color_disabled = get_color("font_color_disabled");
  373. Color font_color_accel = get_color("font_color_accel");
  374. Color font_color_hover = get_color("font_color_hover");
  375. float font_h = font->get_height();
  376. // Add the check and the wider icon to the offset of all items.
  377. float icon_ofs = 0.0;
  378. bool has_check = false;
  379. for (int i = 0; i < items.size(); i++) {
  380. if (!items[i].icon.is_null())
  381. icon_ofs = MAX(items[i].icon->get_size().width, icon_ofs);
  382. if (items[i].checkable_type)
  383. has_check = true;
  384. }
  385. if (icon_ofs > 0.0)
  386. icon_ofs += hseparation;
  387. float check_ofs = 0.0;
  388. if (has_check)
  389. check_ofs = MAX(get_icon("checked")->get_width(), get_icon("radio_checked")->get_width()) + hseparation;
  390. for (int i = 0; i < items.size(); i++) {
  391. if (i > 0)
  392. ofs.y += vseparation;
  393. Point2 item_ofs = ofs;
  394. Size2 icon_size;
  395. float h;
  396. if (!items[i].icon.is_null()) {
  397. icon_size = items[i].icon->get_size();
  398. h = MAX(icon_size.height, font_h);
  399. } else {
  400. h = font_h;
  401. }
  402. if (i == mouse_over) {
  403. hover->draw(ci, Rect2(item_ofs + Point2(-hseparation, -vseparation / 2), Size2(get_size().width - style->get_minimum_size().width + hseparation * 2, h + vseparation)));
  404. }
  405. String text = items[i].xl_text;
  406. item_ofs.x += items[i].h_ofs;
  407. if (items[i].separator) {
  408. int sep_h = separator->get_center_size().height + separator->get_minimum_size().height;
  409. if (text != String()) {
  410. int ss = font->get_string_size(text).width;
  411. int center = (get_size().width) / 2;
  412. int l = center - ss / 2;
  413. int r = center + ss / 2;
  414. if (l > item_ofs.x) {
  415. labeled_separator_left->draw(ci, Rect2(item_ofs + Point2(0, Math::floor((h - sep_h) / 2.0)), Size2(MAX(0, l - item_ofs.x), sep_h)));
  416. }
  417. if (r < get_size().width - style->get_margin(MARGIN_RIGHT)) {
  418. labeled_separator_right->draw(ci, Rect2(Point2(r, item_ofs.y + Math::floor((h - sep_h) / 2.0)), Size2(MAX(0, get_size().width - style->get_margin(MARGIN_RIGHT) - r), sep_h)));
  419. }
  420. } else {
  421. separator->draw(ci, Rect2(item_ofs + Point2(0, Math::floor((h - sep_h) / 2.0)), Size2(get_size().width - style->get_minimum_size().width, sep_h)));
  422. }
  423. }
  424. Color icon_color(1, 1, 1, items[i].disabled ? 0.5 : 1);
  425. if (items[i].checkable_type) {
  426. Texture *icon = (items[i].checked ? check[items[i].checkable_type - 1] : uncheck[items[i].checkable_type - 1]).ptr();
  427. icon->draw(ci, item_ofs + Point2(0, Math::floor((h - icon->get_height()) / 2.0)), icon_color);
  428. }
  429. if (!items[i].icon.is_null()) {
  430. items[i].icon->draw(ci, item_ofs + Size2(check_ofs, 0) + Point2(0, Math::floor((h - icon_size.height) / 2.0)), icon_color);
  431. }
  432. if (items[i].submenu != "") {
  433. submenu->draw(ci, Point2(size.width - style->get_margin(MARGIN_RIGHT) - submenu->get_width(), item_ofs.y + Math::floor(h - submenu->get_height()) / 2), icon_color);
  434. }
  435. item_ofs.y += font->get_ascent();
  436. if (items[i].separator) {
  437. if (text != String()) {
  438. int center = (get_size().width - font->get_string_size(text).width) / 2;
  439. font->draw(ci, Point2(center, item_ofs.y + Math::floor((h - font_h) / 2.0)), text, font_color_disabled);
  440. }
  441. } else {
  442. item_ofs.x += icon_ofs + check_ofs;
  443. font->draw(ci, item_ofs + Point2(0, Math::floor((h - font_h) / 2.0)), text, items[i].disabled ? font_color_disabled : (i == mouse_over ? font_color_hover : font_color));
  444. }
  445. if (items[i].accel || (items[i].shortcut.is_valid() && items[i].shortcut->is_valid())) {
  446. //accelerator
  447. String text2 = _get_accel_text(i);
  448. item_ofs.x = size.width - style->get_margin(MARGIN_RIGHT) - font->get_string_size(text2).width;
  449. font->draw(ci, item_ofs + Point2(0, Math::floor((h - font_h) / 2.0)), text2, i == mouse_over ? font_color_hover : font_color_accel);
  450. }
  451. items.write[i]._ofs_cache = ofs.y;
  452. ofs.y += h;
  453. }
  454. } break;
  455. case MainLoop::NOTIFICATION_WM_FOCUS_OUT: {
  456. if (hide_on_window_lose_focus)
  457. hide();
  458. } break;
  459. case NOTIFICATION_MOUSE_ENTER: {
  460. grab_focus();
  461. } break;
  462. case NOTIFICATION_MOUSE_EXIT: {
  463. if (mouse_over >= 0 && (items[mouse_over].submenu == "" || submenu_over != -1)) {
  464. mouse_over = -1;
  465. update();
  466. }
  467. } break;
  468. case NOTIFICATION_POST_POPUP: {
  469. initial_button_mask = Input::get_singleton()->get_mouse_button_mask();
  470. during_grabbed_click = (bool)initial_button_mask;
  471. } break;
  472. case NOTIFICATION_POPUP_HIDE: {
  473. if (mouse_over >= 0) {
  474. mouse_over = -1;
  475. update();
  476. }
  477. for (int i = 0; i < items.size(); i++) {
  478. if (items[i].submenu == "")
  479. continue;
  480. Node *n = get_node(items[i].submenu);
  481. if (!n)
  482. continue;
  483. PopupMenu *pm = Object::cast_to<PopupMenu>(n);
  484. if (!pm || !pm->is_visible())
  485. continue;
  486. pm->hide();
  487. }
  488. } break;
  489. }
  490. }
  491. /* Methods to add items with or without icon, checkbox, shortcut.
  492. * Be sure to keep them in sync when adding new properties in the Item struct.
  493. */
  494. #define ITEM_SETUP_WITH_ACCEL(p_label, p_id, p_accel) \
  495. item.text = p_label; \
  496. item.xl_text = tr(p_label); \
  497. item.id = p_id == -1 ? items.size() : p_id; \
  498. item.accel = p_accel;
  499. void PopupMenu::add_item(const String &p_label, int p_id, uint32_t p_accel) {
  500. Item item;
  501. ITEM_SETUP_WITH_ACCEL(p_label, p_id, p_accel);
  502. items.push_back(item);
  503. update();
  504. minimum_size_changed();
  505. }
  506. void PopupMenu::add_icon_item(const Ref<Texture> &p_icon, const String &p_label, int p_id, uint32_t p_accel) {
  507. Item item;
  508. ITEM_SETUP_WITH_ACCEL(p_label, p_id, p_accel);
  509. item.icon = p_icon;
  510. items.push_back(item);
  511. update();
  512. minimum_size_changed();
  513. }
  514. void PopupMenu::add_check_item(const String &p_label, int p_id, uint32_t p_accel) {
  515. Item item;
  516. ITEM_SETUP_WITH_ACCEL(p_label, p_id, p_accel);
  517. item.checkable_type = Item::CHECKABLE_TYPE_CHECK_BOX;
  518. items.push_back(item);
  519. update();
  520. minimum_size_changed();
  521. }
  522. void PopupMenu::add_icon_check_item(const Ref<Texture> &p_icon, const String &p_label, int p_id, uint32_t p_accel) {
  523. Item item;
  524. ITEM_SETUP_WITH_ACCEL(p_label, p_id, p_accel);
  525. item.icon = p_icon;
  526. item.checkable_type = Item::CHECKABLE_TYPE_CHECK_BOX;
  527. items.push_back(item);
  528. update();
  529. minimum_size_changed();
  530. }
  531. void PopupMenu::add_radio_check_item(const String &p_label, int p_id, uint32_t p_accel) {
  532. Item item;
  533. ITEM_SETUP_WITH_ACCEL(p_label, p_id, p_accel);
  534. item.checkable_type = Item::CHECKABLE_TYPE_RADIO_BUTTON;
  535. items.push_back(item);
  536. update();
  537. minimum_size_changed();
  538. }
  539. void PopupMenu::add_icon_radio_check_item(const Ref<Texture> &p_icon, const String &p_label, int p_id, uint32_t p_accel) {
  540. Item item;
  541. ITEM_SETUP_WITH_ACCEL(p_label, p_id, p_accel);
  542. item.icon = p_icon;
  543. item.checkable_type = Item::CHECKABLE_TYPE_RADIO_BUTTON;
  544. items.push_back(item);
  545. update();
  546. minimum_size_changed();
  547. }
  548. void PopupMenu::add_multistate_item(const String &p_label, int p_max_states, int p_default_state, int p_id, uint32_t p_accel) {
  549. Item item;
  550. ITEM_SETUP_WITH_ACCEL(p_label, p_id, p_accel);
  551. item.max_states = p_max_states;
  552. item.state = p_default_state;
  553. items.push_back(item);
  554. update();
  555. minimum_size_changed();
  556. }
  557. #define ITEM_SETUP_WITH_SHORTCUT(p_shortcut, p_id, p_global) \
  558. ERR_FAIL_COND_MSG(p_shortcut.is_null(), "Cannot add item with invalid ShortCut."); \
  559. _ref_shortcut(p_shortcut); \
  560. item.text = p_shortcut->get_name(); \
  561. item.xl_text = tr(item.text); \
  562. item.id = p_id == -1 ? items.size() : p_id; \
  563. item.shortcut = p_shortcut; \
  564. item.shortcut_is_global = p_global;
  565. void PopupMenu::add_shortcut(const Ref<ShortCut> &p_shortcut, int p_id, bool p_global) {
  566. Item item;
  567. ITEM_SETUP_WITH_SHORTCUT(p_shortcut, p_id, p_global);
  568. items.push_back(item);
  569. update();
  570. minimum_size_changed();
  571. }
  572. void PopupMenu::add_icon_shortcut(const Ref<Texture> &p_icon, const Ref<ShortCut> &p_shortcut, int p_id, bool p_global) {
  573. Item item;
  574. ITEM_SETUP_WITH_SHORTCUT(p_shortcut, p_id, p_global);
  575. item.icon = p_icon;
  576. items.push_back(item);
  577. update();
  578. minimum_size_changed();
  579. }
  580. void PopupMenu::add_check_shortcut(const Ref<ShortCut> &p_shortcut, int p_id, bool p_global) {
  581. Item item;
  582. ITEM_SETUP_WITH_SHORTCUT(p_shortcut, p_id, p_global);
  583. item.checkable_type = Item::CHECKABLE_TYPE_CHECK_BOX;
  584. items.push_back(item);
  585. update();
  586. minimum_size_changed();
  587. }
  588. void PopupMenu::add_icon_check_shortcut(const Ref<Texture> &p_icon, const Ref<ShortCut> &p_shortcut, int p_id, bool p_global) {
  589. Item item;
  590. ITEM_SETUP_WITH_SHORTCUT(p_shortcut, p_id, p_global);
  591. item.icon = p_icon;
  592. item.checkable_type = Item::CHECKABLE_TYPE_CHECK_BOX;
  593. items.push_back(item);
  594. update();
  595. minimum_size_changed();
  596. }
  597. void PopupMenu::add_radio_check_shortcut(const Ref<ShortCut> &p_shortcut, int p_id, bool p_global) {
  598. Item item;
  599. ITEM_SETUP_WITH_SHORTCUT(p_shortcut, p_id, p_global);
  600. item.checkable_type = Item::CHECKABLE_TYPE_RADIO_BUTTON;
  601. items.push_back(item);
  602. update();
  603. minimum_size_changed();
  604. }
  605. void PopupMenu::add_icon_radio_check_shortcut(const Ref<Texture> &p_icon, const Ref<ShortCut> &p_shortcut, int p_id, bool p_global) {
  606. Item item;
  607. ITEM_SETUP_WITH_SHORTCUT(p_shortcut, p_id, p_global);
  608. item.icon = p_icon;
  609. item.checkable_type = Item::CHECKABLE_TYPE_RADIO_BUTTON;
  610. items.push_back(item);
  611. update();
  612. minimum_size_changed();
  613. }
  614. void PopupMenu::add_submenu_item(const String &p_label, const String &p_submenu, int p_id) {
  615. Item item;
  616. item.text = p_label;
  617. item.xl_text = tr(p_label);
  618. item.id = p_id == -1 ? items.size() : p_id;
  619. item.submenu = p_submenu;
  620. items.push_back(item);
  621. update();
  622. minimum_size_changed();
  623. }
  624. #undef ITEM_SETUP_WITH_ACCEL
  625. #undef ITEM_SETUP_WITH_SHORTCUT
  626. /* Methods to modify existing items. */
  627. void PopupMenu::set_item_text(int p_idx, const String &p_text) {
  628. ERR_FAIL_INDEX(p_idx, items.size());
  629. items.write[p_idx].text = p_text;
  630. items.write[p_idx].xl_text = tr(p_text);
  631. update();
  632. minimum_size_changed();
  633. }
  634. void PopupMenu::set_item_icon(int p_idx, const Ref<Texture> &p_icon) {
  635. ERR_FAIL_INDEX(p_idx, items.size());
  636. items.write[p_idx].icon = p_icon;
  637. update();
  638. minimum_size_changed();
  639. }
  640. void PopupMenu::set_item_checked(int p_idx, bool p_checked) {
  641. ERR_FAIL_INDEX(p_idx, items.size());
  642. items.write[p_idx].checked = p_checked;
  643. update();
  644. minimum_size_changed();
  645. }
  646. void PopupMenu::set_item_id(int p_idx, int p_id) {
  647. ERR_FAIL_INDEX(p_idx, items.size());
  648. items.write[p_idx].id = p_id;
  649. update();
  650. minimum_size_changed();
  651. }
  652. void PopupMenu::set_item_accelerator(int p_idx, uint32_t p_accel) {
  653. ERR_FAIL_INDEX(p_idx, items.size());
  654. items.write[p_idx].accel = p_accel;
  655. update();
  656. minimum_size_changed();
  657. }
  658. void PopupMenu::set_item_metadata(int p_idx, const Variant &p_meta) {
  659. ERR_FAIL_INDEX(p_idx, items.size());
  660. items.write[p_idx].metadata = p_meta;
  661. update();
  662. minimum_size_changed();
  663. }
  664. void PopupMenu::set_item_disabled(int p_idx, bool p_disabled) {
  665. ERR_FAIL_INDEX(p_idx, items.size());
  666. items.write[p_idx].disabled = p_disabled;
  667. update();
  668. minimum_size_changed();
  669. }
  670. void PopupMenu::set_item_submenu(int p_idx, const String &p_submenu) {
  671. ERR_FAIL_INDEX(p_idx, items.size());
  672. items.write[p_idx].submenu = p_submenu;
  673. update();
  674. minimum_size_changed();
  675. }
  676. void PopupMenu::toggle_item_checked(int p_idx) {
  677. ERR_FAIL_INDEX(p_idx, items.size());
  678. items.write[p_idx].checked = !items[p_idx].checked;
  679. update();
  680. minimum_size_changed();
  681. }
  682. String PopupMenu::get_item_text(int p_idx) const {
  683. ERR_FAIL_INDEX_V(p_idx, items.size(), "");
  684. return items[p_idx].text;
  685. }
  686. int PopupMenu::get_item_idx_from_text(const String &text) const {
  687. for (int idx = 0; idx < items.size(); idx++) {
  688. if (items[idx].text == text)
  689. return idx;
  690. }
  691. return -1;
  692. }
  693. Ref<Texture> PopupMenu::get_item_icon(int p_idx) const {
  694. ERR_FAIL_INDEX_V(p_idx, items.size(), Ref<Texture>());
  695. return items[p_idx].icon;
  696. }
  697. uint32_t PopupMenu::get_item_accelerator(int p_idx) const {
  698. ERR_FAIL_INDEX_V(p_idx, items.size(), 0);
  699. return items[p_idx].accel;
  700. }
  701. Variant PopupMenu::get_item_metadata(int p_idx) const {
  702. ERR_FAIL_INDEX_V(p_idx, items.size(), Variant());
  703. return items[p_idx].metadata;
  704. }
  705. bool PopupMenu::is_item_disabled(int p_idx) const {
  706. ERR_FAIL_INDEX_V(p_idx, items.size(), false);
  707. return items[p_idx].disabled;
  708. }
  709. bool PopupMenu::is_item_checked(int p_idx) const {
  710. ERR_FAIL_INDEX_V(p_idx, items.size(), false);
  711. return items[p_idx].checked;
  712. }
  713. int PopupMenu::get_item_id(int p_idx) const {
  714. ERR_FAIL_INDEX_V(p_idx, items.size(), 0);
  715. return items[p_idx].id;
  716. }
  717. int PopupMenu::get_item_index(int p_id) const {
  718. for (int i = 0; i < items.size(); i++) {
  719. if (items[i].id == p_id)
  720. return i;
  721. }
  722. return -1;
  723. }
  724. String PopupMenu::get_item_submenu(int p_idx) const {
  725. ERR_FAIL_INDEX_V(p_idx, items.size(), "");
  726. return items[p_idx].submenu;
  727. }
  728. String PopupMenu::get_item_tooltip(int p_idx) const {
  729. ERR_FAIL_INDEX_V(p_idx, items.size(), "");
  730. return items[p_idx].tooltip;
  731. }
  732. Ref<ShortCut> PopupMenu::get_item_shortcut(int p_idx) const {
  733. ERR_FAIL_INDEX_V(p_idx, items.size(), Ref<ShortCut>());
  734. return items[p_idx].shortcut;
  735. }
  736. int PopupMenu::get_item_state(int p_idx) const {
  737. ERR_FAIL_INDEX_V(p_idx, items.size(), -1);
  738. return items[p_idx].state;
  739. }
  740. void PopupMenu::set_item_as_separator(int p_idx, bool p_separator) {
  741. ERR_FAIL_INDEX(p_idx, items.size());
  742. items.write[p_idx].separator = p_separator;
  743. update();
  744. }
  745. bool PopupMenu::is_item_separator(int p_idx) const {
  746. ERR_FAIL_INDEX_V(p_idx, items.size(), false);
  747. return items[p_idx].separator;
  748. }
  749. void PopupMenu::set_item_as_checkable(int p_idx, bool p_checkable) {
  750. ERR_FAIL_INDEX(p_idx, items.size());
  751. items.write[p_idx].checkable_type = p_checkable ? Item::CHECKABLE_TYPE_CHECK_BOX : Item::CHECKABLE_TYPE_NONE;
  752. update();
  753. }
  754. void PopupMenu::set_item_as_radio_checkable(int p_idx, bool p_radio_checkable) {
  755. ERR_FAIL_INDEX(p_idx, items.size());
  756. items.write[p_idx].checkable_type = p_radio_checkable ? Item::CHECKABLE_TYPE_RADIO_BUTTON : Item::CHECKABLE_TYPE_NONE;
  757. update();
  758. }
  759. void PopupMenu::set_item_tooltip(int p_idx, const String &p_tooltip) {
  760. ERR_FAIL_INDEX(p_idx, items.size());
  761. items.write[p_idx].tooltip = p_tooltip;
  762. update();
  763. }
  764. void PopupMenu::set_item_shortcut(int p_idx, const Ref<ShortCut> &p_shortcut, bool p_global) {
  765. ERR_FAIL_INDEX(p_idx, items.size());
  766. if (items[p_idx].shortcut.is_valid()) {
  767. _unref_shortcut(items[p_idx].shortcut);
  768. }
  769. items.write[p_idx].shortcut = p_shortcut;
  770. items.write[p_idx].shortcut_is_global = p_global;
  771. if (items[p_idx].shortcut.is_valid()) {
  772. _ref_shortcut(items[p_idx].shortcut);
  773. }
  774. update();
  775. }
  776. void PopupMenu::set_item_h_offset(int p_idx, int p_offset) {
  777. ERR_FAIL_INDEX(p_idx, items.size());
  778. items.write[p_idx].h_ofs = p_offset;
  779. update();
  780. minimum_size_changed();
  781. }
  782. void PopupMenu::set_item_multistate(int p_idx, int p_state) {
  783. ERR_FAIL_INDEX(p_idx, items.size());
  784. items.write[p_idx].state = p_state;
  785. update();
  786. }
  787. void PopupMenu::set_item_shortcut_disabled(int p_idx, bool p_disabled) {
  788. ERR_FAIL_INDEX(p_idx, items.size());
  789. items.write[p_idx].shortcut_is_disabled = p_disabled;
  790. update();
  791. }
  792. void PopupMenu::toggle_item_multistate(int p_idx) {
  793. ERR_FAIL_INDEX(p_idx, items.size());
  794. if (0 >= items[p_idx].max_states) {
  795. return;
  796. }
  797. ++items.write[p_idx].state;
  798. if (items.write[p_idx].max_states <= items[p_idx].state)
  799. items.write[p_idx].state = 0;
  800. update();
  801. }
  802. bool PopupMenu::is_item_checkable(int p_idx) const {
  803. ERR_FAIL_INDEX_V(p_idx, items.size(), false);
  804. return items[p_idx].checkable_type;
  805. }
  806. bool PopupMenu::is_item_radio_checkable(int p_idx) const {
  807. ERR_FAIL_INDEX_V(p_idx, items.size(), false);
  808. return items[p_idx].checkable_type == Item::CHECKABLE_TYPE_RADIO_BUTTON;
  809. }
  810. bool PopupMenu::is_item_shortcut_disabled(int p_idx) const {
  811. ERR_FAIL_INDEX_V(p_idx, items.size(), false);
  812. return items[p_idx].shortcut_is_disabled;
  813. }
  814. int PopupMenu::get_current_index() const {
  815. return mouse_over;
  816. }
  817. int PopupMenu::get_item_count() const {
  818. return items.size();
  819. }
  820. bool PopupMenu::activate_item_by_event(const Ref<InputEvent> &p_event, bool p_for_global_only) {
  821. uint32_t code = 0;
  822. Ref<InputEventKey> k = p_event;
  823. if (k.is_valid()) {
  824. code = k->get_scancode();
  825. if (code == 0)
  826. code = k->get_unicode();
  827. if (k->get_control())
  828. code |= KEY_MASK_CTRL;
  829. if (k->get_alt())
  830. code |= KEY_MASK_ALT;
  831. if (k->get_metakey())
  832. code |= KEY_MASK_META;
  833. if (k->get_shift())
  834. code |= KEY_MASK_SHIFT;
  835. }
  836. for (int i = 0; i < items.size(); i++) {
  837. if (is_item_disabled(i) || items[i].shortcut_is_disabled)
  838. continue;
  839. if (items[i].shortcut.is_valid() && items[i].shortcut->is_shortcut(p_event) && (items[i].shortcut_is_global || !p_for_global_only)) {
  840. activate_item(i);
  841. return true;
  842. }
  843. if (code != 0 && items[i].accel == code) {
  844. activate_item(i);
  845. return true;
  846. }
  847. if (items[i].submenu != "") {
  848. Node *n = get_node(items[i].submenu);
  849. if (!n)
  850. continue;
  851. PopupMenu *pm = Object::cast_to<PopupMenu>(n);
  852. if (!pm)
  853. continue;
  854. if (pm->activate_item_by_event(p_event, p_for_global_only)) {
  855. return true;
  856. }
  857. }
  858. }
  859. return false;
  860. }
  861. void PopupMenu::activate_item(int p_item) {
  862. ERR_FAIL_INDEX(p_item, items.size());
  863. ERR_FAIL_COND(items[p_item].separator);
  864. int id = items[p_item].id >= 0 ? items[p_item].id : p_item;
  865. //hide all parent PopupMenus
  866. Node *next = get_parent();
  867. PopupMenu *pop = Object::cast_to<PopupMenu>(next);
  868. while (pop) {
  869. // We close all parents that are chained together,
  870. // with hide_on_item_selection enabled
  871. if (items[p_item].checkable_type) {
  872. if (!hide_on_checkable_item_selection || !pop->is_hide_on_checkable_item_selection())
  873. break;
  874. } else if (0 < items[p_item].max_states) {
  875. if (!hide_on_multistate_item_selection || !pop->is_hide_on_multistate_item_selection())
  876. break;
  877. } else if (!hide_on_item_selection || !pop->is_hide_on_item_selection())
  878. break;
  879. pop->hide();
  880. next = next->get_parent();
  881. pop = Object::cast_to<PopupMenu>(next);
  882. }
  883. // Hides popup by default; unless otherwise specified
  884. // by using set_hide_on_item_selection and set_hide_on_checkable_item_selection
  885. bool need_hide = true;
  886. if (items[p_item].checkable_type) {
  887. if (!hide_on_checkable_item_selection)
  888. need_hide = false;
  889. } else if (0 < items[p_item].max_states) {
  890. if (!hide_on_multistate_item_selection)
  891. need_hide = false;
  892. } else if (!hide_on_item_selection)
  893. need_hide = false;
  894. emit_signal("id_pressed", id);
  895. emit_signal("index_pressed", p_item);
  896. if (need_hide) {
  897. hide();
  898. }
  899. }
  900. void PopupMenu::remove_item(int p_idx) {
  901. ERR_FAIL_INDEX(p_idx, items.size());
  902. if (items[p_idx].shortcut.is_valid()) {
  903. _unref_shortcut(items[p_idx].shortcut);
  904. }
  905. items.remove(p_idx);
  906. update();
  907. minimum_size_changed();
  908. }
  909. void PopupMenu::add_separator(const String &p_text) {
  910. Item sep;
  911. sep.separator = true;
  912. sep.id = -1;
  913. if (p_text != String()) {
  914. sep.text = p_text;
  915. sep.xl_text = tr(p_text);
  916. }
  917. items.push_back(sep);
  918. update();
  919. }
  920. void PopupMenu::clear() {
  921. for (int i = 0; i < items.size(); i++) {
  922. if (items[i].shortcut.is_valid()) {
  923. _unref_shortcut(items[i].shortcut);
  924. }
  925. }
  926. items.clear();
  927. mouse_over = -1;
  928. update();
  929. minimum_size_changed();
  930. }
  931. Array PopupMenu::_get_items() const {
  932. Array items;
  933. for (int i = 0; i < get_item_count(); i++) {
  934. items.push_back(get_item_text(i));
  935. items.push_back(get_item_icon(i));
  936. // For compatibility, use false/true for no/checkbox and integers for other values
  937. int ct = this->items[i].checkable_type;
  938. items.push_back(Variant(ct <= Item::CHECKABLE_TYPE_CHECK_BOX ? is_item_checkable(i) : ct));
  939. items.push_back(is_item_checked(i));
  940. items.push_back(is_item_disabled(i));
  941. items.push_back(get_item_id(i));
  942. items.push_back(get_item_accelerator(i));
  943. items.push_back(get_item_metadata(i));
  944. items.push_back(get_item_submenu(i));
  945. items.push_back(is_item_separator(i));
  946. }
  947. return items;
  948. }
  949. void PopupMenu::_ref_shortcut(Ref<ShortCut> p_sc) {
  950. if (!shortcut_refcount.has(p_sc)) {
  951. shortcut_refcount[p_sc] = 1;
  952. p_sc->connect("changed", this, "update");
  953. } else {
  954. shortcut_refcount[p_sc] += 1;
  955. }
  956. }
  957. void PopupMenu::_unref_shortcut(Ref<ShortCut> p_sc) {
  958. ERR_FAIL_COND(!shortcut_refcount.has(p_sc));
  959. shortcut_refcount[p_sc]--;
  960. if (shortcut_refcount[p_sc] == 0) {
  961. p_sc->disconnect("changed", this, "update");
  962. shortcut_refcount.erase(p_sc);
  963. }
  964. }
  965. void PopupMenu::_set_items(const Array &p_items) {
  966. ERR_FAIL_COND(p_items.size() % 10);
  967. clear();
  968. for (int i = 0; i < p_items.size(); i += 10) {
  969. String text = p_items[i + 0];
  970. Ref<Texture> icon = p_items[i + 1];
  971. // For compatibility, use false/true for no/checkbox and integers for other values
  972. bool checkable = p_items[i + 2];
  973. bool radio_checkable = (int)p_items[i + 2] == Item::CHECKABLE_TYPE_RADIO_BUTTON;
  974. bool checked = p_items[i + 3];
  975. bool disabled = p_items[i + 4];
  976. int id = p_items[i + 5];
  977. int accel = p_items[i + 6];
  978. Variant meta = p_items[i + 7];
  979. String subm = p_items[i + 8];
  980. bool sep = p_items[i + 9];
  981. int idx = get_item_count();
  982. add_item(text, id);
  983. set_item_icon(idx, icon);
  984. if (checkable) {
  985. if (radio_checkable) {
  986. set_item_as_radio_checkable(idx, true);
  987. } else {
  988. set_item_as_checkable(idx, true);
  989. }
  990. }
  991. set_item_checked(idx, checked);
  992. set_item_disabled(idx, disabled);
  993. set_item_id(idx, id);
  994. set_item_metadata(idx, meta);
  995. set_item_as_separator(idx, sep);
  996. set_item_accelerator(idx, accel);
  997. set_item_submenu(idx, subm);
  998. }
  999. }
  1000. // Hide on item selection determines whether or not the popup will close after item selection
  1001. void PopupMenu::set_hide_on_item_selection(bool p_enabled) {
  1002. hide_on_item_selection = p_enabled;
  1003. }
  1004. bool PopupMenu::is_hide_on_item_selection() const {
  1005. return hide_on_item_selection;
  1006. }
  1007. void PopupMenu::set_hide_on_checkable_item_selection(bool p_enabled) {
  1008. hide_on_checkable_item_selection = p_enabled;
  1009. }
  1010. bool PopupMenu::is_hide_on_checkable_item_selection() const {
  1011. return hide_on_checkable_item_selection;
  1012. }
  1013. void PopupMenu::set_hide_on_multistate_item_selection(bool p_enabled) {
  1014. hide_on_multistate_item_selection = p_enabled;
  1015. }
  1016. bool PopupMenu::is_hide_on_multistate_item_selection() const {
  1017. return hide_on_multistate_item_selection;
  1018. }
  1019. void PopupMenu::set_submenu_popup_delay(float p_time) {
  1020. if (p_time <= 0)
  1021. p_time = 0.01;
  1022. submenu_timer->set_wait_time(p_time);
  1023. }
  1024. float PopupMenu::get_submenu_popup_delay() const {
  1025. return submenu_timer->get_wait_time();
  1026. }
  1027. void PopupMenu::set_allow_search(bool p_allow) {
  1028. allow_search = p_allow;
  1029. }
  1030. bool PopupMenu::get_allow_search() const {
  1031. return allow_search;
  1032. }
  1033. void PopupMenu::set_hide_on_window_lose_focus(bool p_enabled) {
  1034. hide_on_window_lose_focus = p_enabled;
  1035. }
  1036. bool PopupMenu::is_hide_on_window_lose_focus() const {
  1037. return hide_on_window_lose_focus;
  1038. }
  1039. String PopupMenu::get_tooltip(const Point2 &p_pos) const {
  1040. int over = _get_mouse_over(p_pos);
  1041. if (over < 0 || over >= items.size())
  1042. return "";
  1043. return items[over].tooltip;
  1044. }
  1045. void PopupMenu::set_parent_rect(const Rect2 &p_rect) {
  1046. parent_rect = p_rect;
  1047. }
  1048. void PopupMenu::get_translatable_strings(List<String> *p_strings) const {
  1049. for (int i = 0; i < items.size(); i++) {
  1050. if (items[i].xl_text != "")
  1051. p_strings->push_back(items[i].xl_text);
  1052. }
  1053. }
  1054. void PopupMenu::add_autohide_area(const Rect2 &p_area) {
  1055. autohide_areas.push_back(p_area);
  1056. }
  1057. void PopupMenu::clear_autohide_areas() {
  1058. autohide_areas.clear();
  1059. }
  1060. void PopupMenu::_bind_methods() {
  1061. ClassDB::bind_method(D_METHOD("_gui_input"), &PopupMenu::_gui_input);
  1062. ClassDB::bind_method(D_METHOD("add_item", "label", "id", "accel"), &PopupMenu::add_item, DEFVAL(-1), DEFVAL(0));
  1063. ClassDB::bind_method(D_METHOD("add_icon_item", "texture", "label", "id", "accel"), &PopupMenu::add_icon_item, DEFVAL(-1), DEFVAL(0));
  1064. ClassDB::bind_method(D_METHOD("add_check_item", "label", "id", "accel"), &PopupMenu::add_check_item, DEFVAL(-1), DEFVAL(0));
  1065. ClassDB::bind_method(D_METHOD("add_icon_check_item", "texture", "label", "id", "accel"), &PopupMenu::add_icon_check_item, DEFVAL(-1), DEFVAL(0));
  1066. ClassDB::bind_method(D_METHOD("add_radio_check_item", "label", "id", "accel"), &PopupMenu::add_radio_check_item, DEFVAL(-1), DEFVAL(0));
  1067. ClassDB::bind_method(D_METHOD("add_icon_radio_check_item", "texture", "label", "id", "accel"), &PopupMenu::add_icon_radio_check_item, DEFVAL(-1), DEFVAL(0));
  1068. ClassDB::bind_method(D_METHOD("add_multistate_item", "label", "max_states", "default_state", "id", "accel"), &PopupMenu::add_multistate_item, DEFVAL(0), DEFVAL(-1), DEFVAL(0));
  1069. ClassDB::bind_method(D_METHOD("add_shortcut", "shortcut", "id", "global"), &PopupMenu::add_shortcut, DEFVAL(-1), DEFVAL(false));
  1070. ClassDB::bind_method(D_METHOD("add_icon_shortcut", "texture", "shortcut", "id", "global"), &PopupMenu::add_icon_shortcut, DEFVAL(-1), DEFVAL(false));
  1071. ClassDB::bind_method(D_METHOD("add_check_shortcut", "shortcut", "id", "global"), &PopupMenu::add_check_shortcut, DEFVAL(-1), DEFVAL(false));
  1072. ClassDB::bind_method(D_METHOD("add_icon_check_shortcut", "texture", "shortcut", "id", "global"), &PopupMenu::add_icon_check_shortcut, DEFVAL(-1), DEFVAL(false));
  1073. ClassDB::bind_method(D_METHOD("add_radio_check_shortcut", "shortcut", "id", "global"), &PopupMenu::add_radio_check_shortcut, DEFVAL(-1), DEFVAL(false));
  1074. ClassDB::bind_method(D_METHOD("add_icon_radio_check_shortcut", "texture", "shortcut", "id", "global"), &PopupMenu::add_icon_radio_check_shortcut, DEFVAL(-1), DEFVAL(false));
  1075. ClassDB::bind_method(D_METHOD("add_submenu_item", "label", "submenu", "id"), &PopupMenu::add_submenu_item, DEFVAL(-1));
  1076. ClassDB::bind_method(D_METHOD("set_item_text", "idx", "text"), &PopupMenu::set_item_text);
  1077. ClassDB::bind_method(D_METHOD("set_item_icon", "idx", "icon"), &PopupMenu::set_item_icon);
  1078. ClassDB::bind_method(D_METHOD("set_item_checked", "idx", "checked"), &PopupMenu::set_item_checked);
  1079. ClassDB::bind_method(D_METHOD("set_item_id", "idx", "id"), &PopupMenu::set_item_id);
  1080. ClassDB::bind_method(D_METHOD("set_item_accelerator", "idx", "accel"), &PopupMenu::set_item_accelerator);
  1081. ClassDB::bind_method(D_METHOD("set_item_metadata", "idx", "metadata"), &PopupMenu::set_item_metadata);
  1082. ClassDB::bind_method(D_METHOD("set_item_disabled", "idx", "disabled"), &PopupMenu::set_item_disabled);
  1083. ClassDB::bind_method(D_METHOD("set_item_submenu", "idx", "submenu"), &PopupMenu::set_item_submenu);
  1084. ClassDB::bind_method(D_METHOD("set_item_as_separator", "idx", "enable"), &PopupMenu::set_item_as_separator);
  1085. ClassDB::bind_method(D_METHOD("set_item_as_checkable", "idx", "enable"), &PopupMenu::set_item_as_checkable);
  1086. ClassDB::bind_method(D_METHOD("set_item_as_radio_checkable", "idx", "enable"), &PopupMenu::set_item_as_radio_checkable);
  1087. ClassDB::bind_method(D_METHOD("set_item_tooltip", "idx", "tooltip"), &PopupMenu::set_item_tooltip);
  1088. ClassDB::bind_method(D_METHOD("set_item_shortcut", "idx", "shortcut", "global"), &PopupMenu::set_item_shortcut, DEFVAL(false));
  1089. ClassDB::bind_method(D_METHOD("set_item_multistate", "idx", "state"), &PopupMenu::set_item_multistate);
  1090. ClassDB::bind_method(D_METHOD("set_item_shortcut_disabled", "idx", "disabled"), &PopupMenu::set_item_shortcut_disabled);
  1091. ClassDB::bind_method(D_METHOD("toggle_item_checked", "idx"), &PopupMenu::toggle_item_checked);
  1092. ClassDB::bind_method(D_METHOD("toggle_item_multistate", "idx"), &PopupMenu::toggle_item_multistate);
  1093. ClassDB::bind_method(D_METHOD("get_item_text", "idx"), &PopupMenu::get_item_text);
  1094. ClassDB::bind_method(D_METHOD("get_item_icon", "idx"), &PopupMenu::get_item_icon);
  1095. ClassDB::bind_method(D_METHOD("is_item_checked", "idx"), &PopupMenu::is_item_checked);
  1096. ClassDB::bind_method(D_METHOD("get_item_id", "idx"), &PopupMenu::get_item_id);
  1097. ClassDB::bind_method(D_METHOD("get_item_index", "id"), &PopupMenu::get_item_index);
  1098. ClassDB::bind_method(D_METHOD("get_item_accelerator", "idx"), &PopupMenu::get_item_accelerator);
  1099. ClassDB::bind_method(D_METHOD("get_item_metadata", "idx"), &PopupMenu::get_item_metadata);
  1100. ClassDB::bind_method(D_METHOD("is_item_disabled", "idx"), &PopupMenu::is_item_disabled);
  1101. ClassDB::bind_method(D_METHOD("get_item_submenu", "idx"), &PopupMenu::get_item_submenu);
  1102. ClassDB::bind_method(D_METHOD("is_item_separator", "idx"), &PopupMenu::is_item_separator);
  1103. ClassDB::bind_method(D_METHOD("is_item_checkable", "idx"), &PopupMenu::is_item_checkable);
  1104. ClassDB::bind_method(D_METHOD("is_item_radio_checkable", "idx"), &PopupMenu::is_item_radio_checkable);
  1105. ClassDB::bind_method(D_METHOD("is_item_shortcut_disabled", "idx"), &PopupMenu::is_item_shortcut_disabled);
  1106. ClassDB::bind_method(D_METHOD("get_item_tooltip", "idx"), &PopupMenu::get_item_tooltip);
  1107. ClassDB::bind_method(D_METHOD("get_item_shortcut", "idx"), &PopupMenu::get_item_shortcut);
  1108. ClassDB::bind_method(D_METHOD("get_current_index"), &PopupMenu::get_current_index);
  1109. ClassDB::bind_method(D_METHOD("get_item_count"), &PopupMenu::get_item_count);
  1110. ClassDB::bind_method(D_METHOD("remove_item", "idx"), &PopupMenu::remove_item);
  1111. ClassDB::bind_method(D_METHOD("add_separator", "label"), &PopupMenu::add_separator, DEFVAL(String()));
  1112. ClassDB::bind_method(D_METHOD("clear"), &PopupMenu::clear);
  1113. ClassDB::bind_method(D_METHOD("_set_items"), &PopupMenu::_set_items);
  1114. ClassDB::bind_method(D_METHOD("_get_items"), &PopupMenu::_get_items);
  1115. ClassDB::bind_method(D_METHOD("set_hide_on_item_selection", "enable"), &PopupMenu::set_hide_on_item_selection);
  1116. ClassDB::bind_method(D_METHOD("is_hide_on_item_selection"), &PopupMenu::is_hide_on_item_selection);
  1117. ClassDB::bind_method(D_METHOD("set_hide_on_checkable_item_selection", "enable"), &PopupMenu::set_hide_on_checkable_item_selection);
  1118. ClassDB::bind_method(D_METHOD("is_hide_on_checkable_item_selection"), &PopupMenu::is_hide_on_checkable_item_selection);
  1119. ClassDB::bind_method(D_METHOD("set_hide_on_state_item_selection", "enable"), &PopupMenu::set_hide_on_multistate_item_selection);
  1120. ClassDB::bind_method(D_METHOD("is_hide_on_state_item_selection"), &PopupMenu::is_hide_on_multistate_item_selection);
  1121. ClassDB::bind_method(D_METHOD("set_submenu_popup_delay", "seconds"), &PopupMenu::set_submenu_popup_delay);
  1122. ClassDB::bind_method(D_METHOD("get_submenu_popup_delay"), &PopupMenu::get_submenu_popup_delay);
  1123. ClassDB::bind_method(D_METHOD("set_hide_on_window_lose_focus", "enable"), &PopupMenu::set_hide_on_window_lose_focus);
  1124. ClassDB::bind_method(D_METHOD("is_hide_on_window_lose_focus"), &PopupMenu::is_hide_on_window_lose_focus);
  1125. ClassDB::bind_method(D_METHOD("set_allow_search", "allow"), &PopupMenu::set_allow_search);
  1126. ClassDB::bind_method(D_METHOD("get_allow_search"), &PopupMenu::get_allow_search);
  1127. ClassDB::bind_method(D_METHOD("_submenu_timeout"), &PopupMenu::_submenu_timeout);
  1128. ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "items", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NOEDITOR | PROPERTY_USAGE_INTERNAL), "_set_items", "_get_items");
  1129. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "hide_on_item_selection"), "set_hide_on_item_selection", "is_hide_on_item_selection");
  1130. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "hide_on_checkable_item_selection"), "set_hide_on_checkable_item_selection", "is_hide_on_checkable_item_selection");
  1131. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "hide_on_state_item_selection"), "set_hide_on_state_item_selection", "is_hide_on_state_item_selection");
  1132. ADD_PROPERTY(PropertyInfo(Variant::REAL, "submenu_popup_delay"), "set_submenu_popup_delay", "get_submenu_popup_delay");
  1133. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "allow_search"), "set_allow_search", "get_allow_search");
  1134. ADD_SIGNAL(MethodInfo("id_pressed", PropertyInfo(Variant::INT, "id")));
  1135. ADD_SIGNAL(MethodInfo("id_focused", PropertyInfo(Variant::INT, "id")));
  1136. ADD_SIGNAL(MethodInfo("index_pressed", PropertyInfo(Variant::INT, "index")));
  1137. }
  1138. void PopupMenu::popup(const Rect2 &p_bounds) {
  1139. grab_click_focus();
  1140. moved = Vector2();
  1141. invalidated_click = true;
  1142. Popup::popup(p_bounds);
  1143. }
  1144. PopupMenu::PopupMenu() {
  1145. mouse_over = -1;
  1146. submenu_over = -1;
  1147. initial_button_mask = 0;
  1148. during_grabbed_click = false;
  1149. allow_search = false;
  1150. search_time_msec = 0;
  1151. search_string = "";
  1152. set_focus_mode(FOCUS_ALL);
  1153. set_as_toplevel(true);
  1154. set_hide_on_item_selection(true);
  1155. set_hide_on_checkable_item_selection(true);
  1156. set_hide_on_multistate_item_selection(false);
  1157. set_hide_on_window_lose_focus(true);
  1158. submenu_timer = memnew(Timer);
  1159. submenu_timer->set_wait_time(0.3);
  1160. submenu_timer->set_one_shot(true);
  1161. submenu_timer->connect("timeout", this, "_submenu_timeout");
  1162. add_child(submenu_timer);
  1163. }
  1164. PopupMenu::~PopupMenu() {
  1165. }