aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-url-entry.h
diff options
context:
space:
mode:
authorJP Rosevear <jpr@src.gnome.org>2002-02-09 05:51:16 +0800
committerJP Rosevear <jpr@src.gnome.org>2002-02-09 05:51:16 +0800
commit350a7a33147b81b33ef60b45e5d5134b73d40bad (patch)
treea2aab05136ad8e45a1c374b86795d930e9118306 /widgets/misc/e-url-entry.h
parentcaa0d5ee2056e339815d27e33cf6c7138ed434e2 (diff)
downloadgsoc2013-evolution-350a7a33147b81b33ef60b45e5d5134b73d40bad.tar
gsoc2013-evolution-350a7a33147b81b33ef60b45e5d5134b73d40bad.tar.gz
gsoc2013-evolution-350a7a33147b81b33ef60b45e5d5134b73d40bad.tar.bz2
gsoc2013-evolution-350a7a33147b81b33ef60b45e5d5134b73d40bad.tar.lz
gsoc2013-evolution-350a7a33147b81b33ef60b45e5d5134b73d40bad.tar.xz
gsoc2013-evolution-350a7a33147b81b33ef60b45e5d5134b73d40bad.tar.zst
gsoc2013-evolution-350a7a33147b81b33ef60b45e5d5134b73d40bad.zip
oops
svn path=/trunk/; revision=15621
Diffstat (limited to 'widgets/misc/e-url-entry.h')
-rw-r--r--widgets/misc/e-url-entry.h69
1 files changed, 69 insertions, 0 deletions
diff --git a/widgets/misc/e-url-entry.h b/widgets/misc/e-url-entry.h
new file mode 100644
index 0000000000..036313f9ee
--- /dev/null
+++ b/widgets/misc/e-url-entry.h
@@ -0,0 +1,69 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
+/* e-url-entry.h
+ *
+ * Copyright (C) 2002 JP Rosevear
+ *
+ * This program 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 program 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 program; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ *
+ * Author: JP Rosevear
+ */
+
+#ifndef _E_URL_ENTRY_H_
+#define _E_URL_ENTRY_H_
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <gtk/gtk.h>
+
+#ifdef __cplusplus
+extern "C" {
+#pragma }
+#endif /* __cplusplus */
+
+#define E_TYPE_URL_ENTRY (e_url_entry_get_type ())
+#define E_URL_ENTRY(obj) (GTK_CHECK_CAST ((obj), E_TYPE_URL_ENTRY, EUrlEntry))
+#define E_URL_ENTRY_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), E_TYPE_URL_ENTRY, EUrlEntryClass))
+#define E_IS_URL_ENTRY(obj) (GTK_CHECK_TYPE ((obj), E_TYPE_URL_ENTRY))
+#define E_IS_URL_ENTRY_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), E_TYPE_URL_ENTRY))
+
+
+typedef struct _EUrlEntry EUrlEntry;
+typedef struct _EUrlEntryPrivate EUrlEntryPrivate;
+typedef struct _EUrlEntryClass EUrlEntryClass;
+
+struct _EUrlEntry {
+ GtkHBox parent;
+
+ EUrlEntryPrivate *priv;
+};
+
+struct _EUrlEntryClass {
+ GtkHBoxClass parent_class;
+};
+
+
+
+GtkType e_url_entry_get_type (void);
+GtkWidget *e_url_entry_new (void);
+GtkWidget *e_url_entry_get_entry (EUrlEntry *url_entry);
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* _E_URL_ENTRY_H_ */