-
-
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.
Added GtkNumberUpLayout, GtkPageOrientation, GtkPageSet, GtkPageSetup…
…, GtkPaperSize, GtkPrintDuplex, GtkPrintPages, GtkPrintQuality, GtkPrintSettings and GtkUnit
- Loading branch information
Showing
24 changed files
with
2,179 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
#include "GtkNumberUpLayout.h" | ||
|
||
/** | ||
* Constructor | ||
*/ | ||
GtkNumberUpLayout_::GtkNumberUpLayout_() = default; | ||
|
||
/** | ||
* Destructor | ||
*/ | ||
GtkNumberUpLayout_::~GtkNumberUpLayout_() = default; | ||
|
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,30 @@ | ||
|
||
#ifndef _PHPGTK_GTKNUMBERUPLAYOUT_H_ | ||
#define _PHPGTK_GTKNUMBERUPLAYOUT_H_ | ||
|
||
#include <phpcpp.h> | ||
#include <gtk/gtk.h> | ||
|
||
|
||
/** | ||
* GtkNumberUpLayout_ | ||
* | ||
* https://developer.gnome.org/gtk3/stable/GtkNumberUpLayout.html | ||
*/ | ||
class GtkNumberUpLayout_ : public Php::Base | ||
{ | ||
/** | ||
* Publics | ||
*/ | ||
public: | ||
|
||
/** | ||
* C++ constructor and destructor | ||
*/ | ||
GtkNumberUpLayout_(); | ||
~GtkNumberUpLayout_(); | ||
|
||
|
||
}; | ||
|
||
#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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
#include "GtkPageOrientation.h" | ||
|
||
/** | ||
* Constructor | ||
*/ | ||
GtkPageOrientation_::GtkPageOrientation_() = default; | ||
|
||
/** | ||
* Destructor | ||
*/ | ||
GtkPageOrientation_::~GtkPageOrientation_() = default; | ||
|
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,30 @@ | ||
|
||
#ifndef _PHPGTK_GTKPAGEORIENTATION_H_ | ||
#define _PHPGTK_GTKPAGEORIENTATION_H_ | ||
|
||
#include <phpcpp.h> | ||
#include <gtk/gtk.h> | ||
|
||
|
||
/** | ||
* GtkPageOrientation_ | ||
* | ||
* https://developer.gnome.org/gtk3/stable/GtkPageOrientation.html | ||
*/ | ||
class GtkPageOrientation_ : public Php::Base | ||
{ | ||
/** | ||
* Publics | ||
*/ | ||
public: | ||
|
||
/** | ||
* C++ constructor and destructor | ||
*/ | ||
GtkPageOrientation_(); | ||
~GtkPageOrientation_(); | ||
|
||
|
||
}; | ||
|
||
#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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
#include "GtkPageSet.h" | ||
|
||
/** | ||
* Constructor | ||
*/ | ||
GtkPageSet_::GtkPageSet_() = default; | ||
|
||
/** | ||
* Destructor | ||
*/ | ||
GtkPageSet_::~GtkPageSet_() = default; | ||
|
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,30 @@ | ||
|
||
#ifndef _PHPGTK_GTKPAGESET_H_ | ||
#define _PHPGTK_GTKPAGESET_H_ | ||
|
||
#include <phpcpp.h> | ||
#include <gtk/gtk.h> | ||
|
||
|
||
/** | ||
* GtkPageSet_ | ||
* | ||
* https://developer.gnome.org/gtk3/stable/GtkPageSet.html | ||
*/ | ||
class GtkPageSet_ : public Php::Base | ||
{ | ||
/** | ||
* Publics | ||
*/ | ||
public: | ||
|
||
/** | ||
* C++ constructor and destructor | ||
*/ | ||
GtkPageSet_(); | ||
~GtkPageSet_(); | ||
|
||
|
||
}; | ||
|
||
#endif |
Oops, something went wrong.