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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
|
/*
* Copyright 2004, 2005 Richard Wilson <info@tinct.net>
*
* This file is part of NetSurf, http://www.netsurf-browser.org/
*
* NetSurf is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* NetSurf 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/** \file
* Interactive help (implementation).
*/
#include <assert.h>
#include <stdbool.h>
#include <stdio.h>
#include "oslib/help.h"
#include "oslib/os.h"
#include "oslib/taskmanager.h"
#include "oslib/wimp.h"
#include "desktop/tree.h"
#include "riscos/cookies.h"
#include "riscos/global_history.h"
#include "riscos/gui.h"
#include "riscos/hotlist.h"
#include "riscos/help.h"
#include "riscos/iconbar.h"
#include "riscos/menus.h"
#include "riscos/options.h"
#include "riscos/treeview.h"
#include "riscos/wimp.h"
#include "riscos/wimp_event.h"
#include "riscos/window.h"
#include "utils/messages.h"
#include "utils/log.h"
#include "utils/utf8.h"
#include "utils/utils.h"
/* Recognised help keys
====================
Help keys should be registered using the wimp_event system to be
recognised. The only special case help values are:
HelpIconbar Iconbar (no icon suffix is used)
HelpBrowser Browser window [*]
HelpHotlist Hotlist window [*]
HelpGHistory Global history window [*]
HelpCookies Cookies window [*]
HelpIconMenu Iconbar menu
HelpBrowserMenu Browser window menu
HelpHotlistMenu Hotlist window menu
HelpGHistoryMenu Global history window menu
HelpCookiesMenu Cookie window menu
The prefixes are followed by either the icon number (eg 'HelpToolbar7'),
or a series of numbers representing the menu structure (eg
'HelpBrowserMenu3-1-2').
If '<key><identifier>' is not available, then simply '<key>' is then
used. For example if 'HelpToolbar7' is not available then 'HelpToolbar'
is then tried.
If an item is greyed out then a suffix of 'g' is added (eg
'HelpToolbar7g'). For this to work, windows must have bit 4 of the
window flag byte set and the user must be running RISC OS 5.03 or
greater.
For items marked with an asterisk [*] a call must be made to determine
the required help text as the window does not contain any icons. An
example of this is the hotlist window where ro_gui_hotlist_help() is
called.
*/
static void ro_gui_interactive_help_broadcast(wimp_message *message,
char *token);
static os_t help_time = 0;
/**
* Attempts to process an interactive help message request
*
* \param message the request message
*/
void ro_gui_interactive_help_request(wimp_message *message)
{
char message_token[32];
char menu_buffer[4];
wimp_selection menu_tree;
help_full_message_request *message_data;
wimp_w window;
wimp_i icon;
unsigned int index;
bool greyed = false;
wimp_menu *test_menu;
os_error *error;
const char *auto_text, *auto_suffix;
int i;
/* check we aren't turned off */
if (!option_interactive_help)
return;
/* only accept help requests */
if ((!message) || (message->action != message_HELP_REQUEST))
return;
/* remember the time of the request so we can track them */
xos_read_monotonic_time(&help_time);
/* set up our state */
message_token[0] = 0x00;
message_data = (help_full_message_request *)message;
window = message_data->w;
icon = message_data->i;
/* do the basic window checks */
auto_text = ro_gui_wimp_event_get_help_prefix(window);
if (auto_text != NULL) {
auto_suffix = ro_gui_wimp_event_get_help_suffix(window, icon,
&message_data->pos, message_data->buttons);
if (auto_suffix == NULL)
sprintf(message_token, "%s%i", auto_text, (int)icon);
else
sprintf(message_token, "%s%s", auto_text, auto_suffix);
} else if (window == wimp_ICON_BAR)
sprintf(message_token, "HelpIconbar");
else if (ro_gui_hotlist_check_window(message->data.data_xfer.w)) {
i = ro_treeview_get_help(message_data);
sprintf(message_token,
(i >= 0) ? "HelpTree%i" :"HelpHotlist%i", i);
} else if (ro_gui_global_history_check_window(
message->data.data_xfer.w)) {
i = ro_treeview_get_help(message_data);
sprintf(message_token,
(i >= 0) ? "HelpTree%i" :"HelpGHistory%i", i);
} else if (ro_gui_cookies_check_window(message->data.data_xfer.w)) {
i = ro_treeview_get_help(message_data);
sprintf(message_token,
(i >= 0) ? "HelpTree%i" :"HelpCookies%i", i);
} else if (ro_gui_window_lookup(window) != NULL)
sprintf(message_token, "HelpBrowser%i", (int)icon);
/* if we've managed to find something so far then we broadcast it */
if (message_token[0]) {
if ((icon >= 0) &&
(ro_gui_get_icon_shaded_state(window, icon)))
strcat(message_token, "g");
ro_gui_interactive_help_broadcast(message,
(char *)message_token);
return;
}
/* if we are not on an icon, we can't be in a menu (which stops
* separators giving help for their parent) so we abort */
if (icon == wimp_ICON_WINDOW)
return;
/* get the current menu tree */
error = xwimp_get_menu_state(wimp_GIVEN_WINDOW_AND_ICON,
&menu_tree, window, icon);
if (error) {
LOG(("xwimp_get_menu_state: 0x%x: %s",
error->errnum, error->errmess));
warn_user("WimpError", error->errmess);
return;
}
if (menu_tree.items[0] == -1)
return;
/* get the menu prefix */
if (ro_gui_iconbar_check_menu(current_menu))
sprintf(message_token, "HelpIconMenu");
else if (ro_gui_window_check_menu(current_menu))
sprintf(message_token, "HelpBrowserMenu");
else if (ro_gui_hotlist_check_menu(current_menu))
sprintf(message_token, "HelpHotlistMenu");
else if (ro_gui_global_history_check_menu(current_menu))
sprintf(message_token, "HelpGHistoryMenu");
else if (ro_gui_cookies_check_menu(current_menu))
sprintf(message_token, "HelpCookiesMenu");
else
return;
/* decode the menu */
index = 0;
test_menu = current_menu;
while (menu_tree.items[index] != -1) {
greyed |= test_menu->entries[menu_tree.items[index]].icon_flags
& wimp_ICON_SHADED;
test_menu = test_menu->entries[menu_tree.items[index]].sub_menu;
if (index == 0)
sprintf(menu_buffer, "%i", menu_tree.items[index]);
else
sprintf(menu_buffer, "-%i", menu_tree.items[index]);
strcat(message_token, menu_buffer);
index++;
}
if (greyed)
strcat(message_token, "g");
ro_gui_interactive_help_broadcast(message, (char *)message_token);
}
/**
* Broadcasts a help reply
*
* \param message the original request message
* \param token the token to look up
*/
static void ro_gui_interactive_help_broadcast(wimp_message *message,
char *token)
{
const char *translated_token;
help_full_message_reply *reply;
char *base_token;
char *local_token;
os_error *error;
utf8_convert_ret err;
/* start off with an empty reply */
reply = (help_full_message_reply *)message;
reply->reply[0] = '\0';
/* check if the message exists */
translated_token = messages_get(token);
if (translated_token == token) {
/* no default help for 'g' suffix */
if (token[strlen(token) - 1] != 'g') {
/* find the base key from the token */
base_token = token;
while (base_token[0] != 0x00) {
if ((base_token[0] == '-') ||
((base_token[0] >= '0') &&
(base_token[0] <= '9')))
base_token[0] = 0x00;
else
++base_token;
}
translated_token = messages_get(token);
}
}
/* copy our message string */
if (translated_token != token) {
/* convert to local encoding */
err = utf8_to_local_encoding(translated_token, 0,
&local_token);
if (err != UTF8_CONVERT_OK) {
/* badenc should never happen */
assert(err != UTF8_CONVERT_BADENC);
/* simply use UTF-8 string */
strncpy(reply->reply, translated_token, 235);
}
else {
strncpy(reply->reply, local_token, 235);
free(local_token);
}
reply->reply[235] = '\0';
}
/* broadcast the help reply */
reply->size = 256;
reply->action = message_HELP_REPLY;
reply->your_ref = reply->my_ref;
error = xwimp_send_message(wimp_USER_MESSAGE, (wimp_message *)reply,
reply->sender);
if (error) {
LOG(("xwimp_send_message: 0x%x: %s",
error->errnum, error->errmess));
warn_user("WimpError", error->errmess);
}
}
/**
* Checks if interactive help is running
*
* \return non-zero if interactive help is available, or 0 if not available
*/
bool ro_gui_interactive_help_available(void)
{
taskmanager_task task;
int context = 0;
os_t time;
os_error *error;
/* generic test: any help request within the last 100cs */
xos_read_monotonic_time(&time);
if ((help_time + 100) > time)
return true;
/* special cases: check known application names */
do {
error = xtaskmanager_enumerate_tasks(context, &task,
sizeof(taskmanager_task), &context, 0);
if (error) {
LOG(("xtaskmanager_enumerate_tasks: 0x%x: %s",
error->errnum, error->errmess));
warn_user("MiscError", error->errmess);
}
/* we can't just use strcmp due to string termination issues */
if (!strncmp(task.name, "Help", 4) &&
(task.name[4] < 32))
return true;
else if (!strncmp(task.name, "Bubble Help", 11) &&
(task.name[11] < 32))
return true;
else if (!strncmp(task.name, "Floating Help", 13) &&
(task.name[13] < 32))
return true;
} while (context >= 0);
return false;
}
/**
* Launches interactive help.
*/
void ro_gui_interactive_help_start(void)
{
char *help_start;
wimp_t task = 0;
os_error *error;
/* don't launch a second copy of anything */
if (ro_gui_interactive_help_available())
return;
/* launch <Help$Start> */
help_start = getenv("Help$Start");
if ((help_start) && (help_start[0])) {
error = xwimp_start_task("<Help$Start>", &task);
if (error) {
LOG(("xwimp_start_tast: 0x%x: %s",
error->errnum, error->errmess));
warn_user("WimpError", error->errmess);
return;
}
}
/* first attempt failed, launch !Help */
if (!task) {
error = xwimp_start_task("Resources:$.Apps.!Help", &task);
if (error) {
LOG(("xwimp_start_tast: 0x%x: %s",
error->errnum, error->errmess));
warn_user("WimpError", error->errmess);
return;
}
}
/* pretend we got a help request straight away */
if (task) {
error = xos_read_monotonic_time(&help_time);
if (error) {
LOG(("xwimp_read_monotonic_time: 0x%x: %s",
error->errnum, error->errmess));
warn_user("WimpError", error->errmess);
}
}
}
|