2004-08-09 18:45:48 +00:00
|
|
|
#!/usr/bin/perl -w
|
|
|
|
|
2004-08-10 18:57:41 +00:00
|
|
|
print <<EOF;
|
2004-08-09 18:45:48 +00:00
|
|
|
/* Generated by makegtkalias.pl */
|
|
|
|
|
2004-09-15 02:03:58 +00:00
|
|
|
#ifndef DISABLE_VISIBILITY
|
|
|
|
|
2004-08-10 20:10:56 +00:00
|
|
|
#include <glib.h>
|
|
|
|
|
2004-08-10 18:57:41 +00:00
|
|
|
#ifdef G_HAVE_GNUC_VISIBILITY
|
2004-08-09 18:45:48 +00:00
|
|
|
|
|
|
|
#ifdef GTK_ENABLE_BROKEN
|
|
|
|
#define WAS_BROKEN
|
|
|
|
#endif
|
|
|
|
#define GTK_ENABLE_BROKEN
|
|
|
|
|
2004-08-09 19:38:33 +00:00
|
|
|
#ifdef GTK_TEXT_USE_INTERNAL_UNSUPPORTED_API
|
|
|
|
#define WAS_UNSUPPORTED_TEXT_API
|
|
|
|
#endif
|
|
|
|
#define GTK_TEXT_USE_INTERNAL_UNSUPPORTED_API
|
2004-08-09 18:45:48 +00:00
|
|
|
|
|
|
|
#ifdef GTK_DISABLE_DEPRECATED
|
|
|
|
#define WAS_NO_DEPR
|
|
|
|
#endif
|
|
|
|
#undef GTK_DISABLE_DEPRECATED
|
|
|
|
|
|
|
|
#ifdef G_DISABLE_DEPRECATED
|
|
|
|
#define WAS_NO_G_DEPR
|
|
|
|
#endif
|
|
|
|
#undef G_DISABLE_DEPRECATED
|
|
|
|
|
|
|
|
#include "gtk.h"
|
|
|
|
|
|
|
|
#include "gtkfilesystem.h"
|
2004-08-17 18:24:06 +00:00
|
|
|
#ifdef G_OS_UNIX
|
2004-08-09 18:45:48 +00:00
|
|
|
#include "gtkfilesystemunix.h"
|
2004-08-17 18:24:06 +00:00
|
|
|
#endif
|
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
#include "gtkfilesystemwin32.h"
|
|
|
|
#endif
|
2004-08-09 18:45:48 +00:00
|
|
|
#include "gtkhsv.h"
|
|
|
|
#include "gtkpathbar.h"
|
|
|
|
#include "gtktextdisplay.h"
|
|
|
|
#include "gtktextlayout.h"
|
|
|
|
#include "gtktextsegment.h"
|
|
|
|
#include "gtktexttypes.h"
|
|
|
|
#include "gtkthemes.h"
|
|
|
|
#include "gtkwindow-decorate.h"
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
2004-08-17 18:24:06 +00:00
|
|
|
my $in_comment = 0;
|
|
|
|
my $in_skipped_section = 0;
|
|
|
|
|
2004-08-10 18:57:41 +00:00
|
|
|
while (<>) {
|
|
|
|
|
|
|
|
# ignore empty lines
|
|
|
|
next if /^\s*$/;
|
|
|
|
|
2004-08-17 18:24:06 +00:00
|
|
|
# skip comments
|
|
|
|
if ($_ =~ /^\s*\/\*/)
|
|
|
|
{
|
|
|
|
$in_comment = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($in_comment)
|
|
|
|
{
|
|
|
|
if ($_ =~ /\*\/\s$/)
|
|
|
|
{
|
|
|
|
$in_comment = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
|
|
|
# handle ifdefs
|
|
|
|
if ($_ =~ /^\#endif/)
|
|
|
|
{
|
|
|
|
if (!$in_skipped_section)
|
|
|
|
{
|
|
|
|
print $_;
|
|
|
|
}
|
|
|
|
|
|
|
|
$in_skipped_section = 0;
|
|
|
|
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($_ =~ /^\#ifdef\s+INCLUDE_VARIABLES/)
|
|
|
|
{
|
|
|
|
$in_skipped_section = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($in_skipped_section)
|
|
|
|
{
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($_ =~ /^\#ifdef\s+G/)
|
|
|
|
{
|
|
|
|
print $_;
|
|
|
|
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-10 18:57:41 +00:00
|
|
|
my $str = $_;
|
|
|
|
chomp($str);
|
2004-09-09 19:44:24 +00:00
|
|
|
my $alias = "IA__".$str;
|
2004-08-10 18:57:41 +00:00
|
|
|
|
2004-08-17 18:24:06 +00:00
|
|
|
print <<EOF
|
|
|
|
extern __typeof ($str) $alias __attribute((visibility("hidden")));
|
|
|
|
extern __typeof ($str) $str __attribute((alias("$alias"), visibility("default")));
|
|
|
|
\#define $str $alias
|
|
|
|
|
|
|
|
EOF
|
2004-08-10 18:57:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
print <<EOF;
|
2004-08-09 18:45:48 +00:00
|
|
|
|
|
|
|
#ifndef WAS_BROKEN
|
|
|
|
#undef GTK_ENABLE_BROKEN
|
|
|
|
#else
|
|
|
|
#undef WAS_BROKEN
|
|
|
|
#endif
|
|
|
|
|
2004-08-09 19:38:33 +00:00
|
|
|
#ifndef WAS_UNSUPPORTED_TEXT_API
|
|
|
|
#undef GTK_TEXT_USE_INTERNAL_UNSUPPORTED_API
|
|
|
|
#else
|
|
|
|
#undef WAS_UNSUPPORTED_TEXT_API
|
|
|
|
#endif
|
|
|
|
|
2004-08-09 18:45:48 +00:00
|
|
|
#ifdef WAS_NO_DEPR
|
|
|
|
#define GTK_DISABLE_DEPRECATED
|
|
|
|
#undef WAS_NO_DEPR
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef WAS_NO_G_DEPR
|
|
|
|
#define G_DISABLE_DEPRECATED
|
|
|
|
#undef WAS_NO_G_DEPR
|
|
|
|
#endif
|
|
|
|
|
2004-08-10 18:57:41 +00:00
|
|
|
#endif /* G_HAVE_GNUC_VISIBILITY */
|
2004-09-15 02:03:58 +00:00
|
|
|
|
|
|
|
#endif /* DISABLE_VISIBILITY */
|
2004-08-09 18:45:48 +00:00
|
|
|
EOF
|
|
|
|
|
|
|
|
|