Changeset bb65ccb3 in mainline for uspace/app/taskbar/clock.h


Ignore:
Timestamp:
2023-04-14T13:05:15Z (21 months ago)
Author:
GitHub <noreply@…>
Children:
00ef082
Parents:
4bfb5a0
git-author:
SimonJRiddix <69309548+simonjriddix@…> (2023-04-14 13:05:15)
git-committer:
GitHub <noreply@…> (2023-04-14 13:05:15)
Message:

add application launcher button & 12/24 h formats

taskbar with button to start the application launcher, 12/24 hour date formats have also been added.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/taskbar/clock.h

    r4bfb5a0 rbb65ccb3  
    5454extern void taskbar_clock_set_rect(taskbar_clock_t *, gfx_rect_t *);
    5555
     56void american_clock_format(struct tm time, char *buf, size_t bsize);
     57void american_seconds_clock_format(struct tm time, char *buf, size_t bsize);
     58void italian_clock_format(struct tm time, char *buf, size_t bsize);
     59void italian_seconds_clock_format(struct tm time, char *buf, size_t bsize);
     60void set_clock_format(void);
     61
     62typedef void (*ClockFormat)(struct tm, char *, size_t);
     63
    5664#endif
    5765
Note: See TracChangeset for help on using the changeset viewer.