Skip to content

Commit

Permalink
Added GtkNumberUpLayout, GtkPageOrientation, GtkPageSet, GtkPageSetup…
Browse files Browse the repository at this point in the history
…, GtkPaperSize, GtkPrintDuplex, GtkPrintPages, GtkPrintQuality, GtkPrintSettings and GtkUnit
  • Loading branch information
scorninpc committed Jun 20, 2019
1 parent 3f20d10 commit b9f18ca
Show file tree
Hide file tree
Showing 24 changed files with 2,179 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Objects.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ _GObject
│ │ │ │ │ │ ├── #GtkColorChooserDialog
│ │ │ │ │ │ ├── %GtkColorSelectionDialog (falta gtk_color_chooser_add_palette)
│ │ │ │ │ │ ├── *GtkFileChooserDialog
│ │ │ │ │ │ ├── GtkFontChooserDialog
│ │ │ │ │ │ ├── GtkFontSelectionDialog
│ │ │ │ │ │ ├── *GtkFontChooserDialog
│ │ │ │ │ │ ├── %GtkFontSelectionDialog
│ │ │ │ │ │ ├── *GtkMessageDialog
│ │ │ │ │ │ ├── GtkPageSetupUnixDialog
│ │ │ │ │ │ ├── ??GtkPageSetupUnixDialog??
│ │ │ │ │ │ ├── GtkPrintUnixDialog
│ │ │ │ │ │ ╰── GtkRecentChooserDialog
│ │ │ │ │ ├── GtkApplicationWindow
Expand Down Expand Up @@ -201,12 +201,12 @@ _GObject
│ ╰── GtkMountOperation
├── GEmblemedIcon
│ ╰── GtkNumerableIcon
├── GtkPageSetup
├── #GtkPageSetup
├── GtkPrinter
├── GtkPrintContext
├── GtkPrintJob
├── GtkPrintOperation
├── GtkPrintSettings
├── #GtkPrintSettings
├── GtkRcStyle
├── GtkRecentManager
├── GtkSettings
Expand Down Expand Up @@ -250,7 +250,7 @@ _GObject
├── GtkRecentChooser
╰── GtkToolShell
GBoxed
├── GtkPaperSize
├── *GtkPaperSize
├── *GtkTextIter
├── GtkSelectionData
├── #GtkRequisition
Expand Down
216 changes: 215 additions & 1 deletion main.cpp

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions main.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,20 @@
#include "src/GtkColorChooserDialog.h"
#include "src/GtkFontChooserDialog.h"

// #include "src/GtkPageSetupUnixDialog.h"
#include "src/GtkPrintSettings.h"

#include "src/GtkPageOrientation.h"
#include "src/GtkPrintDuplex.h"
#include "src/GtkPrintQuality.h"
#include "src/GtkNumberUpLayout.h"
#include "src/GtkPrintPages.h"
#include "src/GtkPageSet.h"
#include "src/GtkUnit.h"

#include "src/GtkPaperSize.h"
#include "src/GtkPageSetup.h"

#include "src/GtkFileChooser.h"
#include "src/GtkFileChooserDialog.h"
#include "src/GtkFileChooserAction.h"
Expand Down
13 changes: 13 additions & 0 deletions src/GtkNumberUpLayout.cpp
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;

30 changes: 30 additions & 0 deletions src/GtkNumberUpLayout.h
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
13 changes: 13 additions & 0 deletions src/GtkPageOrientation.cpp
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;

30 changes: 30 additions & 0 deletions src/GtkPageOrientation.h
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
13 changes: 13 additions & 0 deletions src/GtkPageSet.cpp
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;

30 changes: 30 additions & 0 deletions src/GtkPageSet.h
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
Loading

0 comments on commit b9f18ca

Please sign in to comment.