X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2FBasemenu.cc;h=90d5e458ebcdc8e21b56fd0e47ff1e0c9f2eb037;hb=75b6a5a378966efc09c355109ab42467ddc6d845;hp=997aaea19c620d45f540f1fd0ea9a373ada0a7bc;hpb=d06cedce062da73393a585d061b19b6604bbe568;p=chaz%2Fopenbox diff --git a/src/Basemenu.cc b/src/Basemenu.cc index 997aaea1..90d5e458 100644 --- a/src/Basemenu.cc +++ b/src/Basemenu.cc @@ -526,12 +526,12 @@ void Basemenu::drawItem(int index, bool highlight, bool clear, BasemenuItem *item = find(index); if (! item) return; - bool dotext = True, dohilite = True, dosel = True; + bool dotext = True, dohilite = True, dosel = True, dooppsel = True; const char *text = item->label(); int sbl = index / menu.persub, i = index - (sbl * menu.persub); int item_x = (sbl * menu.item_w), item_y = (i * menu.item_h); int hilite_x = item_x, hilite_y = item_y, hoff_x = 0, hoff_y = 0; - int text_x = 0, text_y = 0, sel_x = 0, sel_y = 0; + int text_x = 0, text_y = 0, sel_x = 0, oppsel_x = 0, sel_y = 0; unsigned int hilite_w = menu.item_w, hilite_h = menu.item_h, text_w = 0, text_h = 0; unsigned int half_w = menu.item_h / 2, quarter_w = menu.item_h / 4; @@ -569,6 +569,11 @@ void Basemenu::drawItem(int index, bool highlight, bool clear, if (screen->getMenuStyle()->bullet_pos == Right) sel_x += (menu.item_w - menu.item_h - menu.bevel_w); sel_x += quarter_w; + oppsel_x = sel_x; + if (screen->getMenuStyle()->bullet_pos == Right) + oppsel_x -= (menu.item_w - menu.item_h - menu.bevel_w); + else + oppsel_x += (menu.item_w - menu.item_h - menu.bevel_w); sel_y = item_y + quarter_w; if (clear) { @@ -598,6 +603,12 @@ void Basemenu::drawItem(int index, bool highlight, bool clear, if (! (max(sel_x, x) <= min(sel_x + half_w, x + w) && max(sel_y, y) <= min(sel_y + half_w, y + h))) dosel = False; + + // check if we need to redraw the select pixmap/menu bullet + // on the opposite side of the menu + if (! (max(oppsel_x, x) <= min(oppsel_x + half_w, x + w) && + max(sel_y, y) <= min(sel_y + half_w, y + h))) + dooppsel = False; } if (dohilite && highlight && (menu.hilite_pixmap != ParentRelative)) { @@ -610,17 +621,10 @@ void Basemenu::drawItem(int index, bool highlight, bool clear, hilite_x, hilite_y, hilite_w, hilite_h); } - if (dosel && item->isSelected()) { + if (dooppsel && item->isSelected()) { XPoint pts[6]; - // put the check mark on the opposite side of the menu - int x = sel_x; - if (screen->getMenuStyle()->bullet_pos == Right) - x -= (menu.item_w - menu.item_h - menu.bevel_w); - else - x += (menu.item_w - menu.item_h - menu.bevel_w); - - pts[0].x = x + 0; + pts[0].x = oppsel_x + 0; pts[0].y = sel_y + 2; pts[1].x = 0; @@ -978,6 +982,6 @@ void Basemenu::reconfigure(void) { void Basemenu::changeItemLabel(unsigned int index, const string& label) { BasemenuItem *item = find(index); - assert(item); - item->newLabel(label); + if (item) + item->newLabel(label); }