summaryrefslogtreecommitdiffstats
path: root/ui/rccmenu.c
blob: c604b732523e16797040817efb6a08d91a850f2e (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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*
  LibRCC - menu abstraction

  Copyright (C) 2005-2008 Suren A. Chilingaryan <csa@dside.dyndns.org>

  This library is free software; you can redistribute it and/or modify it
  under the terms of the GNU Lesser General Public License version 2.1 or later
  as published by the Free Software Foundation.

  This library 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 Lesser General Public License 
  for more details.

  You should have received a copy of the GNU Lesser General Public License 
  along with this program; if not, write to the Free Software Foundation, Inc.,
  59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "internal.h"
#include "rccmenu.h"

rcc_ui_menu_context rccUiMenuCreateContext(rcc_ui_menu_type type, rcc_ui_context uictx) {
    rcc_ui_menu_context ctx;
    if ((!uictx)||(type>=RCC_UI_MENU_MAX)) return NULL;
    
    ctx = (rcc_ui_menu_context)malloc(sizeof(rcc_ui_menu_context_s));
    if (!ctx) return ctx;
    
    ctx->uictx = uictx;
    ctx->type = type;
    
    ctx->widget = rccUiMenuCreateWidget(ctx);
    ctx->box = NULL;
    
    return ctx;
}

rcc_ui_menu_context rccUiCharsetMenuCreateContext(rcc_ui_menu_type type, rcc_charset_id id, rcc_ui_context uictx) {
    rcc_ui_charset_menu_context ctx;
    
    if ((!uictx)||(type>=RCC_UI_MENU_MAX)) return NULL;
    
    ctx = (rcc_ui_charset_menu_context)malloc(sizeof(rcc_ui_charset_menu_context_s));
    if (!ctx) return NULL;
    
    ctx->ui_menu.uictx = uictx;
    ctx->ui_menu.type = type;
    ctx->id = id;
    
    ctx->ui_menu.widget = rccUiMenuCreateWidget((rcc_ui_menu_context)ctx);
    ctx->ui_menu.box = NULL;
    
    return (rcc_ui_menu_context)ctx;
}

rcc_ui_menu_context rccUiOptionMenuCreateContext(rcc_ui_menu_type type, rcc_option id, rcc_option_type otype, rcc_option_range *range, rcc_ui_context uictx) {
    rcc_ui_option_menu_context ctx;
    
    if ((!uictx)||(type>=RCC_UI_MENU_MAX)) return NULL;
    
    ctx = (rcc_ui_option_menu_context)malloc(sizeof(rcc_ui_option_menu_context_s));
    if (!ctx) return NULL;
    
    ctx->ui_menu.uictx = uictx;
    ctx->ui_menu.type = type;
    ctx->id = id;
    ctx->type = otype;
    ctx->realtype = otype;
    ctx->range = range;
    
    ctx->ui_menu.widget = rccUiMenuCreateWidget((rcc_ui_menu_context)ctx);
    ctx->ui_menu.box = NULL;
    
    return (rcc_ui_menu_context)ctx;
}


void rccUiMenuFreeContext(rcc_ui_menu_context ctx) {
    if (!ctx) return;
    rccUiMenuFreeWidget(ctx);
    free(ctx);
}


rcc_class_id rccUiMenuGetClassId(rcc_ui_menu_context ctx) {
    if ((!ctx)||(ctx->type != RCC_UI_MENU_CHARSET)) return (rcc_class_id)-1;
    return ((rcc_ui_charset_menu_context)ctx)->id;
}

rcc_option rccUiMenuGetOption(rcc_ui_menu_context ctx) {
    if ((!ctx)||(ctx->type != RCC_UI_MENU_OPTION)) return (rcc_option)-1;
    return ((rcc_ui_option_menu_context)ctx)->id;
}


rcc_option_type rccUiMenuGetType(rcc_ui_menu_context ctx) {
    if ((!ctx)||(ctx->type != RCC_UI_MENU_OPTION)) return (rcc_option_type)-1;
    return ((rcc_ui_option_menu_context)ctx)->type;
}

rcc_option_range *rccUiMenuGetRange(rcc_ui_menu_context ctx) {
    if  ((!ctx)||(ctx->type != RCC_UI_MENU_OPTION)) return NULL;
    return ((rcc_ui_option_menu_context)ctx)->range;
}

rcc_option_range_type rccUiMenuGetRangeType(rcc_ui_menu_context ctx) {
    if  ((!ctx)||(ctx->type != RCC_UI_MENU_OPTION)) return (rcc_option_type)-1;
    return ((rcc_ui_option_menu_context)ctx)->range->type;
}

int rccUiMenuHide(rcc_ui_menu_context ctx) {
    if (!ctx) return -1;
    
	// Only options right now
    if (ctx->type != RCC_UI_MENU_OPTION) return -1;

    ((rcc_ui_option_menu_context)ctx)->type = RCC_OPTION_TYPE_INVISIBLE;

    return 0;
}

int rccUiMenuUnHide(rcc_ui_menu_context ctx) {
    if (!ctx) return -1;

	// Only options right now
    if (ctx->type != RCC_UI_MENU_OPTION) return -1;

    if (((rcc_ui_option_menu_context)ctx)->type == RCC_OPTION_TYPE_INVISIBLE) {
	if (((rcc_ui_option_menu_context)ctx)->realtype == RCC_OPTION_TYPE_INVISIBLE)
	    ((rcc_ui_option_menu_context)ctx)->type = RCC_OPTION_TYPE_STANDARD;
	else
	    ((rcc_ui_option_menu_context)ctx)->type = ((rcc_ui_option_menu_context)ctx)->realtype;
    }
    
    return 0;
}