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 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include <stdio.h>
#include <string.h>
#include <unx/gtk/gtksalmenu.hxx>
#ifdef ENABLE_GMENU_INTEGRATION
#include <unx/gtk/glomenu.h>
struct _GLOMenu
{
GMenuModel parent_instance;
GArray *items;
};
typedef GMenuModelClass GLOMenuClass;
#if HAVE_GCC_PRAGMA_DIAGNOSTIC_SCOPE && HAVE_GCC_PRAGMA_DIAGNOSTIC_MODIFY
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-function"
#endif
G_DEFINE_TYPE (GLOMenu, g_lo_menu, G_TYPE_MENU_MODEL);
#if HAVE_GCC_PRAGMA_DIAGNOSTIC_SCOPE && HAVE_GCC_PRAGMA_DIAGNOSTIC_MODIFY
#pragma GCC diagnostic pop
#endif
struct item
{
GHashTable* attributes; // Item attributes.
GHashTable* links; // Item links.
};
static void
g_lo_menu_struct_item_init (struct item *menu_item)
{
menu_item->attributes = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, (GDestroyNotify) g_variant_unref);
menu_item->links = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_object_unref);
}
/* We treat attribute names the same as GSettings keys:
* - only lowercase ascii, digits and '-'
* - must start with lowercase
* - must not end with '-'
* - no consecutive '-'
* - not longer than 1024 chars
*/
static gboolean
valid_attribute_name (const gchar *name)
{
gint i;
if (!g_ascii_islower (name[0]))
return FALSE;
for (i = 1; name[i]; i++)
{
if (name[i] != '-' &&
!g_ascii_islower (name[i]) &&
!g_ascii_isdigit (name[i]))
return FALSE;
if (name[i] == '-' && name[i + 1] == '-')
return FALSE;
}
if (name[i - 1] == '-')
return FALSE;
if (i > 1024)
return FALSE;
return TRUE;
}
/*
* GLOMenu
*/
static gboolean
g_lo_menu_is_mutable (GMenuModel*)
{
// Menu is always mutable.
return TRUE;
}
static gint
g_lo_menu_get_n_items (GMenuModel *model)
{
g_return_val_if_fail (model != NULL, 0);
GLOMenu *menu = G_LO_MENU (model);
g_return_val_if_fail (menu->items != NULL, 0);
return menu->items->len;
}
gint
g_lo_menu_get_n_items_from_section (GLOMenu *menu,
gint section)
{
g_return_val_if_fail (0 <= section && section < (gint) menu->items->len, 0);
GLOMenu *model = g_lo_menu_get_section (menu, section);
g_return_val_if_fail (model != NULL, 0);
gint length = model->items->len;
g_object_unref (model);
return length;
}
static void
g_lo_menu_get_item_attributes (GMenuModel *model,
gint position,
GHashTable **table)
{
GLOMenu *menu = G_LO_MENU (model);
*table = g_hash_table_ref (g_array_index (menu->items, struct item, position).attributes);
}
static void
g_lo_menu_get_item_links (GMenuModel *model,
gint position,
GHashTable **table)
{
GLOMenu *menu = G_LO_MENU (model);
*table = g_hash_table_ref (g_array_index (menu->items, struct item, position).links);
}
void
g_lo_menu_insert (GLOMenu *menu,
gint position,
const gchar *label)
{
g_lo_menu_insert_section (menu, position, label, NULL);
}
void
g_lo_menu_insert_in_section (GLOMenu *menu,
gint section,
gint position,
const gchar *label)
{
g_return_if_fail (G_IS_LO_MENU (menu));
g_return_if_fail (0 <= section && section < (gint) menu->items->len);
GLOMenu *model = g_lo_menu_get_section (menu, section);
g_return_if_fail (model != NULL);
g_lo_menu_insert (model, position, label);
g_object_unref (model);
}
GLOMenu *
g_lo_menu_new (void)
{
return G_LO_MENU( g_object_new (G_TYPE_LO_MENU, NULL) );
}
void
g_lo_menu_set_attribute_value (GLOMenu *menu,
gint position,
const gchar *attribute,
GVariant *value)
{
g_return_if_fail (G_IS_LO_MENU (menu));
g_return_if_fail (attribute != NULL);
g_return_if_fail (valid_attribute_name (attribute));
if (position >= (gint) menu->items->len)
return;
struct item menu_item = g_array_index (menu->items, struct item, position);
if (value != NULL)
g_hash_table_insert (menu_item.attributes, g_strdup (attribute), g_variant_ref_sink (value));
else
g_hash_table_remove (menu_item.attributes, attribute);
}
GVariant*
g_lo_menu_get_attribute_value_from_item_in_section (GLOMenu *menu,
gint section,
gint position,
const gchar *attribute,
const GVariantType *type)
{
GMenuModel *model = G_MENU_MODEL (g_lo_menu_get_section (menu, section));
g_return_val_if_fail (model != NULL, NULL);
GVariant *value = g_menu_model_get_item_attribute_value (model,
position,
attribute,
type);
g_object_unref (model);
return value;
}
void
g_lo_menu_set_label (GLOMenu *menu,
gint position,
const gchar *label)
{
g_return_if_fail (G_IS_LO_MENU (menu));
GVariant *value;
if (label != NULL)
value = g_variant_new_string (label);
else
value = NULL;
g_lo_menu_set_attribute_value (menu, position, G_MENU_ATTRIBUTE_LABEL, value);
}
void
g_lo_menu_set_label_to_item_in_section (GLOMenu *menu,
gint section,
gint position,
const gchar *label)
{
g_return_if_fail (G_IS_LO_MENU (menu));
GLOMenu *model = g_lo_menu_get_section (menu, section);
g_return_if_fail (model != NULL);
g_lo_menu_set_label (model, position, label);
// Notify the update.
g_menu_model_items_changed (G_MENU_MODEL (model), position, 1, 1);
g_object_unref (model);
}
gchar *
g_lo_menu_get_label_from_item_in_section (GLOMenu *menu,
gint section,
gint position)
{
g_return_val_if_fail (G_IS_LO_MENU (menu), NULL);
GVariant *label_value = g_lo_menu_get_attribute_value_from_item_in_section (menu,
section,
position,
G_MENU_ATTRIBUTE_LABEL,
G_VARIANT_TYPE_STRING);
gchar *label = NULL;
if (label_value)
{
label = g_variant_dup_string (label_value, NULL);
g_variant_unref (label_value);
}
return label;
}
void
g_lo_menu_set_action_and_target_value (GLOMenu *menu,
gint position,
const gchar *action,
GVariant *target_value)
{
g_return_if_fail (G_IS_LO_MENU (menu));
GVariant *action_value;
if (action != NULL)
{
action_value = g_variant_new_string (action);
}
else
{
action_value = NULL;
target_value = NULL;
}
g_lo_menu_set_attribute_value (menu, position, G_MENU_ATTRIBUTE_ACTION, action_value);
g_lo_menu_set_attribute_value (menu, position, G_MENU_ATTRIBUTE_TARGET, target_value);
g_menu_model_items_changed (G_MENU_MODEL (menu), position, 1, 1);
}
void
g_lo_menu_set_action_and_target_value_to_item_in_section (GLOMenu *menu,
gint section,
gint position,
const gchar *command,
GVariant *target_value)
{
g_return_if_fail (G_IS_LO_MENU (menu));
GLOMenu *model = g_lo_menu_get_section (menu, section);
g_return_if_fail (model != NULL);
g_lo_menu_set_action_and_target_value (model, position, command, target_value);
g_object_unref (model);
}
void
g_lo_menu_set_accelerator_to_item_in_section (GLOMenu *menu,
gint section,
gint position,
const gchar *accelerator)
{
g_return_if_fail (G_IS_LO_MENU (menu));
GLOMenu *model = g_lo_menu_get_section (menu, section);
g_return_if_fail (model != NULL);
GVariant *value;
if (accelerator != NULL)
value = g_variant_new_string (accelerator);
else
value = NULL;
g_lo_menu_set_attribute_value (model, position, G_LO_MENU_ATTRIBUTE_ACCELERATOR, value);
// Notify the update.
g_menu_model_items_changed (G_MENU_MODEL (model), position, 1, 1);
g_object_unref (model);
}
gchar *
g_lo_menu_get_accelerator_from_item_in_section (GLOMenu *menu,
gint section,
gint position)
{
g_return_val_if_fail (G_IS_LO_MENU (menu), NULL);
GVariant *accel_value = g_lo_menu_get_attribute_value_from_item_in_section (menu,
section,
position,
G_LO_MENU_ATTRIBUTE_ACCELERATOR,
G_VARIANT_TYPE_STRING);
gchar *accel = NULL;
if (accel_value != NULL)
{
accel = g_variant_dup_string (accel_value, NULL);
g_variant_unref (accel_value);
}
return accel;
}
void
g_lo_menu_set_command_to_item_in_section (GLOMenu *menu,
gint section,
gint position,
const gchar *command)
{
g_return_if_fail (G_IS_LO_MENU (menu));
GLOMenu *model = g_lo_menu_get_section (menu, section);
g_return_if_fail (model != NULL);
GVariant *value;
if (command != NULL)
value = g_variant_new_string (command);
else
value = NULL;
g_lo_menu_set_attribute_value (model, position, G_LO_MENU_ATTRIBUTE_COMMAND, value);
// Notify the update.
g_menu_model_items_changed (G_MENU_MODEL (model), position, 1, 1);
g_object_unref (model);
}
gchar *
g_lo_menu_get_command_from_item_in_section (GLOMenu *menu,
gint section,
gint position)
{
g_return_val_if_fail (G_IS_LO_MENU (menu), NULL);
GVariant *command_value = g_lo_menu_get_attribute_value_from_item_in_section (menu,
section,
position,
G_LO_MENU_ATTRIBUTE_COMMAND,
G_VARIANT_TYPE_STRING);
gchar *command = NULL;
if (command_value != NULL)
{
command = g_variant_dup_string (command_value, NULL);
g_variant_unref (command_value);
}
return command;
}
void
g_lo_menu_set_link (GLOMenu *menu,
gint position,
const gchar *link,
GMenuModel *model)
{
g_return_if_fail (G_IS_LO_MENU (menu));
g_return_if_fail (link != NULL);
g_return_if_fail (valid_attribute_name (link));
if (position < 0 || position >= (gint) menu->items->len)
position = menu->items->len - 1;
struct item menu_item = g_array_index (menu->items, struct item, position);
if (model != NULL)
g_hash_table_insert (menu_item.links, g_strdup (link), g_object_ref (model));
else
g_hash_table_remove (menu_item.links, link);
}
void
g_lo_menu_insert_section (GLOMenu *menu,
gint position,
const gchar *label,
GMenuModel *section)
{
g_return_if_fail (G_IS_LO_MENU (menu));
if (position < 0 || position > (gint) menu->items->len)
position = menu->items->len;
struct item menu_item;
g_lo_menu_struct_item_init(&menu_item);
g_array_insert_val (menu->items, position, menu_item);
g_lo_menu_set_label (menu, position, label);
g_lo_menu_set_link (menu, position, G_MENU_LINK_SECTION, section);
g_menu_model_items_changed (G_MENU_MODEL (menu), position, 0, 1);
}
void
g_lo_menu_new_section (GLOMenu *menu,
gint position,
const gchar *label)
{
GMenuModel *section = G_MENU_MODEL (g_lo_menu_new());
g_lo_menu_insert_section (menu, position, label, section);
g_object_unref (section);
}
GLOMenu *
g_lo_menu_get_section (GLOMenu *menu,
gint section)
{
g_return_val_if_fail (G_IS_LO_MENU (menu), NULL);
return G_LO_MENU (G_MENU_MODEL_CLASS (g_lo_menu_parent_class)
->get_item_link (G_MENU_MODEL (menu), section, G_MENU_LINK_SECTION));
}
void
g_lo_menu_new_submenu_in_item_in_section (GLOMenu *menu,
gint section,
gint position)
{
g_return_if_fail (G_IS_LO_MENU (menu));
g_return_if_fail (0 <= section && section < (gint) menu->items->len);
GLOMenu* model = g_lo_menu_get_section (menu, section);
g_return_if_fail (model != NULL);
if (0 <= position && position < (gint) model->items->len) {
GMenuModel* submenu = G_MENU_MODEL (g_lo_menu_new());
g_lo_menu_set_link (model, position, G_MENU_LINK_SUBMENU, submenu);
g_object_unref (submenu);
g_menu_model_items_changed (G_MENU_MODEL (model), position, 1, 1);
g_object_unref (model);
}
}
void
g_lo_menu_set_submenu_to_item_in_section (GLOMenu *menu,
gint section,
gint position,
GMenuModel *submenu)
{
g_return_if_fail (G_IS_LO_MENU (menu));
g_return_if_fail (0 <= section && section < (gint) menu->items->len);
GLOMenu *model = g_lo_menu_get_section (menu, section);
g_return_if_fail (model != NULL);
g_lo_menu_set_link (model, position, G_MENU_LINK_SUBMENU, submenu);
// Notify the update.
g_menu_model_items_changed (G_MENU_MODEL (model), position, 1, 1);
g_object_unref (model);
}
GLOMenu *
g_lo_menu_get_submenu_from_item_in_section (GLOMenu *menu,
gint section,
gint position)
{
g_return_val_if_fail (G_IS_LO_MENU (menu), NULL);
g_return_val_if_fail (0 <= section && section < (gint) menu->items->len, NULL);
GLOMenu *model = g_lo_menu_get_section (menu, section);
g_return_val_if_fail (model != NULL, NULL);
GLOMenu *submenu = NULL;
if (0 <= position && position < (gint) model->items->len)
submenu = G_LO_MENU (G_MENU_MODEL_CLASS (g_lo_menu_parent_class)
->get_item_link (G_MENU_MODEL (model), position, G_MENU_LINK_SUBMENU));
//submenu = g_menu_model_get_item_link (G_MENU_MODEL (model), position, G_MENU_LINK_SUBMENU);
g_object_unref (model);
return submenu;
}
void
g_lo_menu_set_submenu_action_to_item_in_section (GLOMenu *menu,
gint section,
gint position,
const gchar *action)
{
g_return_if_fail (G_IS_LO_MENU (menu));
GMenuModel *model = G_MENU_MODEL (g_lo_menu_get_section (menu, section));
g_return_if_fail (model != NULL);
GVariant *value;
if (action != NULL)
value = g_variant_new_string (action);
else
value = NULL;
g_lo_menu_set_attribute_value (G_LO_MENU (model), position, G_LO_MENU_ATTRIBUTE_SUBMENU_ACTION, value);
// Notify the update.
g_menu_model_items_changed (model, position, 1, 1);
g_object_unref (model);
}
static void
g_lo_menu_clear_item (struct item *menu_item)
{
if (menu_item->attributes != NULL)
g_hash_table_unref (menu_item->attributes);
if (menu_item->links != NULL)
g_hash_table_unref (menu_item->links);
}
void
g_lo_menu_remove (GLOMenu *menu,
gint position)
{
g_return_if_fail (G_IS_LO_MENU (menu));
g_return_if_fail (0 <= position && position < (gint) menu->items->len);
g_lo_menu_clear_item (&g_array_index (menu->items, struct item, position));
g_array_remove_index (menu->items, position);
g_menu_model_items_changed (G_MENU_MODEL (menu), position, 1, 0);
}
void
g_lo_menu_remove_from_section (GLOMenu *menu,
gint section,
gint position)
{
g_return_if_fail (G_IS_LO_MENU (menu));
g_return_if_fail (0 <= section && section < (gint) menu->items->len);
GLOMenu *model = g_lo_menu_get_section (menu, section);
g_return_if_fail (model != NULL);
g_lo_menu_remove (model, position);
g_object_unref (model);
}
static void
g_lo_menu_finalize (GObject *object)
{
GLOMenu *menu = G_LO_MENU (object);
struct item *items;
gint n_items;
gint i;
n_items = menu->items->len;
items = (struct item *) g_array_free (menu->items, FALSE);
for (i = 0; i < n_items; i++)
g_lo_menu_clear_item (&items[i]);
g_free (items);
G_OBJECT_CLASS (g_lo_menu_parent_class)
->finalize (object);
}
static void
g_lo_menu_init (GLOMenu *menu)
{
menu->items = g_array_new (FALSE, FALSE, sizeof (struct item));
}
static void
g_lo_menu_class_init (GLOMenuClass *klass)
{
GMenuModelClass *model_class = G_MENU_MODEL_CLASS (klass);
GObjectClass *object_class = G_OBJECT_CLASS (klass);
object_class->finalize = g_lo_menu_finalize;
model_class->is_mutable = g_lo_menu_is_mutable;
model_class->get_n_items = g_lo_menu_get_n_items;
model_class->get_item_attributes = g_lo_menu_get_item_attributes;
model_class->get_item_links = g_lo_menu_get_item_links;
}
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|