Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/vlaunch/vlaunch.c

    r62fbb7e r9e7898e  
    115115       
    116116        winreg = argv[1];
    117         window_t *main_window = window_open(argv[1], true, true, "vlaunch");
     117        window_t *main_window = window_open(argv[1], true, true, "vlaunch", 0, 0);
    118118        if (!main_window) {
    119119                printf("Cannot open main window.\n");
     
    122122       
    123123        pixel_t grd_bg = PIXEL(255, 255, 255, 255);
    124        
    125         pixel_t btn_bg = PIXEL(255, 255, 255, 255);
    126         pixel_t btn_fg = PIXEL(255, 186, 186, 186);
    127         pixel_t btn_text = PIXEL(255, 0, 0, 0);
    128        
     124        pixel_t btn_bg = PIXEL(255, 0, 0, 0);
     125        pixel_t btn_fg = PIXEL(255, 240, 240, 240);
    129126        pixel_t lbl_bg = PIXEL(255, 255, 255, 255);
    130         pixel_t lbl_text = PIXEL(255, 0, 0, 0);
     127        pixel_t lbl_fg = PIXEL(255, 0, 0, 0);
    131128       
    132129        canvas_t *logo_canvas = create_canvas(NULL, LOGO_WIDTH, LOGO_HEIGHT,
    133130            logo);
    134131        label_t *lbl_caption = create_label(NULL, "Launch application:", 16,
    135             lbl_bg, lbl_text);
     132            lbl_bg, lbl_fg);
    136133        button_t *btn_vterm = create_button(NULL, "vterm", 16, btn_bg,
    137             btn_fg, btn_text);
     134            btn_fg);
    138135        button_t *btn_vdemo = create_button(NULL, "vdemo", 16, btn_bg,
    139             btn_fg, btn_text);
     136            btn_fg);
    140137        button_t *btn_vlaunch = create_button(NULL, "vlaunch", 16, btn_bg,
    141             btn_fg, btn_text);
     138            btn_fg);
    142139        grid_t *grid = create_grid(window_root(main_window), 1, 5, grd_bg);
    143140       
     
    159156        grid->add(grid, &btn_vlaunch->widget, 0, 4, 1, 1);
    160157       
    161         window_resize(main_window, 0, 0, 210, 130 + LOGO_HEIGHT,
    162             WINDOW_PLACEMENT_RIGHT | WINDOW_PLACEMENT_TOP);
     158        window_resize(main_window, 210, 130 + LOGO_HEIGHT);
    163159        window_exec(main_window);
    164160       
Note: See TracChangeset for help on using the changeset viewer.