summaryrefslogtreecommitdiff
path: root/riscos/theme.h
blob: 92f29e177c56dd0e2db07111bd62a6f766f38e88 (plain)
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
35
36
37
38
39
40
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
#ifndef _MIGRATE_RISCOS_THEME_H_
#define _MIGRATE_RISCOS_THEME_H_

#include "oslib/wimp.h"
#include "oslib/messagetrans.h"

typedef enum {THEME_THEMEINFO, THEME_TOOLBAR} theme_window_type;

struct ro_theme
{
  wimp_window* theme_info;
  wimp_window* toolbar;

  char* filename;

  char* indirected_data;
  char* window_and_icon_data;

  osspriteop_area* sprites;
  int throbs;

  struct
  {
    messagetrans_control_block cb;
    char* data;
    char* filename;
  } iconNames;

  struct
  {
    messagetrans_control_block cb;
    char* data;
    char* filename;
  } iconSizes;

};

struct ro_theme_window
{
  theme_window_type type;

  union {
    struct {
      char* indirected_url;
      char* indirected_status;
    } toolbar;
    struct {
      char* indirected_url;
      char* indirected_title;
      char* indirected_size;
      char* indirected_process;
    } about;
  } data;
};

typedef struct ro_theme_window ro_theme_window;
typedef struct ro_theme ro_theme;

typedef enum {theme_TOOLBAR_UNKNOWN,
              theme_TOOLBAR_BACK, theme_TOOLBAR_FORWARD, theme_TOOLBAR_RELOAD,
              theme_TOOLBAR_URL, theme_TOOLBAR_STATUS} theme_gadget;

/* install a new theme */
ro_theme* ro_theme_create(char* pathname);

/* return icon number */
wimp_i ro_theme_icon(ro_theme* theme, theme_window_type type, const char* token);

/* create a window */
wimp_w ro_theme_create_window(ro_theme* theme, ro_theme_window* create);

int ro_theme_toolbar_height(ro_theme* theme);

void ro_theme_resize(ro_theme* theme, theme_window_type wintype, wimp_w w, int width, int height);

#endif