-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from APS-Services/feat/threads
Added method GObject_::get_data Added method GObject_::set_data Added class GdkThreads Added method GtkNotebook_::prepend_page Added method GtkScrolledWindow_::set_propagate_natural_height Added method GtkScrolledWindow_::set_max_content_height Added method GtkScrolledWindow_::set_min_content_height
- Loading branch information
Showing
10 changed files
with
150 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
#include "GdkThreads.h" | ||
|
||
|
||
void GdkThreads_::add_idle(Php::Parameters ¶meters) | ||
{ | ||
throw Php::Exception("gdk_threads_add_idle not implemented yet"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
|
||
#ifndef _PHPGTK_GdkTHREADS_H_ | ||
#define _PHPGTK_GdkTHREADS_H_ | ||
|
||
#include <phpcpp.h> | ||
#include <gtk/gtk.h> | ||
#include <gdk/gdk.h> | ||
|
||
/** | ||
* | ||
*/ | ||
class GdkThreads_ : public Php::Base | ||
{ | ||
/** | ||
* Publics | ||
*/ | ||
public: | ||
|
||
/** | ||
* C++ constructor and destructor | ||
*/ | ||
GdkThreads_() = default; | ||
|
||
void add_idle(Php::Parameters ¶meters); | ||
}; | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters