gui_box.c 11 KB
Newer Older
Colin D Bennett's avatar
Colin D Bennett committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
/* gui_box.c - GUI container that stack components. */
/*
 *  GRUB  --  GRand Unified Bootloader
 *  Copyright (C) 2008,2009  Free Software Foundation, Inc.
 *
 *  GRUB is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  GRUB is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <grub/mm.h>
#include <grub/misc.h>
#include <grub/gui.h>
#include <grub/gui_string_util.h>

struct component_node
{
  grub_gui_component_t component;
  struct component_node *next;
  struct component_node *prev;
};

typedef struct grub_gui_box *grub_gui_box_t;

typedef void (*layout_func_t) (grub_gui_box_t self, int modify_layout,
35 36
                               unsigned *minimal_width,
			       unsigned *minimal_height);
Colin D Bennett's avatar
Colin D Bennett committed
37 38 39

struct grub_gui_box
{
40
  struct grub_gui_container container;
Colin D Bennett's avatar
Colin D Bennett committed
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88

  grub_gui_container_t parent;
  grub_video_rect_t bounds;
  char *id;

  /* Doubly linked list of components with dummy head & tail nodes.  */
  struct component_node chead;
  struct component_node ctail;

  /* The layout function: differs for vertical and horizontal boxes.  */
  layout_func_t layout_func;
};

static void
box_destroy (void *vself)
{
  grub_gui_box_t self = vself;
  struct component_node *cur;
  struct component_node *next;
  for (cur = self->chead.next; cur != &self->ctail; cur = next)
    {
      /* Copy the 'next' pointer, since we need it for the next iteration,
         and we're going to free the memory it is stored in.  */
      next = cur->next;
      /* Destroy the child component.  */
      cur->component->ops->destroy (cur->component);
      /* Free the linked list node.  */
      grub_free (cur);
    }
  grub_free (self);
}

static const char *
box_get_id (void *vself)
{
  grub_gui_box_t self = vself;
  return self->id;
}

static int
box_is_instance (void *vself __attribute__((unused)), const char *type)
{
  return (grub_strcmp (type, "component") == 0
          || grub_strcmp (type, "container") == 0);
}

static void
layout_horizontally (grub_gui_box_t self, int modify_layout,
89
                     unsigned *min_width, unsigned *min_height)
Colin D Bennett's avatar
Colin D Bennett committed
90 91 92 93 94
{
  /* Start at the left (chead) and set the x coordinates as we go right.  */
  /* All components have their width set to the box's width.  */

  struct component_node *cur;
95
  unsigned w = 0, mwfrac = 0, h = 0, x = 0;
96
  grub_fixed_signed_t wfrac = 0;
97 98
  int bogus_frac = 0;

Colin D Bennett's avatar
Colin D Bennett committed
99 100 101
  for (cur = self->chead.next; cur != &self->ctail; cur = cur->next)
    {
      grub_gui_component_t c = cur->component;
102 103 104 105 106
      unsigned mw = 0, mh = 0;

      if (c->ops->get_minimal_size)
	c->ops->get_minimal_size (c, &mw, &mh);

107
      if (c->h > (signed) h)
108 109 110
	h = c->h;
      if (mh > h)
	h = mh;
111 112 113 114
      wfrac += c->wfrac;
      w += c->w;
      if (mw - c->w > 0)
	mwfrac += mw - c->w;
115 116 117 118 119 120 121
    }
  if (wfrac > GRUB_FIXED_1 || (w > 0 && wfrac == GRUB_FIXED_1))
    bogus_frac = 1;

  if (min_width)
    {
      if (wfrac < GRUB_FIXED_1)
122
	*min_width = grub_fixed_sfs_divide (w, GRUB_FIXED_1 - wfrac);
123 124 125 126 127 128 129 130 131 132 133 134 135
      else
	*min_width = w;
      if (*min_width < w + mwfrac)
	*min_width = w + mwfrac;
    }
  if (min_height)
    *min_height = h;

  if (!modify_layout)
    return;

  for (cur = self->chead.next; cur != &self->ctail; cur = cur->next)
    {
Colin D Bennett's avatar
Colin D Bennett committed
136
      grub_video_rect_t r;
137 138
      grub_gui_component_t c = cur->component;
      unsigned mw = 0, mh = 0;
Colin D Bennett's avatar
Colin D Bennett committed
139

140 141 142
      r.x = x;
      r.y = 0;
      r.height = h;
Colin D Bennett's avatar
Colin D Bennett committed
143

144 145
      if (c->ops->get_minimal_size)
	c->ops->get_minimal_size (c, &mw, &mh);
Colin D Bennett's avatar
Colin D Bennett committed
146

147 148 149
      r.width = c->w;
      if (!bogus_frac)
	r.width += grub_fixed_sfs_multiply (self->bounds.width, c->wfrac);
150 151 152 153 154

      if (r.width < mw)
	r.width = mw;

      c->ops->set_bounds (c, &r);
Colin D Bennett's avatar
Colin D Bennett committed
155 156 157 158 159 160 161

      x += r.width;
    }
}

static void
layout_vertically (grub_gui_box_t self, int modify_layout,
162
                     unsigned *min_width, unsigned *min_height)
Colin D Bennett's avatar
Colin D Bennett committed
163
{
164 165
  /* Start at the top (chead) and set the y coordinates as we go rdown.  */
  /* All components have their height set to the box's height.  */
Colin D Bennett's avatar
Colin D Bennett committed
166 167

  struct component_node *cur;
168
  unsigned h = 0, mhfrac = 0, w = 0, y = 0;
169
  grub_fixed_signed_t hfrac = 0;
170 171
  int bogus_frac = 0;

Colin D Bennett's avatar
Colin D Bennett committed
172 173 174
  for (cur = self->chead.next; cur != &self->ctail; cur = cur->next)
    {
      grub_gui_component_t c = cur->component;
175 176 177 178 179
      unsigned mw = 0, mh = 0;

      if (c->ops->get_minimal_size)
	c->ops->get_minimal_size (c, &mw, &mh);

180
      if (c->w > (signed) w)
181 182 183
	w = c->w;
      if (mw > w)
	w = mw;
184 185 186 187
      hfrac += c->hfrac;
      h += c->h;
      if (mh - c->h > 0)
	mhfrac += mh - c->h;
188 189 190 191 192 193 194
    }
  if (hfrac > GRUB_FIXED_1 || (h > 0 && hfrac == GRUB_FIXED_1))
    bogus_frac = 1;

  if (min_height)
    {
      if (hfrac < GRUB_FIXED_1)
195
	*min_height = grub_fixed_sfs_divide (h, GRUB_FIXED_1 - hfrac);
196 197 198 199 200 201 202 203 204 205 206 207 208
      else
	*min_height = h;
      if (*min_height < h + mhfrac)
	*min_height = h + mhfrac;
    }
  if (min_width)
    *min_width = w;

  if (!modify_layout)
    return;

  for (cur = self->chead.next; cur != &self->ctail; cur = cur->next)
    {
Colin D Bennett's avatar
Colin D Bennett committed
209
      grub_video_rect_t r;
210 211
      grub_gui_component_t c = cur->component;
      unsigned mw = 0, mh = 0;
Colin D Bennett's avatar
Colin D Bennett committed
212

213 214 215
      r.x = 0;
      r.y = y;
      r.width = w;
Colin D Bennett's avatar
Colin D Bennett committed
216

217 218
      if (c->ops->get_minimal_size)
	c->ops->get_minimal_size (c, &mw, &mh);
Colin D Bennett's avatar
Colin D Bennett committed
219

220 221 222
      r.height = c->h;
      if (!bogus_frac)
	r.height += grub_fixed_sfs_multiply (self->bounds.height, c->hfrac);
223 224 225 226 227

      if (r.height < mh)
	r.height = mh;

      c->ops->set_bounds (c, &r);
Colin D Bennett's avatar
Colin D Bennett committed
228 229 230 231 232 233

      y += r.height;
    }
}

static void
234
box_paint (void *vself, const grub_video_rect_t *region)
Colin D Bennett's avatar
Colin D Bennett committed
235 236
{
  grub_gui_box_t self = vself;
237

Colin D Bennett's avatar
Colin D Bennett committed
238 239 240
  struct component_node *cur;
  grub_video_rect_t vpsave;

241 242 243
  grub_video_area_status_t box_area_status;
  grub_video_get_area_status (&box_area_status);

Colin D Bennett's avatar
Colin D Bennett committed
244 245 246 247
  grub_gui_set_viewport (&self->bounds, &vpsave);
  for (cur = self->chead.next; cur != &self->ctail; cur = cur->next)
    {
      grub_gui_component_t comp = cur->component;
248 249 250 251 252 253 254 255 256 257
      grub_video_rect_t r;
      comp->ops->get_bounds(comp, &r);

      if (!grub_video_have_common_points (region, &r))
        continue;

      /* Paint the child.  */
      if (box_area_status == GRUB_VIDEO_AREA_ENABLED
          && grub_video_bounds_inside_region (&r, region))
        grub_video_set_area_status (GRUB_VIDEO_AREA_DISABLED);
258
      comp->ops->paint (comp, region);
259 260
      if (box_area_status == GRUB_VIDEO_AREA_ENABLED)
        grub_video_set_area_status (GRUB_VIDEO_AREA_ENABLED);
Colin D Bennett's avatar
Colin D Bennett committed
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
    }
  grub_gui_restore_viewport (&vpsave);
}

static void
box_set_parent (void *vself, grub_gui_container_t parent)
{
  grub_gui_box_t self = vself;
  self->parent = parent;
}

static grub_gui_container_t
box_get_parent (void *vself)
{
  grub_gui_box_t self = vself;
  return self->parent;
}

static void
box_set_bounds (void *vself, const grub_video_rect_t *bounds)
{
  grub_gui_box_t self = vself;
  self->bounds = *bounds;
  self->layout_func (self, 1, 0, 0);   /* Relayout the children.  */
}

static void
box_get_bounds (void *vself, grub_video_rect_t *bounds)
{
  grub_gui_box_t self = vself;
  *bounds = self->bounds;
}

/* The box's preferred size is based on the preferred sizes
   of its children.  */
static void
297
box_get_minimal_size (void *vself, unsigned *width, unsigned *height)
Colin D Bennett's avatar
Colin D Bennett committed
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
{
  grub_gui_box_t self = vself;
  self->layout_func (self, 0, width, height);   /* Just calculate the size.  */
}

static grub_err_t
box_set_property (void *vself, const char *name, const char *value)
{
  grub_gui_box_t self = vself;
  if (grub_strcmp (name, "id") == 0)
    {
      grub_free (self->id);
      if (value)
        {
          self->id = grub_strdup (value);
          if (! self->id)
            return grub_errno;
        }
      else
        self->id = 0;
    }

  return grub_errno;
}

static void
box_add (void *vself, grub_gui_component_t comp)
{
  grub_gui_box_t self = vself;
  struct component_node *node;
  node = grub_malloc (sizeof (*node));
  if (! node)
    return;   /* Note: probably should handle the error.  */
  node->component = comp;
  /* Insert the node before the tail.  */
  node->prev = self->ctail.prev;
  node->prev->next = node;
  node->next = &self->ctail;
  node->next->prev = node;

  comp->ops->set_parent (comp, (grub_gui_container_t) self);
  self->layout_func (self, 1, 0, 0);   /* Relayout the children.  */
}

static void
box_remove (void *vself, grub_gui_component_t comp)
{
  grub_gui_box_t self = vself;
  struct component_node *cur;
  for (cur = self->chead.next; cur != &self->ctail; cur = cur->next)
    {
      if (cur->component == comp)
        {
          /* Unlink 'cur' from the list.  */
          cur->prev->next = cur->next;
          cur->next->prev = cur->prev;
          /* Free the node's memory (but don't destroy the component).  */
          grub_free (cur);
          /* Must not loop again, since 'cur' would be dereferenced!  */
          return;
        }
    }
}

static void
box_iterate_children (void *vself,
                      grub_gui_component_callback cb, void *userdata)
{
  grub_gui_box_t self = vself;
  struct component_node *cur;
  for (cur = self->chead.next; cur != &self->ctail; cur = cur->next)
    cb (cur->component, userdata);
}

372 373 374 375 376 377 378 379 380 381 382 383 384 385
static struct grub_gui_component_ops box_comp_ops =
  {
    .destroy = box_destroy,
    .get_id = box_get_id,
    .is_instance = box_is_instance,
    .paint = box_paint,
    .set_parent = box_set_parent,
    .get_parent = box_get_parent,
    .set_bounds = box_set_bounds,
    .get_bounds = box_get_bounds,
    .get_minimal_size = box_get_minimal_size,
    .set_property = box_set_property
  };

Colin D Bennett's avatar
Colin D Bennett committed
386 387 388 389 390 391 392 393 394 395 396 397 398
static struct grub_gui_container_ops box_ops =
{
  .add = box_add,
  .remove = box_remove,
  .iterate_children = box_iterate_children
};

/* Box constructor.  Specify the appropriate layout function to create
   a horizontal or vertical stacking box.  */
static grub_gui_box_t
box_new (layout_func_t layout_func)
{
  grub_gui_box_t box;
399
  box = grub_zalloc (sizeof (*box));
Colin D Bennett's avatar
Colin D Bennett committed
400 401
  if (! box)
    return 0;
402 403
  box->container.ops = &box_ops;
  box->container.component.ops = &box_comp_ops;
Colin D Bennett's avatar
Colin D Bennett committed
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
  box->chead.next = &box->ctail;
  box->ctail.prev = &box->chead;
  box->layout_func = layout_func;
  return box;
}

/* Create a new container that stacks its child components horizontally,
   from left to right.  Each child get a width corresponding to its
   preferred width.  The height of each child is set the maximum of the
   preferred heights of all children.  */
grub_gui_container_t
grub_gui_hbox_new (void)
{
  return (grub_gui_container_t) box_new (layout_horizontally);
}

/* Create a new container that stacks its child components verticallyj,
   from top to bottom.  Each child get a height corresponding to its
   preferred height.  The width of each child is set the maximum of the
   preferred widths of all children.  */
grub_gui_container_t
grub_gui_vbox_new (void)
{
  return (grub_gui_container_t) box_new (layout_vertically);
}