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 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721
|
/* this file is part of papers, a gnome document viewer
*
* Copyright (C) 2009 Carlos Garcia Campos
* Copyright (C) 2005 Red Hat, Inc
*
* Papers 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; either version 2 of the License, or
* (at your option) any later version.
*
* Papers 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "pps-document-model.h"
#include "pps-view-marshal.h"
#include "pps-view-type-builtins.h"
struct _PpsDocumentModel {
GObject base;
PpsDocument *document;
gint n_pages;
gint page;
gint rotation;
gdouble scale;
PpsSizingMode sizing_mode;
PpsPageLayout page_layout;
guint continuous : 1;
guint dual_page_odd_left : 1;
guint rtl : 1;
guint inverted_colors : 1;
gdouble max_scale;
gdouble min_scale;
PpsAnnotationEditingState annotation_editing;
};
enum {
PROP_0,
PROP_DOCUMENT,
PROP_PAGE,
PROP_ROTATION,
PROP_INVERTED_COLORS,
PROP_SCALE,
PROP_SIZING_MODE,
PROP_CONTINUOUS,
PROP_DUAL_PAGE_ODD_LEFT,
PROP_RTL,
PROP_MIN_SCALE,
PROP_MAX_SCALE,
PROP_PAGE_LAYOUT,
PROP_ANNOTATION_EDITING_STATE
};
enum {
PAGE_CHANGED,
N_SIGNALS
};
static guint signals[N_SIGNALS] = { 0 };
G_DEFINE_TYPE (PpsDocumentModel, pps_document_model, G_TYPE_OBJECT)
#define DEFAULT_MIN_SCALE 0.25
#define DEFAULT_MAX_SCALE 5.0
static void
pps_document_model_finalize (GObject *object)
{
PpsDocumentModel *model = PPS_DOCUMENT_MODEL (object);
g_clear_object (&model->document);
G_OBJECT_CLASS (pps_document_model_parent_class)->finalize (object);
}
static void
pps_document_model_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
PpsDocumentModel *model = PPS_DOCUMENT_MODEL (object);
switch (prop_id) {
case PROP_DOCUMENT:
pps_document_model_set_document (model, (PpsDocument *) g_value_get_object (value));
break;
case PROP_PAGE:
pps_document_model_set_page (model, g_value_get_int (value));
break;
case PROP_ROTATION:
pps_document_model_set_rotation (model, g_value_get_int (value));
break;
case PROP_INVERTED_COLORS:
pps_document_model_set_inverted_colors (model, g_value_get_boolean (value));
break;
case PROP_SCALE:
pps_document_model_set_scale (model, g_value_get_double (value));
break;
case PROP_MIN_SCALE:
pps_document_model_set_min_scale (model, g_value_get_double (value));
break;
case PROP_MAX_SCALE:
pps_document_model_set_max_scale (model, g_value_get_double (value));
break;
case PROP_SIZING_MODE:
pps_document_model_set_sizing_mode (model, g_value_get_enum (value));
break;
case PROP_CONTINUOUS:
pps_document_model_set_continuous (model, g_value_get_boolean (value));
break;
case PROP_PAGE_LAYOUT:
pps_document_model_set_page_layout (model, g_value_get_enum (value));
break;
case PROP_DUAL_PAGE_ODD_LEFT:
pps_document_model_set_dual_page_odd_pages_left (model, g_value_get_boolean (value));
break;
case PROP_RTL:
pps_document_model_set_rtl (model, g_value_get_boolean (value));
break;
case PROP_ANNOTATION_EDITING_STATE:
pps_document_model_set_annotation_editing_state (model, g_value_get_flags (value));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
}
}
static void
pps_document_model_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
PpsDocumentModel *model = PPS_DOCUMENT_MODEL (object);
switch (prop_id) {
case PROP_DOCUMENT:
g_value_set_object (value, model->document);
break;
case PROP_PAGE:
g_value_set_int (value, model->page);
break;
case PROP_ROTATION:
g_value_set_int (value, model->rotation);
break;
case PROP_INVERTED_COLORS:
g_value_set_boolean (value, model->inverted_colors);
break;
case PROP_SCALE:
g_value_set_double (value, model->scale);
break;
case PROP_MIN_SCALE:
g_value_set_double (value, model->min_scale);
break;
case PROP_MAX_SCALE:
g_value_set_double (value, model->max_scale);
break;
case PROP_SIZING_MODE:
g_value_set_enum (value, model->sizing_mode);
break;
case PROP_CONTINUOUS:
g_value_set_boolean (value, pps_document_model_get_continuous (model));
break;
case PROP_PAGE_LAYOUT:
g_value_set_enum (value, model->page_layout);
break;
case PROP_DUAL_PAGE_ODD_LEFT:
g_value_set_boolean (value, pps_document_model_get_dual_page_odd_pages_left (model));
break;
case PROP_RTL:
g_value_set_boolean (value, pps_document_model_get_rtl (model));
break;
case PROP_ANNOTATION_EDITING_STATE:
g_value_set_flags (value, model->annotation_editing);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
}
}
static void
pps_document_model_class_init (PpsDocumentModelClass *klass)
{
GObjectClass *g_object_class = G_OBJECT_CLASS (klass);
g_object_class->get_property = pps_document_model_get_property;
g_object_class->set_property = pps_document_model_set_property;
g_object_class->finalize = pps_document_model_finalize;
/* Properties */
g_object_class_install_property (g_object_class,
PROP_DOCUMENT,
g_param_spec_object ("document",
"Document",
"The current document",
PPS_TYPE_DOCUMENT,
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS));
g_object_class_install_property (g_object_class,
PROP_PAGE,
g_param_spec_int ("page",
"Page",
"Current page",
-1, G_MAXINT, -1,
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS));
g_object_class_install_property (g_object_class,
PROP_ROTATION,
g_param_spec_int ("rotation",
"Rotation",
"Current rotation angle",
0, 360, 0,
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS));
g_object_class_install_property (g_object_class,
PROP_INVERTED_COLORS,
g_param_spec_boolean ("inverted-colors",
"Inverted Colors",
"Whether document is displayed with inverted colors",
FALSE,
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS));
g_object_class_install_property (g_object_class,
PROP_SCALE,
g_param_spec_double ("scale",
"Scale",
"Current scale factor",
0., G_MAXDOUBLE, 1.,
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS));
g_object_class_install_property (g_object_class,
PROP_MIN_SCALE,
g_param_spec_double ("min-scale",
"Minimum Scale",
"Minimum scale factor",
0., G_MAXDOUBLE, DEFAULT_MIN_SCALE,
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS));
g_object_class_install_property (g_object_class,
PROP_MAX_SCALE,
g_param_spec_double ("max-scale",
"Maximum Scale",
"Maximum scale factor",
0., G_MAXDOUBLE, DEFAULT_MAX_SCALE,
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS));
g_object_class_install_property (g_object_class,
PROP_SIZING_MODE,
g_param_spec_enum ("sizing-mode",
"Sizing Mode",
"Current sizing mode",
PPS_TYPE_SIZING_MODE,
PPS_SIZING_FIT_WIDTH,
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS));
g_object_class_install_property (g_object_class,
PROP_PAGE_LAYOUT,
g_param_spec_enum ("page-layout",
"Page Layout",
"Current page layout",
PPS_TYPE_PAGE_LAYOUT,
PPS_PAGE_LAYOUT_SINGLE,
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS));
g_object_class_install_property (g_object_class,
PROP_CONTINUOUS,
g_param_spec_boolean ("continuous",
"Continuous",
"Whether document is displayed in continuous mode",
TRUE,
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS));
g_object_class_install_property (g_object_class,
PROP_DUAL_PAGE_ODD_LEFT,
g_param_spec_boolean ("dual-odd-left",
"Odd Pages Left",
"Whether odd pages are displayed on left side in dual mode",
FALSE,
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS));
g_object_class_install_property (g_object_class,
PROP_RTL,
g_param_spec_boolean ("rtl",
"Right to Left",
"Whether the document is written from right to left",
FALSE,
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS));
g_object_class_install_property (g_object_class,
PROP_ANNOTATION_EDITING_STATE,
g_param_spec_flags ("annotation-editing-state",
"Annotation Editing State",
"Whether the document is being 'inked'",
PPS_TYPE_ANNOTATION_EDITING_STATE, PPS_ANNOTATION_EDITING_STATE_NONE,
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS));
/* Signals */
signals[PAGE_CHANGED] =
g_signal_new ("page-changed",
PPS_TYPE_DOCUMENT_MODEL,
G_SIGNAL_RUN_LAST,
0,
NULL, NULL,
pps_view_marshal_VOID__INT_INT,
G_TYPE_NONE, 2,
G_TYPE_INT, G_TYPE_INT);
}
static void
pps_document_model_init (PpsDocumentModel *model)
{
model->page = -1;
model->scale = 1.;
model->sizing_mode = PPS_SIZING_FIT_WIDTH;
model->continuous = TRUE;
model->inverted_colors = FALSE;
model->min_scale = DEFAULT_MIN_SCALE;
model->max_scale = DEFAULT_MAX_SCALE;
}
PpsDocumentModel *
pps_document_model_new (void)
{
return g_object_new (PPS_TYPE_DOCUMENT_MODEL, NULL);
}
PpsDocumentModel *
pps_document_model_new_with_document (PpsDocument *document)
{
g_return_val_if_fail (PPS_IS_DOCUMENT (document), NULL);
return g_object_new (PPS_TYPE_DOCUMENT_MODEL, "document", document, NULL);
}
/**
* pps_document_model_set_document:
* @model: a #PpsDocumentModel
* @document: (nullable): a #PpsDocumentModel
*
* Set the document.
*/
void
pps_document_model_set_document (PpsDocumentModel *model,
PpsDocument *document)
{
g_return_if_fail (PPS_IS_DOCUMENT_MODEL (model));
if (!g_set_object (&model->document, document))
return;
g_object_freeze_notify (G_OBJECT (model));
model->n_pages = pps_document_get_n_pages (document);
pps_document_model_set_page (model, CLAMP (model->page, 0,
model->n_pages - 1));
g_object_notify (G_OBJECT (model), "document");
g_object_thaw_notify (G_OBJECT (model));
}
/**
* pps_document_model_get_document:
* @model: a #PpsDocumentModel
*
* Returns the #PpsDocument referenced by the model.
*
* Returns: (transfer none): a #PpsDocument
*/
PpsDocument *
pps_document_model_get_document (PpsDocumentModel *model)
{
g_return_val_if_fail (PPS_IS_DOCUMENT_MODEL (model), NULL);
return model->document;
}
void
pps_document_model_set_page (PpsDocumentModel *model,
gint page)
{
gint old_page;
g_return_if_fail (PPS_IS_DOCUMENT_MODEL (model));
if (model->page == page)
return;
if (page < 0 || (model->document && page >= model->n_pages))
return;
old_page = model->page;
model->page = page;
g_signal_emit (model, signals[PAGE_CHANGED], 0, old_page, page);
g_object_notify (G_OBJECT (model), "page");
}
void
pps_document_model_set_page_by_label (PpsDocumentModel *model,
const gchar *page_label)
{
gint page;
g_return_if_fail (PPS_IS_DOCUMENT_MODEL (model));
g_return_if_fail (model->document != NULL);
if (pps_document_find_page_by_label (model->document, page_label, &page))
pps_document_model_set_page (model, page);
}
gint
pps_document_model_get_page (PpsDocumentModel *model)
{
g_return_val_if_fail (PPS_IS_DOCUMENT_MODEL (model), -1);
return model->page;
}
void
pps_document_model_set_scale (PpsDocumentModel *model,
gdouble scale)
{
g_return_if_fail (PPS_IS_DOCUMENT_MODEL (model));
scale = CLAMP (scale,
model->sizing_mode == PPS_SIZING_FREE ? model->min_scale : 0, model->max_scale);
if (scale == model->scale)
return;
model->scale = scale;
g_object_notify (G_OBJECT (model), "scale");
}
gdouble
pps_document_model_get_scale (PpsDocumentModel *model)
{
g_return_val_if_fail (PPS_IS_DOCUMENT_MODEL (model), 1.0);
return model->scale;
}
void
pps_document_model_set_max_scale (PpsDocumentModel *model,
gdouble max_scale)
{
g_return_if_fail (PPS_IS_DOCUMENT_MODEL (model));
if (max_scale == model->max_scale)
return;
model->max_scale = max_scale;
if (model->scale > max_scale)
pps_document_model_set_scale (model, max_scale);
g_object_notify (G_OBJECT (model), "max-scale");
}
gdouble
pps_document_model_get_max_scale (PpsDocumentModel *model)
{
g_return_val_if_fail (PPS_IS_DOCUMENT_MODEL (model), 1.0);
return model->max_scale;
}
void
pps_document_model_set_min_scale (PpsDocumentModel *model,
gdouble min_scale)
{
g_return_if_fail (PPS_IS_DOCUMENT_MODEL (model));
if (min_scale == model->min_scale)
return;
model->min_scale = min_scale;
if (model->scale < min_scale)
pps_document_model_set_scale (model, min_scale);
g_object_notify (G_OBJECT (model), "min-scale");
}
gdouble
pps_document_model_get_min_scale (PpsDocumentModel *model)
{
g_return_val_if_fail (PPS_IS_DOCUMENT_MODEL (model), 0.);
return model->min_scale;
}
void
pps_document_model_set_sizing_mode (PpsDocumentModel *model,
PpsSizingMode mode)
{
g_return_if_fail (PPS_IS_DOCUMENT_MODEL (model));
if (mode == model->sizing_mode)
return;
model->sizing_mode = mode;
g_object_notify (G_OBJECT (model), "sizing-mode");
}
PpsSizingMode
pps_document_model_get_sizing_mode (PpsDocumentModel *model)
{
g_return_val_if_fail (PPS_IS_DOCUMENT_MODEL (model), PPS_SIZING_FIT_WIDTH);
return model->sizing_mode;
}
/**
* pps_document_model_set_page_layout:
* @model: a #PpsDocumentModel
* @layout: a #PpsPageLayout
*
* Sets the document model's page layout to @layout.
*/
void
pps_document_model_set_page_layout (PpsDocumentModel *model,
PpsPageLayout layout)
{
g_return_if_fail (PPS_IS_DOCUMENT_MODEL (model));
if (layout == model->page_layout)
return;
model->page_layout = layout;
g_object_notify (G_OBJECT (model), "page-layout");
}
/**
* pps_document_model_get_page_layout:
* @model: a #PpsDocumentModel
*
* Returns: the document model's page layout
*/
PpsPageLayout
pps_document_model_get_page_layout (PpsDocumentModel *model)
{
g_return_val_if_fail (PPS_IS_DOCUMENT_MODEL (model), PPS_PAGE_LAYOUT_SINGLE);
return model->page_layout;
}
void
pps_document_model_set_rotation (PpsDocumentModel *model,
gint rotation)
{
g_return_if_fail (PPS_IS_DOCUMENT_MODEL (model));
if (rotation >= 360)
rotation -= 360;
else if (rotation < 0)
rotation += 360;
if (rotation == model->rotation)
return;
model->rotation = rotation;
g_object_notify (G_OBJECT (model), "rotation");
}
gint
pps_document_model_get_rotation (PpsDocumentModel *model)
{
g_return_val_if_fail (PPS_IS_DOCUMENT_MODEL (model), 0);
return model->rotation;
}
void
pps_document_model_set_inverted_colors (PpsDocumentModel *model,
gboolean inverted_colors)
{
g_return_if_fail (PPS_IS_DOCUMENT_MODEL (model));
if (inverted_colors == model->inverted_colors)
return;
model->inverted_colors = inverted_colors;
g_object_notify (G_OBJECT (model), "inverted-colors");
}
gboolean
pps_document_model_get_inverted_colors (PpsDocumentModel *model)
{
g_return_val_if_fail (PPS_IS_DOCUMENT_MODEL (model), FALSE);
return model->inverted_colors;
}
void
pps_document_model_set_continuous (PpsDocumentModel *model,
gboolean continuous)
{
g_return_if_fail (PPS_IS_DOCUMENT_MODEL (model));
continuous = continuous != FALSE;
if (continuous == model->continuous)
return;
model->continuous = continuous;
g_object_notify (G_OBJECT (model), "continuous");
}
gboolean
pps_document_model_get_continuous (PpsDocumentModel *model)
{
g_return_val_if_fail (PPS_IS_DOCUMENT_MODEL (model), TRUE);
return model->continuous;
}
void
pps_document_model_set_dual_page_odd_pages_left (PpsDocumentModel *model,
gboolean odd_left)
{
g_return_if_fail (PPS_IS_DOCUMENT_MODEL (model));
odd_left = odd_left != FALSE;
if (odd_left == model->dual_page_odd_left)
return;
model->dual_page_odd_left = odd_left;
g_object_notify (G_OBJECT (model), "dual-odd-left");
}
gboolean
pps_document_model_get_dual_page_odd_pages_left (PpsDocumentModel *model)
{
g_return_val_if_fail (PPS_IS_DOCUMENT_MODEL (model), FALSE);
return model->dual_page_odd_left;
}
void
pps_document_model_set_rtl (PpsDocumentModel *model,
gboolean rtl)
{
g_return_if_fail (PPS_IS_DOCUMENT_MODEL (model));
rtl = rtl != FALSE;
if (rtl == model->rtl)
return;
model->rtl = rtl;
g_object_notify (G_OBJECT (model), "rtl");
}
/**
* pps_document_model_set_annotation_editing_state:
* @state: The editing state of annotation
*
* Sets the current editing state. In a [class@View], This implies that editing
* widgets for annotations may be shown and annotations not rendered by the
* backend.
*
* Since: 48.0
*/
void
pps_document_model_set_annotation_editing_state (PpsDocumentModel *model,
PpsAnnotationEditingState state)
{
g_return_if_fail (PPS_IS_DOCUMENT_MODEL (model));
if (state == model->annotation_editing) {
return;
}
model->annotation_editing = state;
g_object_notify (G_OBJECT (model), "annotation-editing-state");
}
/**
* pps_document_model_get_annotation_editing_state:
* @model: a #PpsDocumentModel
*
* Returns the current editing state.
*
* Since: 48.0
*/
PpsAnnotationEditingState
pps_document_model_get_annotation_editing_state (PpsDocumentModel *model)
{
return model->annotation_editing;
}
gboolean
pps_document_model_get_rtl (PpsDocumentModel *model)
{
g_return_val_if_fail (PPS_IS_DOCUMENT_MODEL (model), FALSE);
return model->rtl;
}
|