scorninpc / php-gtk3

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

fix GtkStyleProvider constants namespace #129

Closed d47081 closed 4 months ago

d47081 commented 4 months ago

NS update for #121

<?php

\Gtk::init();

var_dump(\GtkStyleProvider::PRIORITY_APPLICATION); // int(600)
var_dump(\GtkStyleProvider::PRIORITY_FALLBACK); // int(1)
var_dump(\GtkStyleProvider::PRIORITY_SETTINGS); // int(400)
var_dump(\GtkStyleProvider::PRIORITY_THEME); // int(200)
var_dump(\GtkStyleProvider::PRIORITY_USER); // int(800)

\Gtk::main();

p.s. forgot to disable empty lines filter in vscode - but there is only one line :)