]> Dogcows Code - chaz/openbox/commitdiff
Merge branch 'backport' into work
authorMikael Magnusson <mikachu@comhem.se>
Sat, 8 Mar 2008 16:43:32 +0000 (17:43 +0100)
committerMikael Magnusson <mikachu@comhem.se>
Sat, 8 Mar 2008 16:43:32 +0000 (17:43 +0100)
Conflicts:

obt/keyboard.c
openbox/actions/cyclewindows.c
openbox/actions/directionalwindows.c
openbox/frame.c
openbox/openbox.c

17 files changed:
1  2 
openbox/actions.c
openbox/actions/cyclewindows.c
openbox/actions/desktop.c
openbox/actions/directionalwindows.c
openbox/client.c
openbox/config.h
openbox/event.c
openbox/focus.c
openbox/focus_cycle.c
openbox/frame.c
openbox/keyboard.c
openbox/menu.c
openbox/menuframe.c
openbox/moveresize.c
openbox/prompt.c
openbox/session.c
render/theme.c

Simple merge
index 44d87cf6cf4a3fff0d3c0e34f6547b263030d375,6fba17ffb1f3113ffd0b8d26a936cb91ff2f57d0..5354f087c55254f5fdd5fd700a63e88a93ac6cc7
@@@ -47,36 -49,32 +47,36 @@@ static gpointer setup_func(xmlNodePtr n
      Options *o;
  
      o = g_new0(Options, 1);
 -    o->dialog = TRUE;
      o->bar = TRUE;
 -
 -    if ((n = parse_find_node("linear", node)))
 -        o->linear = parse_bool(doc, n);
 -    if ((n = parse_find_node("dialog", node)))
 -        o->dialog = parse_bool(doc, n);
 -    if ((n = parse_find_node("bar", node)))
 -        o->bar = parse_bool(doc, n);
 -    if ((n = parse_find_node("raise", node)))
 -        o->raise = parse_bool(doc, n);
 -    if ((n = parse_find_node("panels", node)))
 -        o->dock_windows = parse_bool(doc, n);
 -    if ((n = parse_find_node("desktop", node)))
 -        o->desktop_windows = parse_bool(doc, n);
 -    if ((n = parse_find_node("allDesktops", node)))
 -        o->all_desktops = parse_bool(doc, n);
 -
 -    if ((n = parse_find_node("finalactions", node))) {
 +    o->dialog_mode = OB_FOCUS_CYCLE_POPUP_MODE_LIST;
 +
 +    if ((n = obt_parse_find_node(node, "linear")))
 +        o->linear = obt_parse_node_bool(n);
 +    if ((n = obt_parse_find_node(node, "dialog"))) {
 +        if (obt_parse_node_contains(n, "none"))
 +            o->dialog_mode = OB_FOCUS_CYCLE_POPUP_MODE_NONE;
 +        else if (obt_parse_node_contains(n, "icons"))
 +            o->dialog_mode = OB_FOCUS_CYCLE_POPUP_MODE_ICONS;
 +    }
 +    if ((n = obt_parse_find_node(node, "bar")))
 +        o->bar = obt_parse_node_bool(n);
 +    if ((n = obt_parse_find_node(node, "raise")))
 +        o->raise = obt_parse_node_bool(n);
 +    if ((n = obt_parse_find_node(node, "panels")))
 +        o->dock_windows = obt_parse_node_bool(n);
 +    if ((n = obt_parse_find_node(node, "desktop")))
 +        o->desktop_windows = obt_parse_node_bool(n);
 +    if ((n = obt_parse_find_node(node, "allDesktops")))
 +        o->all_desktops = obt_parse_node_bool(n);
 +
 +    if ((n = obt_parse_find_node(node, "finalactions"))) {
          xmlNodePtr m;
  
 -        m = parse_find_node("action", n->xmlChildrenNode);
 +        m = obt_parse_find_node(n->children, "action");
          while (m) {
 -            ObActionsAct *action = actions_parse(i, doc, m);
 +            ObActionsAct *action = actions_parse(m);
-             if (action) o->actions = g_slist_prepend(o->actions, action);
+             if (action) o->actions = g_slist_append(o->actions, action);
 -            m = parse_find_node("action", m->next);
 +            m = obt_parse_find_node(m->next, "action");
          }
      }
      else {
Simple merge
index c5c25c11329b0aa7768df61a60f0c55597069fab,d9f24d61e53736d4731e9efffd201c76bda39377..d3633d507356aff655be907e9414c3772e16954c
@@@ -85,14 -87,14 +85,14 @@@ static gpointer setup_func(xmlNodePtr n
          g_free(s);
      }
  
 -    if ((n = parse_find_node("finalactions", node))) {
 +    if ((n = obt_parse_find_node(node, "finalactions"))) {
          xmlNodePtr m;
  
 -        m = parse_find_node("action", n->xmlChildrenNode);
 +        m = obt_parse_find_node(n->children, "action");
          while (m) {
 -            ObActionsAct *action = actions_parse(i, doc, m);
 +            ObActionsAct *action = actions_parse(m);
-             if (action) o->actions = g_slist_prepend(o->actions, action);
+             if (action) o->actions = g_slist_append(o->actions, action);
 -            m = parse_find_node("action", m->next);
 +            m = obt_parse_find_node(m->next, "action");
          }
      }
      else {
index a055e6329176328f04053fae18c96e6b0019cda5,7062cabd6bdecfc7f961cabe750df32251dca2cd..0ccb343b1ce32c0808eb914b2f30c75c5bd5ba6d
@@@ -577,13 -650,12 +576,12 @@@ void client_manage(Window window, ObPro
      /* free the ObAppSettings shallow copy */
      g_free(settings);
  
 -    ob_debug("Managed window 0x%lx plate 0x%x (%s)\n",
 +    ob_debug("Managed window 0x%lx plate 0x%x (%s)",
               window, self->frame->window, self->class);
  
 -    return;
 +    hooks_queue(OB_HOOK_WIN_NEW, self);
  }
  
  ObClient *client_fake_manage(Window window)
  {
      ObClient *self;
@@@ -2124,9 -2188,8 +2121,8 @@@ void client_update_icons(ObClient *self
                                         (hints->flags & IconMaskHint ?
                                          hints->icon_mask : None),
                                         (gint*)&w, (gint*)&h, &data);
 -                xerror_set_ignore(FALSE);
 +                obt_display_ignore_errors(FALSE);
  
                  if (xicon) {
                      if (w > 0 && h > 0) {
                          /* is this icon in the cache yet? */
Simple merge
diff --cc openbox/event.c
Simple merge
diff --cc openbox/focus.c
Simple merge
Simple merge
diff --cc openbox/frame.c
index 25c470489596c8b12a42d3e3d91cfd9c9c0b87df,235dd30b03726856db1b42337b46ad2b2bf988df..8a7b1aef441f6206624d2af5893169fb80013a71
@@@ -1235,54 -1230,53 +1227,53 @@@ static void layout_title(ObFrame *self
  
      /* position and map the elements */
      if (self->icon_on) {
 -        XMapWindow(ob_display, self->icon);
 -        XMoveWindow(ob_display, self->icon, self->icon_x,
 +        XMapWindow(obt_display, self->icon);
 +        XMoveWindow(obt_display, self->icon, self->icon_x,
                      ob_rr_theme->paddingy);
      } else
 -        XUnmapWindow(ob_display, self->icon);
 +        XUnmapWindow(obt_display, self->icon);
  
      if (self->desk_on) {
 -        XMapWindow(ob_display, self->desk);
 -        XMoveWindow(ob_display, self->desk, self->desk_x,
 +        XMapWindow(obt_display, self->desk);
 +        XMoveWindow(obt_display, self->desk, self->desk_x,
                      ob_rr_theme->paddingy + 1);
      } else
 -        XUnmapWindow(ob_display, self->desk);
 +        XUnmapWindow(obt_display, self->desk);
  
      if (self->shade_on) {
 -        XMapWindow(ob_display, self->shade);
 -        XMoveWindow(ob_display, self->shade, self->shade_x,
 +        XMapWindow(obt_display, self->shade);
 +        XMoveWindow(obt_display, self->shade, self->shade_x,
                      ob_rr_theme->paddingy + 1);
      } else
 -        XUnmapWindow(ob_display, self->shade);
 +        XUnmapWindow(obt_display, self->shade);
  
      if (self->iconify_on) {
 -        XMapWindow(ob_display, self->iconify);
 -        XMoveWindow(ob_display, self->iconify, self->iconify_x,
 +        XMapWindow(obt_display, self->iconify);
 +        XMoveWindow(obt_display, self->iconify, self->iconify_x,
                      ob_rr_theme->paddingy + 1);
      } else
 -        XUnmapWindow(ob_display, self->iconify);
 +        XUnmapWindow(obt_display, self->iconify);
  
      if (self->max_on) {
 -        XMapWindow(ob_display, self->max);
 -        XMoveWindow(ob_display, self->max, self->max_x,
 +        XMapWindow(obt_display, self->max);
 +        XMoveWindow(obt_display, self->max, self->max_x,
                      ob_rr_theme->paddingy + 1);
      } else
 -        XUnmapWindow(ob_display, self->max);
 +        XUnmapWindow(obt_display, self->max);
  
      if (self->close_on) {
 -        XMapWindow(ob_display, self->close);
 -        XMoveWindow(ob_display, self->close, self->close_x,
 +        XMapWindow(obt_display, self->close);
 +        XMoveWindow(obt_display, self->close, self->close_x,
                      ob_rr_theme->paddingy + 1);
      } else
 -        XUnmapWindow(ob_display, self->close);
 +        XUnmapWindow(obt_display, self->close);
  
-     if (self->label_on) {
-         self->label_width = MAX(1, self->label_width); /* no lower than 1 */
+     if (self->label_on && self->label_width > 0) {
 -        XMapWindow(ob_display, self->label);
 -        XMoveWindow(ob_display, self->label, self->label_x,
 +        XMapWindow(obt_display, self->label);
 +        XMoveWindow(obt_display, self->label, self->label_x,
                      ob_rr_theme->paddingy);
      } else
 -        XUnmapWindow(ob_display, self->label);
 +        XUnmapWindow(obt_display, self->label);
  }
  
  ObFrameContext frame_context_from_string(const gchar *name)
Simple merge
diff --cc openbox/menu.c
Simple merge
index 7b4c872b475b5b30f1ed0964d0758f3bbc70ee92,a9b544081fb110a88f9da17ce17c6ada88c2640f..1e767e965f45cdbdc92830b7190aa6319376ece0
@@@ -695,13 -690,12 +695,12 @@@ void menu_frame_render(ObMenuFrame *sel
          }
  
          RECT_SET_POINT(e->area, 0, h+e->border);
 -        XMoveWindow(ob_display, e->window,
 +        XMoveWindow(obt_display, e->window,
                      e->area.x-e->border, e->area.y-e->border);
 -        XSetWindowBorderWidth(ob_display, e->window, e->border);
 -        XSetWindowBorder(ob_display, e->window,
 +        XSetWindowBorderWidth(obt_display, e->window, e->border);
 +        XSetWindowBorder(obt_display, e->window,
                           RrColorPixel(ob_rr_theme->menu_border_color));
  
          text_a = (e->entry->type == OB_MENU_ENTRY_TYPE_NORMAL &&
                    !e->entry->data.normal.enabled ?
                    /* disabled */
Simple merge
Simple merge
Simple merge
diff --cc render/theme.c
Simple merge
This page took 0.040823 seconds and 4 git commands to generate.