2008-07-01 22:57:50 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
1998-02-02 04:56:42 +00:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1998-02-02 04:56:42 +00:00
|
|
|
* 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
|
2000-07-26 11:33:08 +00:00
|
|
|
* Lesser General Public License for more details.
|
1998-02-02 04:56:42 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
1998-04-13 02:02:47 +00:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
1998-02-02 04:56:42 +00:00
|
|
|
*/
|
1999-02-24 07:37:18 +00:00
|
|
|
|
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
1999-02-24 07:37:18 +00:00
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
2008-06-24 10:16:01 +00:00
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
1999-02-24 07:37:18 +00:00
|
|
|
*/
|
|
|
|
|
1998-02-02 04:56:42 +00:00
|
|
|
#ifndef __GTK_PRIVATE_H__
|
|
|
|
#define __GTK_PRIVATE_H__
|
|
|
|
|
|
|
|
#include <gtk/gtkwidget.h>
|
|
|
|
|
2005-03-22 02:14:55 +00:00
|
|
|
G_BEGIN_DECLS
|
1998-02-02 04:56:42 +00:00
|
|
|
|
2010-09-18 23:57:32 +00:00
|
|
|
void _gtk_widget_set_visible_flag (GtkWidget *widget,
|
|
|
|
gboolean visible);
|
|
|
|
gboolean _gtk_widget_get_resize_pending (GtkWidget *widget);
|
|
|
|
void _gtk_widget_set_resize_pending (GtkWidget *widget,
|
|
|
|
gboolean resize_pending);
|
|
|
|
gboolean _gtk_widget_get_in_reparent (GtkWidget *widget);
|
|
|
|
void _gtk_widget_set_in_reparent (GtkWidget *widget,
|
|
|
|
gboolean in_reparent);
|
|
|
|
gboolean _gtk_widget_get_anchored (GtkWidget *widget);
|
|
|
|
void _gtk_widget_set_anchored (GtkWidget *widget,
|
|
|
|
gboolean anchored);
|
|
|
|
gboolean _gtk_widget_get_shadowed (GtkWidget *widget);
|
|
|
|
void _gtk_widget_set_shadowed (GtkWidget *widget,
|
|
|
|
gboolean shadowed);
|
|
|
|
gboolean _gtk_widget_get_alloc_needed (GtkWidget *widget);
|
|
|
|
void _gtk_widget_set_alloc_needed (GtkWidget *widget,
|
|
|
|
gboolean alloc_needed);
|
|
|
|
gboolean _gtk_widget_get_width_request_needed (GtkWidget *widget);
|
|
|
|
void _gtk_widget_set_width_request_needed (GtkWidget *widget,
|
|
|
|
gboolean width_request_needed);
|
|
|
|
gboolean _gtk_widget_get_height_request_needed (GtkWidget *widget);
|
|
|
|
void _gtk_widget_set_height_request_needed (GtkWidget *widget,
|
|
|
|
gboolean height_request_needed);
|
1998-02-02 04:56:42 +00:00
|
|
|
|
Updates.
2001-10-29 Tor Lillqvist <tml@iki.fi>
* README.win32: Updates.
* gtk-zip.sh.in: New file, used to build distribution package for
Windows.
* gdk/gdkglobals.c: Mark gdk_threads_mutex for DLL export when
applicable with GDKVAR.
* gtk/gtk.def: Update.
* gtk/gtkfilesel.c: Include <winsock.h> (if available) for
gethostname().
* gtk/gtkmain.c
* gtk/gtkrc.c: (Win32) Save actual DLL name for later use in DLL
entry function. Avoid hardcoded paths GTK_LIBDIR, GTK_SYSCONFDIR,
GTK_DATA_PREFIX and GTK_LOCALEDIR, instead add functions that call
g_win32_get_package_installation_subdirectory() with the actual
DLL name saved above. Redefine above directory name macros to call
these functions. Remove some ifdefs.
* gtk/maketypes.awk: Output GTKTYPEBUILTINS_VAR (that marks
variable for export on Win32) also to the _vars file.
Changes for autoconfiscated build on Win32, and addition of Win32
backend to the related files:
* configure.in: Like in GLib, set LT_CURRENT_MINUS_AGE for use
when forming DLL name in some files. Set MS_LIB_AVAILABLE is
lib.exe is available. Call AC_LIBTOOL_WIN32_DLL. Set
PLATFORM_WIN32, OS_WIN32 and USE_WIN32 automake conditionals. Add
win32 target, using pangowin32. Don't use the
-export-symbols-regex option on Win32, we use .def files to list
exported symbols. Check <winsock.h> (for gethostname() in
gtkfilesel.c). Enclose nested AC_CHECK_* macros in brackets to
prevent premature m4 expansion.
* acconfig.h: Add HAVE_WINTAB.
* gdk/Makefile.am: Add libgdk-win32-1.3.la target and associated
macros and rules. Use -no-undefined on Win32. Use gdk.def file. If
MS_LIB_AVAILABLE, build MS import library. Install the import
libraries. If HAVE_WINTAB, link with the Wintab library.
* gtk/Makefile.am: Add libgtk-win32-1.3.la target and associated
macros and rules. Use -no-undefined on Win32. Use gtk-win32.def
file. Install import libraries.
2001-10-29 07:06:37 +00:00
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
|
2003-12-14 19:03:02 +00:00
|
|
|
const gchar *_gtk_get_datadir ();
|
Updates.
2001-10-29 Tor Lillqvist <tml@iki.fi>
* README.win32: Updates.
* gtk-zip.sh.in: New file, used to build distribution package for
Windows.
* gdk/gdkglobals.c: Mark gdk_threads_mutex for DLL export when
applicable with GDKVAR.
* gtk/gtk.def: Update.
* gtk/gtkfilesel.c: Include <winsock.h> (if available) for
gethostname().
* gtk/gtkmain.c
* gtk/gtkrc.c: (Win32) Save actual DLL name for later use in DLL
entry function. Avoid hardcoded paths GTK_LIBDIR, GTK_SYSCONFDIR,
GTK_DATA_PREFIX and GTK_LOCALEDIR, instead add functions that call
g_win32_get_package_installation_subdirectory() with the actual
DLL name saved above. Redefine above directory name macros to call
these functions. Remove some ifdefs.
* gtk/maketypes.awk: Output GTKTYPEBUILTINS_VAR (that marks
variable for export on Win32) also to the _vars file.
Changes for autoconfiscated build on Win32, and addition of Win32
backend to the related files:
* configure.in: Like in GLib, set LT_CURRENT_MINUS_AGE for use
when forming DLL name in some files. Set MS_LIB_AVAILABLE is
lib.exe is available. Call AC_LIBTOOL_WIN32_DLL. Set
PLATFORM_WIN32, OS_WIN32 and USE_WIN32 automake conditionals. Add
win32 target, using pangowin32. Don't use the
-export-symbols-regex option on Win32, we use .def files to list
exported symbols. Check <winsock.h> (for gethostname() in
gtkfilesel.c). Enclose nested AC_CHECK_* macros in brackets to
prevent premature m4 expansion.
* acconfig.h: Add HAVE_WINTAB.
* gdk/Makefile.am: Add libgdk-win32-1.3.la target and associated
macros and rules. Use -no-undefined on Win32. Use gdk.def file. If
MS_LIB_AVAILABLE, build MS import library. Install the import
libraries. If HAVE_WINTAB, link with the Wintab library.
* gtk/Makefile.am: Add libgtk-win32-1.3.la target and associated
macros and rules. Use -no-undefined on Win32. Use gtk-win32.def
file. Install import libraries.
2001-10-29 07:06:37 +00:00
|
|
|
const gchar *_gtk_get_libdir ();
|
|
|
|
const gchar *_gtk_get_sysconfdir ();
|
|
|
|
const gchar *_gtk_get_localedir ();
|
|
|
|
const gchar *_gtk_get_data_prefix ();
|
|
|
|
|
2003-12-14 19:03:02 +00:00
|
|
|
#undef GTK_DATADIR
|
|
|
|
#define GTK_DATADIR _gtk_get_datadir ()
|
Updates.
2001-10-29 Tor Lillqvist <tml@iki.fi>
* README.win32: Updates.
* gtk-zip.sh.in: New file, used to build distribution package for
Windows.
* gdk/gdkglobals.c: Mark gdk_threads_mutex for DLL export when
applicable with GDKVAR.
* gtk/gtk.def: Update.
* gtk/gtkfilesel.c: Include <winsock.h> (if available) for
gethostname().
* gtk/gtkmain.c
* gtk/gtkrc.c: (Win32) Save actual DLL name for later use in DLL
entry function. Avoid hardcoded paths GTK_LIBDIR, GTK_SYSCONFDIR,
GTK_DATA_PREFIX and GTK_LOCALEDIR, instead add functions that call
g_win32_get_package_installation_subdirectory() with the actual
DLL name saved above. Redefine above directory name macros to call
these functions. Remove some ifdefs.
* gtk/maketypes.awk: Output GTKTYPEBUILTINS_VAR (that marks
variable for export on Win32) also to the _vars file.
Changes for autoconfiscated build on Win32, and addition of Win32
backend to the related files:
* configure.in: Like in GLib, set LT_CURRENT_MINUS_AGE for use
when forming DLL name in some files. Set MS_LIB_AVAILABLE is
lib.exe is available. Call AC_LIBTOOL_WIN32_DLL. Set
PLATFORM_WIN32, OS_WIN32 and USE_WIN32 automake conditionals. Add
win32 target, using pangowin32. Don't use the
-export-symbols-regex option on Win32, we use .def files to list
exported symbols. Check <winsock.h> (for gethostname() in
gtkfilesel.c). Enclose nested AC_CHECK_* macros in brackets to
prevent premature m4 expansion.
* acconfig.h: Add HAVE_WINTAB.
* gdk/Makefile.am: Add libgdk-win32-1.3.la target and associated
macros and rules. Use -no-undefined on Win32. Use gdk.def file. If
MS_LIB_AVAILABLE, build MS import library. Install the import
libraries. If HAVE_WINTAB, link with the Wintab library.
* gtk/Makefile.am: Add libgtk-win32-1.3.la target and associated
macros and rules. Use -no-undefined on Win32. Use gtk-win32.def
file. Install import libraries.
2001-10-29 07:06:37 +00:00
|
|
|
#undef GTK_LIBDIR
|
|
|
|
#define GTK_LIBDIR _gtk_get_libdir ()
|
|
|
|
#undef GTK_LOCALEDIR
|
|
|
|
#define GTK_LOCALEDIR _gtk_get_localedir ()
|
|
|
|
#undef GTK_SYSCONFDIR
|
|
|
|
#define GTK_SYSCONFDIR _gtk_get_sysconfdir ()
|
|
|
|
#undef GTK_DATA_PREFIX
|
|
|
|
#define GTK_DATA_PREFIX _gtk_get_data_prefix ()
|
|
|
|
|
|
|
|
#endif /* G_OS_WIN32 */
|
|
|
|
|
2002-12-13 23:18:03 +00:00
|
|
|
gboolean _gtk_fnmatch (const char *pattern,
|
2004-06-02 17:46:21 +00:00
|
|
|
const char *string,
|
|
|
|
gboolean no_leading_period);
|
2002-12-13 23:18:03 +00:00
|
|
|
|
2005-03-22 02:14:55 +00:00
|
|
|
#define GTK_PARAM_READABLE G_PARAM_READABLE|G_PARAM_STATIC_NAME|G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB
|
|
|
|
#define GTK_PARAM_WRITABLE G_PARAM_WRITABLE|G_PARAM_STATIC_NAME|G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB
|
|
|
|
#define GTK_PARAM_READWRITE G_PARAM_READWRITE|G_PARAM_STATIC_NAME|G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB
|
|
|
|
|
2009-10-25 22:46:19 +00:00
|
|
|
/* Many keyboard shortcuts for Mac are the same as for X
|
|
|
|
* except they use Command key instead of Control (e.g. Cut,
|
|
|
|
* Copy, Paste). This symbol is for those simple cases. */
|
|
|
|
#ifndef GDK_WINDOWING_QUARTZ
|
|
|
|
#define GTK_DEFAULT_ACCEL_MOD_MASK GDK_CONTROL_MASK
|
|
|
|
#else
|
|
|
|
#define GTK_DEFAULT_ACCEL_MOD_MASK GDK_META_MASK
|
|
|
|
#endif
|
|
|
|
|
2010-09-09 06:02:56 +00:00
|
|
|
|
2010-09-21 14:35:17 +00:00
|
|
|
/* With GtkWidget , a widget may be requested
|
2010-09-09 06:02:56 +00:00
|
|
|
* its width for 2 or maximum 3 heights in one resize
|
2010-09-21 03:52:49 +00:00
|
|
|
* (Note this define is limited by the bitfield sizes
|
|
|
|
* defined on the SizeRequestCache structure).
|
2010-09-09 06:02:56 +00:00
|
|
|
*/
|
|
|
|
#define GTK_SIZE_REQUEST_CACHED_SIZES 3
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
gint for_size;
|
|
|
|
gint minimum_size;
|
|
|
|
gint natural_size;
|
|
|
|
} SizeRequest;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
SizeRequest widths[GTK_SIZE_REQUEST_CACHED_SIZES];
|
|
|
|
SizeRequest heights[GTK_SIZE_REQUEST_CACHED_SIZES];
|
2010-09-21 03:52:49 +00:00
|
|
|
guint cached_widths : 2;
|
|
|
|
guint cached_heights : 2;
|
|
|
|
guint last_cached_width : 2;
|
|
|
|
guint last_cached_height : 2;
|
2010-09-09 06:02:56 +00:00
|
|
|
} SizeRequestCache;
|
|
|
|
|
|
|
|
|
2005-03-22 02:14:55 +00:00
|
|
|
G_END_DECLS
|
1998-02-02 04:56:42 +00:00
|
|
|
|
|
|
|
#endif /* __GTK_PRIVATE_H__ */
|