-
Notifications
You must be signed in to change notification settings - Fork 6
/
pango_layout.c
1216 lines (1021 loc) · 42.1 KB
/
pango_layout.c
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
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
+----------------------------------------------------------------------+
| PHP Version 5 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2011 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Michael Maclean <[email protected]> |
| David Marín <[email protected]> |
+----------------------------------------------------------------------+
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "php.h"
#include "php_pango.h"
#include "zend_exceptions.h"
zend_class_entry *pango_ce_pangolayout;
zend_class_entry *pango_ce_pangoalignment;
zend_class_entry *pango_ce_pangowrapmode;
zend_class_entry *pango_ce_pangoellipsizemode;
zend_class_entry *pango_ce_pangofontdescription;
/* {{{ proto PangoLayout::__construct(CairoContext cr)
Creates a PangoLayout based on the CairoContext object */
PHP_METHOD(PangoLayout, __construct)
{
zval *context_zval = NULL;
zend_class_entry *cairo_ce_cairocontext = php_cairo_get_context_ce();
cairo_context_object *context_object;
pango_layout_object *layout_object;
PHP_PANGO_ERROR_HANDLING(TRUE)
if(zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O", &context_zval, cairo_ce_cairocontext) == FAILURE)
{
PHP_PANGO_RESTORE_ERRORS(TRUE)
return;
}
PHP_PANGO_RESTORE_ERRORS(TRUE)
context_object = (cairo_context_object *)zend_object_store_get_object(context_zval TSRMLS_CC);
layout_object = (pango_layout_object *)zend_object_store_get_object(getThis() TSRMLS_CC);
layout_object->layout = pango_cairo_create_layout(context_object->context);
if(layout_object->layout == NULL) {
zend_throw_exception(pango_ce_pangoexception, "Could not create the Pango layout", 0 TSRMLS_CC);
return;
}
/* We may want this later, so reference it and store */
layout_object->cairo_context = context_zval;
Z_ADDREF_P(context_zval);
}
/* }}} */
/* {{{ proto pango_layout_new(CairoContext cr)
Creates a PangoLayout based on the CairoContext object */
PHP_FUNCTION(pango_layout_new)
{
zval *context_zval = NULL;
zend_class_entry *cairo_ce_cairocontext = php_cairo_get_context_ce();
cairo_context_object *context_object;
pango_layout_object *layout_object;
PHP_PANGO_ERROR_HANDLING(TRUE)
if(zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O", &context_zval, cairo_ce_cairocontext) == FAILURE)
{
PHP_PANGO_RESTORE_ERRORS(TRUE)
return;
}
PHP_PANGO_RESTORE_ERRORS(TRUE)
context_object = (cairo_context_object *)zend_object_store_get_object(context_zval TSRMLS_CC);
object_init_ex(return_value, pango_ce_pangolayout);
layout_object = (pango_layout_object *)zend_object_store_get_object(return_value TSRMLS_CC);
layout_object->layout = pango_cairo_create_layout(context_object->context);
if(layout_object->layout == NULL) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not create the Pango layout");
return;
}
/* We may want this later, so reference it and store */
layout_object->cairo_context = context_zval;
Z_ADDREF_P(context_zval);
}
/* }}} */
/* {{{ proto PangoContext PangoLayout::getContext()
proto PangoContext pango_layout_get_context(PangoLayout layout)
Return the PangoContext for the current layout */
PHP_FUNCTION(pango_layout_get_context)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
pango_context_object *context_object;
PangoContext *context;
zend_class_entry *ce;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &layout_zval, pango_ce_pangolayout) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
context = pango_layout_get_context(layout_object->layout);
/* Have we already got the context object and cached it? */
if(layout_object->pango_context) {
zval_dtor(return_value);
*return_value = *layout_object->pango_context;
zval_copy_ctor(return_value);
Z_SET_REFCOUNT_P(return_value, 1);
} else {
/* We haven't already got one, let's make one */
ce = php_pango_get_context_ce();
object_init_ex(return_value, ce);
}
/* Get the context_object and replace the internal context pointer
* with what we fetched (should be the same) */
context_object = (pango_context_object *)zend_object_store_get_object(return_value TSRMLS_CC);
/* if there IS a value in context, destroy it cause we're getting a new one */
if (context_object->context != NULL) {
g_object_unref(context_object->context);
}
/* Grab the context properly */
context_object->context = context;
g_object_ref(context_object->context);
}
/* }}} */
/* {{{ proto void pango_layout_set_text(PangoLayout layout, string text)
proto void PangoLayout::setText(string text)
Sets the text of the layout. */
PHP_FUNCTION(pango_layout_set_text)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
const char *text;
long text_len;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os", &layout_zval, pango_ce_pangolayout, &text, &text_len) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
pango_layout_set_text(layout_object->layout, text, text_len);
}
/* }}} */
/* {{{ proto string pango_layout_get_text(PangoLayout layout)
proto string PangoLayout::getText()
Gets the text currently in the layout */
PHP_FUNCTION(pango_layout_get_text)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
const char *text;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &layout_zval, pango_ce_pangolayout) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
if((text = pango_layout_get_text(layout_object->layout))) {
RETURN_STRING((char *)text, 1);
}
RETURN_FALSE;
}
/* }}} */
/* {{{ proto void pango_layout_set_markup(PangoLayout layout, string markup)
proto void PangoLayout::setMarkup(string markup)
Sets the markup of the layout. */
PHP_FUNCTION(pango_layout_set_markup)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
const char *markup;
long markup_len;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os", &layout_zval, pango_ce_pangolayout, &markup, &markup_len) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
pango_layout_set_markup(layout_object->layout, markup, markup_len);
}
/* {{{ proto void pango_layout_context_changed(PangoLayout layout)
proto void PangoLayout::contextChanged()
Updates the private PangoContext of a PangoLayout to match the current transformation
and target surface of a Cairo context.
NB: PARAMS ARE REVERSED FROM NATIVE PANGO
*/
PHP_FUNCTION(pango_layout_context_changed)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_parameters_none() == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
pango_layout_context_changed(layout_object->layout);
}
/* }}} */
/* }}} */
#if 0
/* Need to work out how to handle multibyte characters here */
/* {{{ proto void pango_layout_set_markup(PangoLayout layout, string markup)
proto void PangoLayout::setText(string markup)
Sets the markup of the layout with accelerator markers. */
PHP_FUNCTION(pango_layout_set_markup_with_accel)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
const char *markup;
const char *accel_marker;
long markup_len = 0, accel_marker_len = 0, first_accel = 0;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Oss", &layout_zval, pango_ce_pangolayout, &markup, &markup_len, &accel_marker, &accel_marker_len) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
if(accel_marker_len > 0) {
pango_layout_set_markup_with_accel(
layout_object->layout, markup, markup_len, accel_marker[0], &first_accel);
} else {
pango_layout_set_markup_with_accel(layout_object->layout, markup, markup_len, 0, &first_accel);
}
RETURN_LONG(first_accel);
}
#endif
/* }}} */
/* {{{ proto void pango_cairo_update_layout(CairoContext cr, PangoLayout layout)
proto void PangoLayout::updateLayout(CairoContext cr)
Updates the private PangoContext of a PangoLayout to match the current transformation
and target surface of a Cairo context.
NB: PARAMS ARE REVERSED FROM NATIVE PANGO
*/
PHP_FUNCTION(pango_cairo_update_layout)
{
zval *layout_zval = NULL, *context_zval = NULL;
pango_layout_object *layout_object;
cairo_context_object *context_object;
zend_class_entry *cairo_ce_cairocontext = php_cairo_get_context_ce();
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O|O", &layout_zval, pango_ce_pangolayout, &context_zval, cairo_ce_cairocontext) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
/* If the user supplies a context, use that, otherwise get the one from the layout */
if(context_zval) {
context_object = (cairo_context_object *)zend_object_store_get_object(context_zval TSRMLS_CC);
} else {
context_object = (cairo_context_object *)zend_object_store_get_object(layout_object->cairo_context TSRMLS_CC);
}
pango_cairo_update_layout(context_object->context, layout_object->layout);
}
/* }}} */
/* {{{ proto void pango_cairo_show_layout(CairoContext cr, PangoLayout layout)
proto void PangoLayout::showLayout(CairoContext cr)
Draws a PangoLayoutLine in the specified cairo context.
NB: PARAMS ARE REVERSED FROM NATIVE PANGO
*/
PHP_FUNCTION(pango_cairo_show_layout)
{
zval *layout_zval = NULL, *context_zval = NULL;
pango_layout_object *layout_object;
cairo_context_object *context_object;
zend_class_entry *cairo_ce_cairocontext = php_cairo_get_context_ce();
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O|O", &layout_zval, pango_ce_pangolayout, &context_zval, cairo_ce_cairocontext) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
/* If the user supplies a context, use that, otherwise get the one from the layout */
if(context_zval) {
context_object = (cairo_context_object *)zend_object_store_get_object(context_zval TSRMLS_CC);
} else {
context_object = (cairo_context_object *)zend_object_store_get_object(layout_object->cairo_context TSRMLS_CC);
}
pango_cairo_show_layout(context_object->context, layout_object->layout);
}
/* }}} */
/* {{{ proto void pango_cairo_layout_path(CairoContext cr, PangoLayout layout)
proto void PangoLayout::layoutPath(CairoContext cr)
Adds the specified text to the current path in the specified cairo context.
NB: PARAMS ARE REVERSED FROM NATIVE PANGO
*/
PHP_FUNCTION(pango_cairo_layout_path)
{
zval *layout_zval = NULL, *context_zval = NULL;
pango_layout_object *layout_object;
cairo_context_object *context_object;
zend_class_entry *cairo_ce_cairocontext = php_cairo_get_context_ce();
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O|O", &layout_zval, pango_ce_pangolayout, &context_zval, cairo_ce_cairocontext) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
/* If the user supplies a context, use that, otherwise get the one from the layout */
if(context_zval) {
context_object = (cairo_context_object *)zend_object_store_get_object(context_zval TSRMLS_CC);
} else {
context_object = (cairo_context_object *)zend_object_store_get_object(layout_object->cairo_context TSRMLS_CC);
}
pango_cairo_layout_path(context_object->context, layout_object->layout);
}
/* }}} */
/* {{{ proto long pango_layout_get_width(PangoLayout layout)
proto long PangoLayout::getWidth()
Gets the width of the layout. */
PHP_FUNCTION(pango_layout_get_width)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
long width;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &layout_zval, pango_ce_pangolayout) == FAILURE)
{
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
if((width = pango_layout_get_width(layout_object->layout))) {
RETURN_LONG(width);
}
RETURN_FALSE;
}
/* }}} */
#ifdef PANGO_VERSION
#if PANGO_VERSION >= PANGO_VERSION_ENCODE(1, 20, 0)
/* {{{ proto long pango_layout_get_height(PangoLayout layout)
proto long PangoLayout::getHeight()
Gets the height of the layout. */
PHP_FUNCTION(pango_layout_get_height)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
long height;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &layout_zval, pango_ce_pangolayout) == FAILURE)
{
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
if((height = pango_layout_get_height(layout_object->layout))) {
RETURN_LONG(height);
}
RETURN_FALSE;
}
/* }}} */
#endif
#endif
/* {{{ proto array pango_layout_get_size(PangoLayout layout)
proto array PangoLayout::getSize()
Gets the size of the layout. */
PHP_FUNCTION(pango_layout_get_size)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
int height = 0, width = 0;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &layout_zval, pango_ce_pangolayout) == FAILURE)
{
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
pango_layout_get_size(layout_object->layout, &width, &height);
array_init(return_value);
add_assoc_long(return_value, "width", width);
add_assoc_long(return_value, "height", height);
}
/* }}} */
/* {{{ proto array pango_layout_get_pixel_size(PangoLayout layout)
proto array PangoLayout::getPixelSize()
Gets the size of layout in pixels */
PHP_FUNCTION(pango_layout_get_pixel_size)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
int height = 0, width = 0;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &layout_zval, pango_ce_pangolayout) == FAILURE)
{
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
pango_layout_get_pixel_size(layout_object->layout, &width, &height);
array_init(return_value);
add_assoc_long(return_value, "width", width);
add_assoc_long(return_value, "height", height);
}
/* }}} */
/* {{{ proto array pango_layout_get_extents(PangoLayout layout)
proto array PangoLayout::getExtents()
Gets the extents of layout in */
PHP_FUNCTION(pango_layout_get_extents)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
PangoRectangle ink;
PangoRectangle logical;
zval *array;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &layout_zval, pango_ce_pangolayout) == FAILURE)
{
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
pango_layout_get_extents(layout_object->layout, &ink, &logical);
array_init(return_value);
ALLOC_INIT_ZVAL(array);
array_init(array);
add_assoc_long(array, "x", ink.x);
add_assoc_long(array, "y", ink.y);
add_assoc_long(array, "width", ink.width);
add_assoc_long(array, "height", ink.height);
add_assoc_zval(return_value, "ink", array);
ALLOC_INIT_ZVAL(array);
array_init(array);
add_assoc_long(array, "x", logical.x);
add_assoc_long(array, "y", logical.y);
add_assoc_long(array, "width", logical.width);
add_assoc_long(array, "height", logical.height);
add_assoc_zval(return_value, "logical", array);
}
/* }}} */
/* {{{ proto array pango_layout_get_pixel_extents(PangoLayout layout)
proto array PangoLayout::getPixelExtents()
Gets the extents of layout in pixels */
PHP_FUNCTION(pango_layout_get_pixel_extents)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
PangoRectangle ink;
PangoRectangle logical;
zval *array;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &layout_zval, pango_ce_pangolayout) == FAILURE)
{
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
pango_layout_get_pixel_extents(layout_object->layout, &ink, &logical);
array_init(return_value);
ALLOC_INIT_ZVAL(array);
array_init(array);
add_assoc_long(array, "x", ink.x);
add_assoc_long(array, "y", ink.y);
add_assoc_long(array, "width", ink.width);
add_assoc_long(array, "height", ink.height);
add_assoc_zval(return_value, "ink", array);
ALLOC_INIT_ZVAL(array);
array_init(array);
add_assoc_long(array, "x", logical.x);
add_assoc_long(array, "y", logical.y);
add_assoc_long(array, "width", logical.width);
add_assoc_long(array, "height", logical.height);
add_assoc_zval(return_value, "logical", array);
}
/* }}} */
/* {{{ proto void pango_layout_set_width(PangoLayout layout, long width)
proto void PangoLayout::setWidth(long width)
Sets the width of the layout. */
PHP_FUNCTION(pango_layout_set_width)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
long width;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", &layout_zval, pango_ce_pangolayout, &width) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
pango_layout_set_width(layout_object->layout, width);
}
/* }}} */
#ifdef PANGO_VERSION
#if PANGO_VERSION >= PANGO_VERSION_ENCODE(1, 20, 0)
/* {{{ proto void pango_layout_set_height(PangoLayout layout, long height)
proto void PangoLayout::setHeight(long height)
Sets the height of the layout. */
PHP_FUNCTION(pango_layout_set_height)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
long height;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", &layout_zval, pango_ce_pangolayout, &height) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
pango_layout_set_height(layout_object->layout, height);
}
/* }}} */
#endif
#endif
/* {{{ proto void pango_layout_set_font_description(PangoLayout layout, PangoFontDescription font_description)
proto void PangoLayout::setFontDescription(PangoFontDescription font_description)
Sets the font_description of the layout. */
PHP_FUNCTION(pango_layout_set_font_description)
{
zval *layout_zval = NULL, *fontdesc_zval = NULL;
pango_layout_object *layout_object;
pango_fontdesc_object *fontdesc_object;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "OO", &layout_zval, pango_ce_pangolayout, &fontdesc_zval, pango_ce_pangofontdescription) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
fontdesc_object = (pango_fontdesc_object *)zend_object_store_get_object(fontdesc_zval TSRMLS_CC);
pango_layout_set_font_description(layout_object->layout, fontdesc_object->fontdesc);
}
/* }}} */
/* {{{ proto PangoFontDescription object pango_layout_get_font_description(PangoLayout layout)
proto PangoFontDescription object PangoLayout::getFontDescription()
Gets the font_description of the layout. */
PHP_FUNCTION(pango_layout_get_font_description)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
pango_fontdesc_object *fontdesc_object = NULL;
const PangoFontDescription *aux = NULL;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &layout_zval, pango_ce_pangolayout) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
object_init_ex(return_value, pango_ce_pangofontdescription);
fontdesc_object = (pango_fontdesc_object *) zend_object_store_get_object(return_value TSRMLS_CC);
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
aux = pango_layout_get_font_description(layout_object->layout);
fontdesc_object->fontdesc = pango_font_description_copy (aux);
}
/* }}} */
/* {{{ proto void pango_layout_set_justify(PangoLayout layout, bool justify)
proto void PangoLayout::setJustify(bool justify)
Sets whether each line should be justified. */
PHP_FUNCTION(pango_layout_set_justify)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
zend_bool justify;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ob", &layout_zval, pango_ce_pangolayout, &justify) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
pango_layout_set_justify(layout_object->layout, justify);
}
/* }}} */
/* {{{ proto bool pango_layout_get_justify(PangoLayout layout)
proto bool PangoLayout::getJustify()
Returns whether text will be justified or not in the current layout */
PHP_FUNCTION(pango_layout_get_justify)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &layout_zval, pango_ce_pangolayout) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
RETURN_BOOL(pango_layout_get_justify(layout_object->layout));
}
/* }}} */
/* {{{ proto void pango_layout_set_alignment(PangoLayout layout, long alignment)
proto void PangoLayout::setAlignment(long alignment)
Sets whether each line should be justified. */
PHP_FUNCTION(pango_layout_set_alignment)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
long alignment;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", &layout_zval, pango_ce_pangolayout, &alignment) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
pango_layout_set_alignment(layout_object->layout, alignment);
}
/* }}} */
/* {{{ proto long pango_layout_get_alignment(PangoLayout layout)
proto long PangoLayout::getAlignment()
Returns whether text will be justified or not in the current layout */
PHP_FUNCTION(pango_layout_get_alignment)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &layout_zval, pango_ce_pangolayout) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
RETURN_LONG(pango_layout_get_alignment(layout_object->layout));
}
/* }}} */
/* {{{ proto void pango_layout_set_wrap(PangoLayout layout, long wrap)
proto void PangoLayout::setWrap(long wrap)
Sets how each line should be wrapped. */
PHP_FUNCTION(pango_layout_set_wrap)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
long wrap;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", &layout_zval, pango_ce_pangolayout, &wrap) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
pango_layout_set_wrap(layout_object->layout, wrap);
}
/* }}} */
/* {{{ proto long pango_layout_get_wrap(PangoLayout layout)
proto long PangoLayout::getWrap()
Returns how text will be wrapped or not in the current layout */
PHP_FUNCTION(pango_layout_get_wrap)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &layout_zval, pango_ce_pangolayout) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
RETURN_LONG(pango_layout_get_wrap(layout_object->layout));
}
/* }}} */
#ifdef PANGO_VERSION
#if PANGO_VERSION >= PANGO_VERSION_ENCODE(1, 20, 0)
/* {{{ proto bool pango_layout_is_wrapped(PangoLayout layout)
proto bool PangoLayout::isWrapped()
Returns how text will be wrapped or not in the current layout */
PHP_FUNCTION(pango_layout_is_wrapped)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &layout_zval, pango_ce_pangolayout) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
RETURN_BOOL(pango_layout_is_wrapped(layout_object->layout));
}
/* }}} */
#endif
#endif
/* {{{ proto void pango_layout_set_indent(PangoLayout layout, long indent)
proto void PangoLayout::setWrap(long indent)
Sets how far each paragraph should be indented. */
PHP_FUNCTION(pango_layout_set_indent)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
long indent;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", &layout_zval, pango_ce_pangolayout, &indent) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
pango_layout_set_indent(layout_object->layout, indent);
}
/* }}} */
/* {{{ proto long pango_layout_get_indent(PangoLayout layout)
proto long PangoLayout::getIndent()
Returns how text will be indentped or not in the current layout */
PHP_FUNCTION(pango_layout_get_indent)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &layout_zval, pango_ce_pangolayout) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
RETURN_LONG(pango_layout_get_indent(layout_object->layout));
}
/* }}} */
/* {{{ proto void pango_layout_set_spacing(PangoLayout layout, long spacing)
proto void PangoLayout::setWrap(long spacing)
Sets the line spacing for the paragraph */
PHP_FUNCTION(pango_layout_set_spacing)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
long spacing;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", &layout_zval, pango_ce_pangolayout, &spacing) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
pango_layout_set_spacing(layout_object->layout, spacing);
}
/* }}} */
/* {{{ proto long pango_layout_get_spacing(PangoLayout layout)
proto long PangoLayout::getWrap()
Returns the spacing for the current layout */
PHP_FUNCTION(pango_layout_get_spacing)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &layout_zval, pango_ce_pangolayout) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
RETURN_LONG(pango_layout_get_spacing(layout_object->layout));
}
/* }}} */
/* {{{ proto void pango_layout_set_ellipsize(PangoLayout layout, long ellipsize)
proto void PangoLayout::setEllipsize(long ellipsize)
Sets the ellipsize mode for the layout */
PHP_FUNCTION(pango_layout_set_ellipsize)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
long ellipsize;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", &layout_zval, pango_ce_pangolayout, &ellipsize) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
pango_layout_set_ellipsize(layout_object->layout, ellipsize);
}
/* }}} */
/* {{{ proto long pango_layout_get_ellipsize(PangoLayout layout)
proto long PangoLayout::getEllipsize()
Returns the ellipsize for the current layout */
PHP_FUNCTION(pango_layout_get_ellipsize)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &layout_zval, pango_ce_pangolayout) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
RETURN_LONG(pango_layout_get_ellipsize(layout_object->layout));
}
/* }}} */
#ifdef PANGO_VERSION
#if PANGO_VERSION >= PANGO_VERSION_ENCODE(1, 20, 0)
/* {{{ proto bool pango_layout_is_ellipsized(PangoLayout layout)
proto bool PangoLayout::isEllipsized()
Returns the ellipsize for the current layout */
PHP_FUNCTION(pango_layout_is_ellipsized)
{
zval *layout_zval = NULL;
pango_layout_object *layout_object;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &layout_zval, pango_ce_pangolayout) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
RETURN_BOOL(pango_layout_is_ellipsized(layout_object->layout));
}
/* }}} */
#endif
#endif
/* {{{ proto array pango_layout_get_lines(PangoLayout layout)
proto array PangoLayout::getLines()
Returns an array of PangoLayoutLines representing each line of the layout */
PHP_FUNCTION(pango_layout_get_lines)
{
zval *layout_zval = NULL, *elem = NULL;
pango_layout_object *layout_object;
GSList *lines, *iter;
zend_class_entry *layoutline_ce;
PHP_PANGO_ERROR_HANDLING(FALSE)
if(zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &layout_zval, pango_ce_pangolayout) == FAILURE) {
PHP_PANGO_RESTORE_ERRORS(FALSE)
return;
}
PHP_PANGO_RESTORE_ERRORS(FALSE)
layout_object = (pango_layout_object *)zend_object_store_get_object(layout_zval TSRMLS_CC);
lines = pango_layout_get_lines(layout_object->layout);
layoutline_ce = php_pango_get_layoutline_ce();
array_init(return_value);
for(iter = lines; iter != NULL; iter = iter->next) {
elem = php_pango_make_layoutline_zval((PangoLayoutLine *)iter->data, layout_zval TSRMLS_CC);
add_next_index_zval(return_value, elem);
}
}