scorninpc / php-gtk3

GTK3 extension for PHP
https://andor.com.br/
GNU Lesser General Public License v3.0
118 stars 13 forks source link

init PangoAttrList #145

Closed d47081 closed 3 months ago

d47081 commented 3 months ago

Initial set for https://docs.gtk.org/Pango/struct.AttrList.html

contains only one method get_attributes drafted (requires PangoAttribute implementation)

<?php

$pangoAttrList = new PangoAttrList; // OK

var_dump(
    $pangoAttrList->get_attributes() // @TODO not implemented exception
);