diff options
author | Alexander Larsson <alexl@redhat.com> | 2006-05-22 17:19:10 +0000 |
---|---|---|
committer | Alexander Larsson <alexl@src.gnome.org> | 2006-05-22 17:19:10 +0000 |
commit | d2cb6c6eb21a1aa341c9555d5950a1b1da66a05a (patch) | |
tree | d3662d2f49fa74394e54fae3b1596ee26a2ca658 /gtk/gtkwin32embedwidget.h | |
parent | fb3eeb868689df25cc8fa56ed8471f1b880bb1c1 (diff) | |
download | gtk+-d2cb6c6eb21a1aa341c9555d5950a1b1da66a05a.tar.gz |
Make sure grab-notify is emitted on toplevels as well as child widgets.
2006-05-22 Alexander Larsson <alexl@redhat.com>
* gtk/gtkmain.c:
Make sure grab-notify is emitted on toplevels as well as
child widgets.
* gtk/Makefile.am:
* gtk/gtkwin32embedwidget.[ch]
Add new widget used for win32 port to embed gtk+
widgets in windows dialog.
* gtk/gtkmarshalers.list:
Add POINTER:VOID
* gtk/gtkprintoperation-private.h:
* gtk/gtkprintoperation.[ch]:
Generic support for custom widgets in print dialog.
* gtk/gtkprintoperation-win32.c:
Implement custom widget support for win32.
* tests/print-editor.c:
Allow setting of font using custom widgets in the print dialog.
Diffstat (limited to 'gtk/gtkwin32embedwidget.h')
-rw-r--r-- | gtk/gtkwin32embedwidget.h | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/gtk/gtkwin32embedwidget.h b/gtk/gtkwin32embedwidget.h new file mode 100644 index 0000000000..87d6d233e2 --- /dev/null +++ b/gtk/gtkwin32embedwidget.h @@ -0,0 +1,75 @@ +/* GTK - The GIMP Toolkit + * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * 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., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + +/* + * Modified by the GTK+ Team and others 1997-2006. See the AUTHORS + * file for a list of people on the GTK+ Team. See the ChangeLog + * files for a list of changes. These files are distributed with + * GTK+ at ftp://ftp.gtk.org/pub/gtk/. + */ + +#ifndef __GTK_WIN32_EMBED_WIDGET_H__ +#define __GTK_WIN32_EMBED_WIDGET_H__ + +#include <gdk/gdk.h> +#include <gtk/gtkwindow.h> +#include "win32/gdkwin32.h" + +G_BEGIN_DECLS + +#define GTK_TYPE_WIN32_EMBED_WIDGET (gtk_win32_embed_widget_get_type ()) +#define GTK_WIN32_EMBED_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_WIN32_EMBED_WIDGET, GtkWin32EmbedWidget)) +#define GTK_WIN32_EMBED_WIDGET_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_WIN32_EMBED_WIDGET, GtkWin32EmbedWidgetClass)) +#define GTK_IS_WIN32_EMBED_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_WIN32_EMBED_WIDGET)) +#define GTK_IS_WIN32_EMBED_WIDGET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_WIN32_EMBED_WIDGET)) +#define GTK_WIN32_EMBED_WIDGET_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_WIN32_EMBED_WIDGET, GtkWin32EmbedWidgetClass)) + + +typedef struct _GtkWin32EmbedWidget GtkWin32EmbedWidget; +typedef struct _GtkWin32EmbedWidgetClass GtkWin32EmbedWidgetClass; + + +struct _GtkWin32EmbedWidget +{ + GtkWindow window; + + GdkWindow *parent_window; + gpointer old_window_procedure; +}; + +struct _GtkWin32EmbedWidgetClass +{ + GtkWindowClass parent_class; + + /* Padding for future expansion */ + void (*_gtk_reserved1) (void); + void (*_gtk_reserved2) (void); + void (*_gtk_reserved3) (void); + void (*_gtk_reserved4) (void); +}; + + +GType gtk_win32_embed_widget_get_type (void) G_GNUC_CONST; +GtkWidget* _gtk_win32_embed_widget_new (GdkNativeWindow parent_id); +BOOL _gtk_win32_embed_widget_dialog_procedure (GtkWin32EmbedWidget *embed_widget, + HWND wnd, UINT message, WPARAM wparam, LPARAM lparam); + + +G_END_DECLS + +#endif /* __GTK_WIN32_EMBED_WIDGET_H__ */ |