]> Pileus Git - ~andy/gtk/blobdiff - gtk/gtkprinteroptionwidget.h
entry: Use GtkSelectionWindow for touch text selection
[~andy/gtk] / gtk / gtkprinteroptionwidget.h
index 70ea1557c371303a69808d902ce650d60cb7e2b8..b688cf63303a739473ca6cd5b7dbd1ae9b5f535b 100644 (file)
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef __GTK_PRINTER_OPTION_WIDGET_H__
 #define __GTK_PRINTER_OPTION_WIDGET_H__
 
 #include "gtkprinteroption.h"
-#include "gtkhbox.h"
+#include "gtkbox.h"
 
 G_BEGIN_DECLS
 
@@ -38,26 +36,32 @@ typedef struct GtkPrinterOptionWidgetPrivate   GtkPrinterOptionWidgetPrivate;
 
 struct _GtkPrinterOptionWidget
 {
-  GtkHBox parent_instance;
+  GtkBox parent_instance;
 
   GtkPrinterOptionWidgetPrivate *priv;
 };
 
 struct _GtkPrinterOptionWidgetClass
 {
-  GtkHBoxClass parent_class;
+  GtkBoxClass parent_class;
 
   void (*changed) (GtkPrinterOptionWidget *widget);
+
+  /* Padding for future expansion */
+  void (*_gtk_reserved1) (void);
+  void (*_gtk_reserved2) (void);
+  void (*_gtk_reserved3) (void);
+  void (*_gtk_reserved4) (void);
 };
 
-GType           gtk_printer_option_widget_get_type   (void) G_GNUC_CONST;
+GType       gtk_printer_option_widget_get_type           (void) G_GNUC_CONST;
 
-GtkWidget gtk_printer_option_widget_new                (GtkPrinterOption       *source);
-void        gtk_printer_option_widget_set_source         (GtkPrinterOptionWidget *setting,
-                                                         GtkPrinterOption       *source);
-gboolean    gtk_printer_option_widget_has_external_label (GtkPrinterOptionWidget *setting);
-GtkWidget gtk_printer_option_widget_get_external_label (GtkPrinterOptionWidget *setting);
-const char *gtk_printer_option_widget_get_value          (GtkPrinterOptionWidget *setting);
+GtkWidget   *gtk_printer_option_widget_new                (GtkPrinterOption       *source);
+void         gtk_printer_option_widget_set_source         (GtkPrinterOptionWidget *setting,
+                                                          GtkPrinterOption       *source);
+gboolean     gtk_printer_option_widget_has_external_label (GtkPrinterOptionWidget *setting);
+GtkWidget   *gtk_printer_option_widget_get_external_label (GtkPrinterOptionWidget *setting);
+const gchar *gtk_printer_option_widget_get_value          (GtkPrinterOptionWidget *setting);
 
 G_END_DECLS