We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have an idea to share libgtk-dev API to PHP application using extension written in Zephir-lang.
libgtk-dev
Here is few implementations for PHP-CPP: PHP-GTK3, PHP-GTK4
For example, PHP GtkSeparator constructor require one argument, format and pass it to gtk_separator_new pointer:
gtk_separator_new
#include "GtkSeparator.h" GtkSeparator_::GtkSeparator_() = default; GtkSeparator_::~GtkSeparator_() = default; void GtkSeparator_::__construct(Php::Parameters ¶meters) { int porientation = parameters[0]; GtkOrientation orientation = (GtkOrientation) porientation; instance = (gpointer *)gtk_separator_new(orientation); }
If that's possible, can somebody share some examples or links to documentation? Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have an idea to share
libgtk-dev
API to PHP application using extension written in Zephir-lang.Here is few implementations for PHP-CPP: PHP-GTK3, PHP-GTK4
For example, PHP GtkSeparator constructor require one argument, format and pass it to
gtk_separator_new
pointer:If that's possible, can somebody share some examples or links to documentation?
Thanks!
The text was updated successfully, but these errors were encountered: