From: Andrea Zagli Date: Wed, 4 Nov 2009 15:20:56 +0000 (+0100) Subject: First compilation after git. X-Git-Tag: 0.0.3~10 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=ca76b5ded08210021d3120ccedf60d83fc4b6a3a;p=libgtkdateentry First compilation after git. --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8685cb3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,48 @@ +*~ +*.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 diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index e548ec3..0000000 --- a/ChangeLog +++ /dev/null @@ -1,36 +0,0 @@ -2007-01-13 Andrea Zagli - - * 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 - - * gtkdateentry.c: gtk_date_entry_get_strf now return "" if the date - into GtkDateEntry isn't a valid date - -2006-12-22 Andrea Zagli - - * some adjustments to autotools files - -2006-12-20 Andrea Zagli - - * gtkdateentry.c: gtk_date_set_date_strf rewrited - -2005-12-08 Andrea Zagli - - * changed autotool configure files for compiling - also on Win32 - * changed autotool configure files for cross compiling - -2005-11-12 Andrea Zagli - - * 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 - - * added support for gtk-doc diff --git a/ChangeLog-0.0.2 b/ChangeLog-0.0.2 new file mode 100644 index 0000000..e548ec3 --- /dev/null +++ b/ChangeLog-0.0.2 @@ -0,0 +1,36 @@ +2007-01-13 Andrea Zagli + + * 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 + + * gtkdateentry.c: gtk_date_entry_get_strf now return "" if the date + into GtkDateEntry isn't a valid date + +2006-12-22 Andrea Zagli + + * some adjustments to autotools files + +2006-12-20 Andrea Zagli + + * gtkdateentry.c: gtk_date_set_date_strf rewrited + +2005-12-08 Andrea Zagli + + * changed autotool configure files for compiling + also on Win32 + * changed autotool configure files for cross compiling + +2005-11-12 Andrea Zagli + + * 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 + + * added support for gtk-doc diff --git a/Makefile.am b/Makefile.am index 38c6302..06028c1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,3 +1,5 @@ +ACLOCAL_AMFLAGS = -I m4 + SUBDIRS = src tests docs EXTRA_DIST = libgtkdateentry.pc.in @@ -6,3 +8,24 @@ pkgconfigdir = $(libdir)/pkgconfig 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 diff --git a/autogen.sh b/autogen.sh index 1f14fa9..be633f2 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,98 +1,23 @@ -#!/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 diff --git a/config.h.in b/config.h.in new file mode 100644 index 0000000..147079b --- /dev/null +++ b/config.h.in @@ -0,0 +1,68 @@ +/* config.h.in. Generated from configure.ac by autoheader. */ + +/* Define to 1 if you have the header file. */ +#undef HAVE_DLFCN_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_INTTYPES_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_MEMORY_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDINT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDLIB_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRINGS_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRING_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_STAT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_TYPES_H + +/* Define to 1 if you have the 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 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 diff --git a/docs/reference/gtkdateentry-decl-list.txt b/docs/reference/gtkdateentry-decl-list.txt new file mode 100644 index 0000000..925b073 --- /dev/null +++ b/docs/reference/gtkdateentry-decl-list.txt @@ -0,0 +1,27 @@ +
+gtkdateentry +GTK_TYPE_DATE_ENTRY +GTK_DATE_ENTRY +GTK_DATE_ENTRY_CLASS +GTK_DATE_ENTRY_GET_CLASS +GtkDateEntry +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 + +GTK_IS_DATE +gtk_date_entry_get_type +GTK_IS_DATE_CLASS +
+ diff --git a/docs/reference/gtkdateentry-decl.txt b/docs/reference/gtkdateentry-decl.txt new file mode 100644 index 0000000..d017b05 --- /dev/null +++ b/docs/reference/gtkdateentry-decl.txt @@ -0,0 +1,114 @@ + +GTK_TYPE_DATE_ENTRY +#define GTK_TYPE_DATE_ENTRY (gtk_date_entry_get_type ()) + + +GTK_DATE_ENTRY +#define GTK_DATE_ENTRY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_DATE_ENTRY, GtkDateEntry)) + + +GTK_DATE_ENTRY_CLASS +#define GTK_DATE_ENTRY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_DATE_ENTRY, GtkDateEntry)) + + +GTK_IS_DATE +#define GTK_IS_DATE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_DATE_ENTRY)) + + +GTK_IS_DATE_CLASS +#define GTK_IS_DATE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_DATE_ENTRY)) + + +GTK_DATE_ENTRY_GET_CLASS +#define GTK_DATE_ENTRY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_DATE_ENTRY, GtkDateEntry)) + + +GtkDateEntry + + +GtkDateEntryClass + + +GtkDateEntry +struct _GtkDateEntry +{ + GtkHBox hbox; +}; + + +GtkDateEntryClass +struct _GtkDateEntryClass +{ + GtkHBoxClass parent_class; +}; + + +gtk_date_entry_get_type +GType +void + + +gtk_date_entry_new +GtkWidget * +const gchar *format,const gchar separator,gboolean calendar_button_is_visible + + +gtk_date_entry_set_separator +void +GtkDateEntry *date,const gchar separator + + +gtk_date_entry_set_format +gboolean +GtkDateEntry *date,const gchar *format + + +gtk_date_entry_get_text +const gchar * +GtkDateEntry *date + + +gtk_date_entry_get_strf +const gchar * +GtkDateEntry *date,const gchar *format,gchar separator + + +gtk_date_entry_get_tm +struct tm * +GtkDateEntry *date + + +gtk_date_entry_get_gdate +GDate * +GtkDateEntry *date + + +gtk_date_entry_set_date_strf +gboolean +GtkDateEntry *date,const gchar *str,const gchar *format,const gchar separator + + +gtk_date_entry_set_date_tm +void +GtkDateEntry *date,const struct tm tmdate + + +gtk_date_entry_set_date_gdate +void +GtkDateEntry *date,const GDate *gdate + + +gtk_date_entry_is_valid +gboolean +GtkDateEntry *date + + +gtk_date_entry_set_editable +void +GtkDateEntry *date,gboolean is_editable + + +gtk_date_entry_set_calendar_button_visible +void +GtkDateEntry *date,gboolean is_visible + diff --git a/docs/reference/gtkdateentry-undeclared.txt b/docs/reference/gtkdateentry-undeclared.txt new file mode 100644 index 0000000..e69de29 diff --git a/docs/reference/gtkdateentry-undocumented.txt b/docs/reference/gtkdateentry-undocumented.txt index e0a7490..36fc823 100644 --- a/docs/reference/gtkdateentry-undocumented.txt +++ b/docs/reference/gtkdateentry-undocumented.txt @@ -1,9 +1,11 @@ -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 diff --git a/docs/reference/gtkdateentry-unused.txt b/docs/reference/gtkdateentry-unused.txt new file mode 100644 index 0000000..1ffae14 --- /dev/null +++ b/docs/reference/gtkdateentry-unused.txt @@ -0,0 +1,9 @@ +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 diff --git a/docs/reference/gtkdateentry.args b/docs/reference/gtkdateentry.args new file mode 100644 index 0000000..e69de29 diff --git a/docs/reference/gtkdateentry.hierarchy b/docs/reference/gtkdateentry.hierarchy new file mode 100644 index 0000000..1a5923c --- /dev/null +++ b/docs/reference/gtkdateentry.hierarchy @@ -0,0 +1,19 @@ +GObject + GInitiallyUnowned + GtkObject + GtkWidget + GtkContainer + GtkBox + GtkHBox + GtkDateEntry + GtkStyle + GdkDrawable + GdkWindow + GdkDragContext + GtkTooltip + GdkScreen +GInterface + GTypePlugin + AtkImplementorIface + GtkBuildable + GtkOrientable diff --git a/docs/reference/gtkdateentry.interfaces b/docs/reference/gtkdateentry.interfaces new file mode 100644 index 0000000..71f971d --- /dev/null +++ b/docs/reference/gtkdateentry.interfaces @@ -0,0 +1,5 @@ +GtkWidget GtkBuildable AtkImplementorIface +GtkContainer GtkBuildable AtkImplementorIface +GtkBox GtkBuildable GtkOrientable AtkImplementorIface +GtkHBox GtkBuildable GtkOrientable AtkImplementorIface +GtkDateEntry GtkBuildable GtkOrientable AtkImplementorIface diff --git a/docs/reference/gtkdateentry.prerequisites b/docs/reference/gtkdateentry.prerequisites new file mode 100644 index 0000000..e69de29 diff --git a/docs/reference/gtkdateentry.signals b/docs/reference/gtkdateentry.signals new file mode 100644 index 0000000..e69de29