--- /dev/null
+*~
+*.rpath
+*.pot
+*.mo
+*.gmo
+*.o
+*.lo
+*.la
+*.bak
+*.stamp
+*.tar.gz
+*.pc
+*.sed
+*.sin
+*.header
+.libs
+.deps
+ABOUT-NLS
+INSTALL
+Makefile
+Makefile.in
+Makefile.in.in
+Makevars
+aclocal.m4
+autom4te.cache/
+config.guess
+config.log
+config.sub
+configure
+depcomp
+gtk-doc.make
+install-sh
+ltmain.sh
+m4/
+missing
+config.h
+config.status
+docs/reference/version.xml
+docs/reference/html/
+docs/reference/xml/
+libtool
+stamp-h1
+tests/date_entry
+POTFILES
+mkinstalldirs
+stamp-it
+intltool-*
+Rules-quot
+++ /dev/null
-2007-01-13 Andrea Zagli <azagli@inwind.it>
-
- * gtkdateentry.h:
- * gtkdateentry.c:
- - GtkDateEntry struct is completely private
- - gtk_date_entry_set_format now returns a gboolean
- - changing separator or format there's no date's loss
- * autogen.sh: added
-
-2006-12-23 Andrea Zagli <azagli@inwind.it>
-
- * gtkdateentry.c: gtk_date_entry_get_strf now return "" if the date
- into GtkDateEntry isn't a valid date
-
-2006-12-22 Andrea Zagli <azagli@inwind.it>
-
- * some adjustments to autotools files
-
-2006-12-20 Andrea Zagli <azagli@inwind.it>
-
- * gtkdateentry.c: gtk_date_set_date_strf rewrited
-
-2005-12-08 Andrea Zagli <azagli@inwind.it>
-
- * changed autotool configure files for compiling
- also on Win32
- * changed autotool configure files for cross compiling
-
-2005-11-12 Andrea Zagli <azagli@inwind.it>
-
- * fixed a bug in gtk_date_set_date_strf
- * changed return value's gtk_date_set_date_strf from void to gboolean
-
-2005-09-25 Andrea Zagli <azagli@inwind.it>
-
- * added support for gtk-doc
--- /dev/null
+2007-01-13 Andrea Zagli <azagli@inwind.it>
+
+ * gtkdateentry.h:
+ * gtkdateentry.c:
+ - GtkDateEntry struct is completely private
+ - gtk_date_entry_set_format now returns a gboolean
+ - changing separator or format there's no date's loss
+ * autogen.sh: added
+
+2006-12-23 Andrea Zagli <azagli@inwind.it>
+
+ * gtkdateentry.c: gtk_date_entry_get_strf now return "" if the date
+ into GtkDateEntry isn't a valid date
+
+2006-12-22 Andrea Zagli <azagli@inwind.it>
+
+ * some adjustments to autotools files
+
+2006-12-20 Andrea Zagli <azagli@inwind.it>
+
+ * gtkdateentry.c: gtk_date_set_date_strf rewrited
+
+2005-12-08 Andrea Zagli <azagli@inwind.it>
+
+ * changed autotool configure files for compiling
+ also on Win32
+ * changed autotool configure files for cross compiling
+
+2005-11-12 Andrea Zagli <azagli@inwind.it>
+
+ * fixed a bug in gtk_date_set_date_strf
+ * changed return value's gtk_date_set_date_strf from void to gboolean
+
+2005-09-25 Andrea Zagli <azagli@inwind.it>
+
+ * added support for gtk-doc
+ACLOCAL_AMFLAGS = -I m4
+
SUBDIRS = src tests docs
EXTRA_DIST = libgtkdateentry.pc.in
pkgconfig_DATA = libgtkdateentry.pc
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc
+
+distclean-local:
+ if test "$(srcdir)" = "."; then :; else \
+ rm -f ChangeLog; \
+ fi
+
+ChangeLog:
+ @echo Creating $@
+ @if test -d "$(srcdir)/.git"; then \
+ (GIT_DIR=$(top_srcdir)/.git ./missing --run git log --stat -M -C --name-status --date=short --no-color) | fmt --split-only > $@.tmp \
+ && mv -f $@.tmp $@ \
+ || ($(RM) $@.tmp; \
+ echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
+ (test -f $@ || echo git-log is required to generate this file >> $@)); \
+ else \
+ test -f $@ || \
+ (echo A git checkout and git-log is required to generate ChangeLog >&2 && \
+ echo A git checkout and git-log is required to generate this file >> $@); \
+ fi
+
+.PHONY: ChangeLog
-#!/bin/sh
+#!/bin/bash
# Run this to generate all the initial makefiles, etc.
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
-ORIGDIR=`pwd`
-cd $srcdir
-PROJECT=libgtkdateentry
-TEST_TYPE=-f
-FILE=configure.ac
+PKG_NAME="libgtkdateentry"
-DIE=0
-
-have_libtool=false
-if libtoolize --version < /dev/null > /dev/null 2>&1 ; then
- libtool_version=`libtoolize --version | sed 's/^[^0-9]*\([0-9.][0-9.]*\).*/\1/'`
- case $libtool_version in
- 1.4*|1.5*)
- have_libtool=true
- ;;
- esac
-fi
-if $have_libtool ; then : ; else
- echo
- echo "You must have libtool 1.4 installed to compile $PROJECT."
- echo "Install the appropriate package for your distribution,"
- echo "or get the source tarball at http://ftp.gnu.org/gnu/libtool/"
- DIE=1
-fi
-
-(gtkdocize --version) < /dev/null > /dev/null 2>&1 || {
- echo
- echo "You must have gtk-doc installed to compile $PROJECT."
- echo "Install the appropriate package for your distribution,"
- echo "or get the source tarball at http://ftp.gnome.org/pub/GNOME/sources/gtk-doc/"
- DIE=1
+(test -f $srcdir/configure.ac \
+ && test -d $srcdir/src \
+ && test -f $srcdir/src/gtkdateentry.h) || {
+ echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
+ echo " top-level libgtkdateentry directory"
+ exit 1
}
-(autoconf --version) < /dev/null > /dev/null 2>&1 || {
- echo
- echo "You must have autoconf installed to compile $PROJECT."
- echo "Install the appropriate package for your distribution,"
- echo "or get the source tarball at http://ftp.gnu.org/gnu/autoconf/"
- DIE=1
+which gnome-autogen.sh || {
+ echo "You need to install gnome-common from GNOME and make"
+ echo "sure the gnome-autogen.sh script is in your \$PATH."
+ exit 1
}
-if automake --version < /dev/null > /dev/null 2>&1 ; then
- AUTOMAKE=automake
- ACLOCAL=aclocal
-else
- echo
- echo "You must have automake 1.7.x installed to compile $PROJECT."
- echo "Install the appropriate package for your distribution,"
- echo "or get the source tarball at http://ftp.gnu.org/gnu/automake/"
- DIE=1
-fi
-
-if test "$DIE" -eq 1; then
- exit 1
-fi
-
-test $TEST_TYPE $FILE || {
- echo "You must run this script in the top-level $PROJECT directory"
- exit 1
-}
-
-if test -z "$AUTOGEN_SUBDIR_MODE"; then
- if test -z "$*"; then
- echo "I am going to run ./configure with no arguments - if you wish "
- echo "to pass any to it, please specify them on the $0 command line."
- fi
-fi
-
-rm -rf autom4te.cache
-
-# README and INSTALL are required by automake, but may be deleted by clean
-# up rules. to get automake to work, simply touch these here, they will be
-# regenerated from their corresponding *.in files by ./configure anyway.
-touch README INSTALL
-
-$ACLOCAL || exit $?
-
-libtoolize --force || exit $?
-gtkdocize || exit $?
-
-autoheader || exit $?
-
-$AUTOMAKE --add-missing || exit $?
-autoconf || exit $?
-cd $ORIGDIR || exit $?
-
-if test -z "$AUTOGEN_SUBDIR_MODE"; then
- $srcdir/configure --enable-maintainer-mode $AUTOGEN_CONFIGURE_ARGS "$@" || exit $?
-
- echo
- echo "Now type 'make' to compile $PROJECT."
-fi
+USE_GNOME2_MACROS=1 . gnome-autogen.sh
--- /dev/null
+/* config.h.in. Generated from configure.ac by autoheader. */
+
+/* Define to 1 if you have the <dlfcn.h> header file. */
+#undef HAVE_DLFCN_H
+
+/* Define to 1 if you have the <inttypes.h> header file. */
+#undef HAVE_INTTYPES_H
+
+/* Define to 1 if you have the <memory.h> header file. */
+#undef HAVE_MEMORY_H
+
+/* Define to 1 if you have the <stdint.h> header file. */
+#undef HAVE_STDINT_H
+
+/* Define to 1 if you have the <stdlib.h> header file. */
+#undef HAVE_STDLIB_H
+
+/* Define to 1 if you have the <strings.h> header file. */
+#undef HAVE_STRINGS_H
+
+/* Define to 1 if you have the <string.h> header file. */
+#undef HAVE_STRING_H
+
+/* Define to 1 if you have the <sys/stat.h> header file. */
+#undef HAVE_SYS_STAT_H
+
+/* Define to 1 if you have the <sys/types.h> header file. */
+#undef HAVE_SYS_TYPES_H
+
+/* Define to 1 if you have the <unistd.h> header file. */
+#undef HAVE_UNISTD_H
+
+/* Define to the sub-directory in which libtool stores uninstalled libraries.
+ */
+#undef LT_OBJDIR
+
+/* Name of package */
+#undef PACKAGE
+
+/* Define to the address where bug reports for this package should be sent. */
+#undef PACKAGE_BUGREPORT
+
+/* Define to the full name of this package. */
+#undef PACKAGE_NAME
+
+/* Define to the full name and version of this package. */
+#undef PACKAGE_STRING
+
+/* Define to the one symbol short name of this package. */
+#undef PACKAGE_TARNAME
+
+/* Define to the home page for this package. */
+#undef PACKAGE_URL
+
+/* Define to the version of this package. */
+#undef PACKAGE_VERSION
+
+/* Define to 1 if you have the ANSI C header files. */
+#undef STDC_HEADERS
+
+/* Define to 1 if your <sys/time.h> declares `struct tm'. */
+#undef TM_IN_SYS_TIME
+
+/* Version number of package */
+#undef VERSION
+
+/* Define to empty if `const' does not conform to ANSI C. */
+#undef const
--- /dev/null
+<SECTION>
+<FILE>gtkdateentry</FILE>
+GTK_TYPE_DATE_ENTRY
+GTK_DATE_ENTRY
+GTK_DATE_ENTRY_CLASS
+GTK_DATE_ENTRY_GET_CLASS
+<TITLE>GtkDateEntry</TITLE>
+GtkDateEntry
+gtk_date_entry_new
+gtk_date_entry_set_separator
+gtk_date_entry_set_format
+gtk_date_entry_get_text
+gtk_date_entry_get_strf
+gtk_date_entry_get_tm
+gtk_date_entry_get_gdate
+gtk_date_entry_set_date_strf
+gtk_date_entry_set_date_tm
+gtk_date_entry_set_date_gdate
+gtk_date_entry_is_valid
+gtk_date_entry_set_editable
+gtk_date_entry_set_calendar_button_visible
+<SUBSECTION Standard>
+GTK_IS_DATE
+gtk_date_entry_get_type
+GTK_IS_DATE_CLASS
+</SECTION>
+
--- /dev/null
+<MACRO>
+<NAME>GTK_TYPE_DATE_ENTRY</NAME>
+#define GTK_TYPE_DATE_ENTRY (gtk_date_entry_get_type ())
+</MACRO>
+<MACRO>
+<NAME>GTK_DATE_ENTRY</NAME>
+#define GTK_DATE_ENTRY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_DATE_ENTRY, GtkDateEntry))
+</MACRO>
+<MACRO>
+<NAME>GTK_DATE_ENTRY_CLASS</NAME>
+#define GTK_DATE_ENTRY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_DATE_ENTRY, GtkDateEntry))
+</MACRO>
+<MACRO>
+<NAME>GTK_IS_DATE</NAME>
+#define GTK_IS_DATE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_DATE_ENTRY))
+</MACRO>
+<MACRO>
+<NAME>GTK_IS_DATE_CLASS</NAME>
+#define GTK_IS_DATE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_DATE_ENTRY))
+</MACRO>
+<MACRO>
+<NAME>GTK_DATE_ENTRY_GET_CLASS</NAME>
+#define GTK_DATE_ENTRY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_DATE_ENTRY, GtkDateEntry))
+</MACRO>
+<STRUCT>
+<NAME>GtkDateEntry</NAME>
+</STRUCT>
+<STRUCT>
+<NAME>GtkDateEntryClass</NAME>
+</STRUCT>
+<STRUCT>
+<NAME>GtkDateEntry</NAME>
+struct _GtkDateEntry
+{
+ GtkHBox hbox;
+};
+</STRUCT>
+<STRUCT>
+<NAME>GtkDateEntryClass</NAME>
+struct _GtkDateEntryClass
+{
+ GtkHBoxClass parent_class;
+};
+</STRUCT>
+<FUNCTION>
+<NAME>gtk_date_entry_get_type</NAME>
+<RETURNS>GType </RETURNS>
+void
+</FUNCTION>
+<FUNCTION>
+<NAME>gtk_date_entry_new</NAME>
+<RETURNS>GtkWidget *</RETURNS>
+const gchar *format,const gchar separator,gboolean calendar_button_is_visible
+</FUNCTION>
+<FUNCTION>
+<NAME>gtk_date_entry_set_separator</NAME>
+<RETURNS>void </RETURNS>
+GtkDateEntry *date,const gchar separator
+</FUNCTION>
+<FUNCTION>
+<NAME>gtk_date_entry_set_format</NAME>
+<RETURNS>gboolean </RETURNS>
+GtkDateEntry *date,const gchar *format
+</FUNCTION>
+<FUNCTION>
+<NAME>gtk_date_entry_get_text</NAME>
+<RETURNS>const gchar *</RETURNS>
+GtkDateEntry *date
+</FUNCTION>
+<FUNCTION>
+<NAME>gtk_date_entry_get_strf</NAME>
+<RETURNS>const gchar *</RETURNS>
+GtkDateEntry *date,const gchar *format,gchar separator
+</FUNCTION>
+<FUNCTION>
+<NAME>gtk_date_entry_get_tm</NAME>
+<RETURNS>struct tm *</RETURNS>
+GtkDateEntry *date
+</FUNCTION>
+<FUNCTION>
+<NAME>gtk_date_entry_get_gdate</NAME>
+<RETURNS>GDate *</RETURNS>
+GtkDateEntry *date
+</FUNCTION>
+<FUNCTION>
+<NAME>gtk_date_entry_set_date_strf</NAME>
+<RETURNS>gboolean </RETURNS>
+GtkDateEntry *date,const gchar *str,const gchar *format,const gchar separator
+</FUNCTION>
+<FUNCTION>
+<NAME>gtk_date_entry_set_date_tm</NAME>
+<RETURNS>void </RETURNS>
+GtkDateEntry *date,const struct tm tmdate
+</FUNCTION>
+<FUNCTION>
+<NAME>gtk_date_entry_set_date_gdate</NAME>
+<RETURNS>void </RETURNS>
+GtkDateEntry *date,const GDate *gdate
+</FUNCTION>
+<FUNCTION>
+<NAME>gtk_date_entry_is_valid</NAME>
+<RETURNS>gboolean </RETURNS>
+GtkDateEntry *date
+</FUNCTION>
+<FUNCTION>
+<NAME>gtk_date_entry_set_editable</NAME>
+<RETURNS>void </RETURNS>
+GtkDateEntry *date,gboolean is_editable
+</FUNCTION>
+<FUNCTION>
+<NAME>gtk_date_entry_set_calendar_button_visible</NAME>
+<RETURNS>void </RETURNS>
+GtkDateEntry *date,gboolean is_visible
+</FUNCTION>
-88% symbol docs coverage.
-7 symbols documented.
+81% symbol docs coverage.
+13 symbols documented.
0 symbols incomplete.
-1 not documented.
+3 not documented.
+gtk_date_entry_get_gdate
gtk_date_entry_get_strf
+gtk_date_entry_get_tm
--- /dev/null
+GtkDateEntryClass
+gtk_date_entry_get_gdate
+gtk_date_entry_get_tm
+gtk_date_entry_is_valid
+gtk_date_entry_set_calendar_button_visible
+gtk_date_entry_set_date_gdate
+gtk_date_entry_set_date_strf
+gtk_date_entry_set_date_tm
+gtk_date_entry_set_editable
--- /dev/null
+GObject
+ GInitiallyUnowned
+ GtkObject
+ GtkWidget
+ GtkContainer
+ GtkBox
+ GtkHBox
+ GtkDateEntry
+ GtkStyle
+ GdkDrawable
+ GdkWindow
+ GdkDragContext
+ GtkTooltip
+ GdkScreen
+GInterface
+ GTypePlugin
+ AtkImplementorIface
+ GtkBuildable
+ GtkOrientable
--- /dev/null
+GtkWidget GtkBuildable AtkImplementorIface
+GtkContainer GtkBuildable AtkImplementorIface
+GtkBox GtkBuildable GtkOrientable AtkImplementorIface
+GtkHBox GtkBuildable GtkOrientable AtkImplementorIface
+GtkDateEntry GtkBuildable GtkOrientable AtkImplementorIface