X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2FBasemenu.cc;h=90d5e458ebcdc8e21b56fd0e47ff1e0c9f2eb037;hb=db3e93a3c1a57d962741a572a0913ce2555d9dba;hp=ac605cb7ed6bea922003b120f66753cca40186c4;hpb=462ccd7c4d173e66a8b18e33ba719ff9361f17b1;p=chaz%2Fopenbox diff --git a/src/Basemenu.cc b/src/Basemenu.cc index ac605cb7..90d5e458 100644 --- a/src/Basemenu.cc +++ b/src/Basemenu.cc @@ -250,7 +250,8 @@ int Basemenu::remove(int index) { void Basemenu::update(void) { MenuStyle *style = screen->getMenuStyle(); - menu.item_h = style->f_font->height() + menu.bevel_w; + menu.item_h = (style->f_font->height() < 9 ? 9 : style->f_font->height()) + + menu.bevel_w; // 9 for the menu pixmaps (checkmarks) menu.title_h = style->t_font->height() + menu.bevel_w * 2; if (title_vis) { @@ -525,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; @@ -568,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) { @@ -597,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)) { @@ -609,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; @@ -977,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); }