Changeset 3583ffb in mainline for uspace/lib/ui/test/label.c


Ignore:
Timestamp:
2020-11-08T19:51:04Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f93e4e3
Parents:
8c772c4
Message:

Revert "Create UI controls based on UI object…"

This was a mistake. Controls need ui_resource object, which must be
(at least currently) specific to a window and cannot be obtained from
ui_t.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ui/test/label.c

    r8c772c4 r3583ffb  
    3434#include <ui/control.h>
    3535#include <ui/label.h>
    36 #include <ui/ui.h>
     36#include <ui/resource.h>
    3737#include "../private/label.h"
    3838
     
    4040
    4141PCUT_TEST_SUITE(label);
     42
     43static errno_t testgc_set_color(void *, gfx_color_t *);
     44static errno_t testgc_fill_rect(void *, gfx_rect_t *);
     45static errno_t testgc_bitmap_create(void *, gfx_bitmap_params_t *,
     46    gfx_bitmap_alloc_t *, void **);
     47static errno_t testgc_bitmap_destroy(void *);
     48static errno_t testgc_bitmap_render(void *, gfx_rect_t *, gfx_coord2_t *);
     49static errno_t testgc_bitmap_get_alloc(void *, gfx_bitmap_alloc_t *);
     50
     51static gfx_context_ops_t ops = {
     52        .set_color = testgc_set_color,
     53        .fill_rect = testgc_fill_rect,
     54        .bitmap_create = testgc_bitmap_create,
     55        .bitmap_destroy = testgc_bitmap_destroy,
     56        .bitmap_render = testgc_bitmap_render,
     57        .bitmap_get_alloc = testgc_bitmap_get_alloc
     58};
     59
     60typedef struct {
     61        bool bm_created;
     62        bool bm_destroyed;
     63        gfx_bitmap_params_t bm_params;
     64        void *bm_pixels;
     65        gfx_rect_t bm_srect;
     66        gfx_coord2_t bm_offs;
     67        bool bm_rendered;
     68        bool bm_got_alloc;
     69} test_gc_t;
     70
     71typedef struct {
     72        test_gc_t *tgc;
     73        gfx_bitmap_alloc_t alloc;
     74        bool myalloc;
     75} testgc_bitmap_t;
    4276
    4377typedef struct {
     
    149183{
    150184        errno_t rc;
    151         ui_t *ui;
    152         ui_label_t *label;
    153 
    154         rc = ui_create_disp(NULL, &ui);
    155         PCUT_ASSERT_ERRNO_VAL(EOK, rc);
    156 
    157         rc = ui_label_create(ui, "Hello", &label);
     185        gfx_context_t *gc = NULL;
     186        test_gc_t tgc;
     187        ui_resource_t *resource = NULL;
     188        ui_label_t *label;
     189
     190        memset(&tgc, 0, sizeof(tgc));
     191        rc = gfx_context_new(&ops, &tgc, &gc);
     192        PCUT_ASSERT_ERRNO_VAL(EOK, rc);
     193
     194        rc = ui_resource_create(gc, &resource);
     195        PCUT_ASSERT_ERRNO_VAL(EOK, rc);
     196        PCUT_ASSERT_NOT_NULL(resource);
     197
     198        rc = ui_label_create(resource, "Hello", &label);
    158199        PCUT_ASSERT_ERRNO_VAL(EOK, rc);
    159200
     
    162203
    163204        ui_label_destroy(label);
    164         ui_destroy(ui);
     205        ui_resource_destroy(resource);
     206
     207        rc = gfx_context_delete(gc);
     208        PCUT_ASSERT_ERRNO_VAL(EOK, rc);
     209}
     210
     211static errno_t testgc_set_color(void *arg, gfx_color_t *color)
     212{
     213        (void) arg;
     214        (void) color;
     215        return EOK;
     216}
     217
     218static errno_t testgc_fill_rect(void *arg, gfx_rect_t *rect)
     219{
     220        (void) arg;
     221        (void) rect;
     222        return EOK;
     223}
     224
     225static errno_t testgc_bitmap_create(void *arg, gfx_bitmap_params_t *params,
     226    gfx_bitmap_alloc_t *alloc, void **rbm)
     227{
     228        test_gc_t *tgc = (test_gc_t *) arg;
     229        testgc_bitmap_t *tbm;
     230
     231        tbm = calloc(1, sizeof(testgc_bitmap_t));
     232        if (tbm == NULL)
     233                return ENOMEM;
     234
     235        if (alloc == NULL) {
     236                tbm->alloc.pitch = (params->rect.p1.x - params->rect.p0.x) *
     237                    sizeof(uint32_t);
     238                tbm->alloc.off0 = 0;
     239                tbm->alloc.pixels = calloc(sizeof(uint32_t),
     240                    (params->rect.p1.x - params->rect.p0.x) *
     241                    (params->rect.p1.y - params->rect.p0.y));
     242                tbm->myalloc = true;
     243                if (tbm->alloc.pixels == NULL) {
     244                        free(tbm);
     245                        return ENOMEM;
     246                }
     247        } else {
     248                tbm->alloc = *alloc;
     249        }
     250
     251        tbm->tgc = tgc;
     252        tgc->bm_created = true;
     253        tgc->bm_params = *params;
     254        tgc->bm_pixels = tbm->alloc.pixels;
     255        *rbm = (void *)tbm;
     256        return EOK;
     257}
     258
     259static errno_t testgc_bitmap_destroy(void *bm)
     260{
     261        testgc_bitmap_t *tbm = (testgc_bitmap_t *)bm;
     262        if (tbm->myalloc)
     263                free(tbm->alloc.pixels);
     264        tbm->tgc->bm_destroyed = true;
     265        free(tbm);
     266        return EOK;
     267}
     268
     269static errno_t testgc_bitmap_render(void *bm, gfx_rect_t *srect,
     270    gfx_coord2_t *offs)
     271{
     272        testgc_bitmap_t *tbm = (testgc_bitmap_t *)bm;
     273        tbm->tgc->bm_rendered = true;
     274        tbm->tgc->bm_srect = *srect;
     275        tbm->tgc->bm_offs = *offs;
     276        return EOK;
     277}
     278
     279static errno_t testgc_bitmap_get_alloc(void *bm, gfx_bitmap_alloc_t *alloc)
     280{
     281        testgc_bitmap_t *tbm = (testgc_bitmap_t *)bm;
     282        *alloc = tbm->alloc;
     283        tbm->tgc->bm_got_alloc = true;
     284        return EOK;
    165285}
    166286
Note: See TracChangeset for help on using the changeset viewer.