*app/interface.c: added type for _NETSCAPE_URL to the DnD stuff so you can

Thu Jul  8 00:08:50 EDT 1999  Adrian Likins <alikins@redhat.com>

        *app/interface.c: added type for _NETSCAPE_URL to the DnD stuff
        so you can now drag image urls from netscape

-adrian
This commit is contained in:
EDT 1999 Adrian Likins 1999-07-08 05:07:53 +00:00 committed by Adrian Likins
parent 897b3b2e66
commit e1ee90c955
4 changed files with 14 additions and 3 deletions

View file

@ -1,3 +1,8 @@
Thu Jul 8 00:08:50 EDT 1999 Adrian Likins <alikins@redhat.com>
*app/interface.c: added type for _NETSCAPE_URL to the DnD stuff
so you can now drag image urls from netscape
Wed Jul 7 20:33:24 MEST 1999 Sven Neumann <sven@gimp.org>
* Makefile.am

View file

@ -115,13 +115,15 @@ static GtkWidget * toolbox_shell = NULL;
enum {
TARGET_URI_LIST,
TARGET_TEXT_PLAIN,
TARGET_URL
} TargetType;
static
GtkTargetEntry dnd_target_table[] =
{
{ "text/uri-list", 0, TARGET_URI_LIST },
{ "text/plain", 0, TARGET_TEXT_PLAIN }
{ "text/plain", 0, TARGET_TEXT_PLAIN },
{ "_NETSCAPE_URL",0, TARGET_URL }
};
static guint

View file

@ -115,13 +115,15 @@ static GtkWidget * toolbox_shell = NULL;
enum {
TARGET_URI_LIST,
TARGET_TEXT_PLAIN,
TARGET_URL
} TargetType;
static
GtkTargetEntry dnd_target_table[] =
{
{ "text/uri-list", 0, TARGET_URI_LIST },
{ "text/plain", 0, TARGET_TEXT_PLAIN }
{ "text/plain", 0, TARGET_TEXT_PLAIN },
{ "_NETSCAPE_URL",0, TARGET_URL }
};
static guint

View file

@ -115,13 +115,15 @@ static GtkWidget * toolbox_shell = NULL;
enum {
TARGET_URI_LIST,
TARGET_TEXT_PLAIN,
TARGET_URL
} TargetType;
static
GtkTargetEntry dnd_target_table[] =
{
{ "text/uri-list", 0, TARGET_URI_LIST },
{ "text/plain", 0, TARGET_TEXT_PLAIN }
{ "text/plain", 0, TARGET_TEXT_PLAIN },
{ "_NETSCAPE_URL",0, TARGET_URL }
};
static guint