From 154749334e7a475aecd6c30a0c097ebdb84f506b Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Wed, 25 Apr 2007 09:09:12 +0000 Subject: [PATCH] Initial import. git-svn-id: svn+ssh://saetta.homelinux.org/svn/greptool/trunk@1 76169498-11ee-428b-941f-28d7a79d5cb2 --- AUTHORS | 1 + ChangeLog | 0 Makefile.am | 1 + NEWS | 0 README | 0 autogen.sh | 70 +++ config.h.in | 22 + configure.ac | 39 ++ data/Makefile.am | 1 + data/greptool/Makefile.am | 1 + data/greptool/glade/Makefile.am | 5 + data/greptool/glade/greptool.glade | 716 +++++++++++++++++++++++++++++ src/Makefile.am | 11 + src/main.c | 39 ++ 14 files changed, 906 insertions(+) create mode 100644 AUTHORS create mode 100644 ChangeLog create mode 100644 Makefile.am create mode 100644 NEWS create mode 100644 README create mode 100755 autogen.sh create mode 100644 config.h.in create mode 100644 configure.ac create mode 100644 data/Makefile.am create mode 100644 data/greptool/Makefile.am create mode 100644 data/greptool/glade/Makefile.am create mode 100644 data/greptool/glade/greptool.glade create mode 100644 src/Makefile.am create mode 100644 src/main.c diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..948556f --- /dev/null +++ b/AUTHORS @@ -0,0 +1 @@ +Andrea Zagli diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..e69de29 diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..9768a98 --- /dev/null +++ b/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = src data diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..e69de29 diff --git a/README b/README new file mode 100644 index 0000000..e69de29 diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..5f5ae72 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,70 @@ +#!/bin/sh +# Run this to generate all the initial makefiles, etc. + +srcdir=`dirname $0` +test -z "$srcdir" && srcdir=. + +ORIGDIR=`pwd` +cd $srcdir +PROJECT=greptool +TEST_TYPE=-f +FILE=configure.ac + +DIE=0 + +(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 +} + +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 $? + +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 diff --git a/config.h.in b/config.h.in new file mode 100644 index 0000000..c364eda --- /dev/null +++ b/config.h.in @@ -0,0 +1,22 @@ +/* config.h.in. Generated from configure.ac by autoheader. */ + +/* 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 version of this package. */ +#undef PACKAGE_VERSION + +/* Version number of package */ +#undef VERSION diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..55d0e65 --- /dev/null +++ b/configure.ac @@ -0,0 +1,39 @@ +# -*- Autoconf -*- +# Process this file with autoconf to produce a configure script. + +AC_PREREQ(2.61) +AC_INIT([greptool], [0.0.1], []) +AC_CONFIG_SRCDIR([src/main.c]) +AC_CONFIG_HEADER([config.h]) + +AM_INIT_AUTOMAKE +AM_MAINTAINER_MODE + +AC_CANONICAL_SYSTEM + +# Checks for programs. +AC_PROG_CC + +# Checks for libraries. +PKG_CHECK_MODULES(GREPTOOL, [gtk+-2.0 >= 2.8.0 + libglade-2.0 >= 2.5.0 + libxml-2.0 >= 2.6.0]) + +AC_SUBST(GREPTOOL_CFLAGS) +AC_SUBST(GREPTOOL_LIBS) + +# Checks for header files. + +# Checks for typedefs, structures, and compiler characteristics. + +# Checks for library functions. + +AC_CONFIG_FILES([ + Makefile + src/Makefile + data/Makefile + data/greptool/Makefile + data/greptool/glade/Makefile +]) + +AC_OUTPUT diff --git a/data/Makefile.am b/data/Makefile.am new file mode 100644 index 0000000..ca21f4e --- /dev/null +++ b/data/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = greptool diff --git a/data/greptool/Makefile.am b/data/greptool/Makefile.am new file mode 100644 index 0000000..21cc77b --- /dev/null +++ b/data/greptool/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = glade diff --git a/data/greptool/glade/Makefile.am b/data/greptool/glade/Makefile.am new file mode 100644 index 0000000..8b953bf --- /dev/null +++ b/data/greptool/glade/Makefile.am @@ -0,0 +1,5 @@ +gladedir = $(datadir)/greptool/glade + +glade_DATA = greptool.glade + +EXTRA_DIST = $(glade_DATA) diff --git a/data/greptool/glade/greptool.glade b/data/greptool/glade/greptool.glade new file mode 100644 index 0000000..f10393a --- /dev/null +++ b/data/greptool/glade/greptool.glade @@ -0,0 +1,716 @@ + + + + + + + True + GRepTool + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_NONE + False + True + False + True + False + False + GDK_WINDOW_TYPE_HINT_NORMAL + GDK_GRAVITY_NORTH_WEST + True + False + + + + + + True + False + 0 + + + + True + GTK_PACK_DIRECTION_LTR + GTK_PACK_DIRECTION_LTR + + + + True + _File + True + + + + + + + True + gtk-new + True + + + + + + + True + gtk-open + True + + + + + + + True + gtk-save + True + + + + + + + True + gtk-save-as + True + + + + + + + True + gtk-close + True + + + + + + + True + + + + + + True + gtk-quit + True + + + + + + + + + + + True + _Edit + True + + + + + + + True + gtk-cut + True + + + + + + + True + gtk-copy + True + + + + + + + True + gtk-paste + True + + + + + + + True + gtk-delete + True + + + + + + + + + + + True + _View + True + + + + + + + True + _Report + True + + + + + + + True + _Header + True + False + + + + + + + True + _Footer + True + False + + + + + + + + + + + True + _Page + True + + + + + + + + True + _Header + True + False + + + + + + + True + _Footer + True + False + + + + + + + + + + + True + + + + + + True + Objects _Toolbar + True + False + + + + + + + True + _Objects List + True + False + + + + + + + True + + + + + + True + _XML + True + + + + + + + + + + + True + _Help + True + + + + + + + True + I_nformazioni + True + + + + + + + + + + 0 + False + False + + + + + + True + GTK_SHADOW_OUT + GTK_POS_LEFT + GTK_POS_TOP + + + + True + GTK_ORIENTATION_HORIZONTAL + GTK_TOOLBAR_ICONS + True + True + + + + True + Creates a new report + gtk-new + True + True + False + + + False + True + + + + + + True + Open an existing report + gtk-open + True + True + False + + + False + True + + + + + + True + Save the current report + gtk-save + True + True + False + + + False + True + + + + + + True + True + True + True + + + False + False + + + + + + True + gtk-cut + True + True + False + + + False + True + + + + + + True + gtk-copy + True + True + False + + + False + True + + + + + + True + gtk-paste + True + True + False + + + False + True + + + + + + + 0 + False + True + + + + + + True + GTK_SHADOW_OUT + GTK_POS_LEFT + GTK_POS_TOP + + + + True + GTK_ORIENTATION_HORIZONTAL + GTK_TOOLBAR_ICONS + True + True + + + + True + Objects selector + Selector + True + True + True + False + False + + + False + True + + + + + + True + True + True + True + + + False + False + + + + + + True + Creates a new text object + Text + True + True + True + False + False + rtbtn_select + + + False + True + + + + + + True + Creates a new line object + Line + True + True + True + False + False + rtbtn_select + + + False + True + + + + + + True + Creates a new rectangle object + Rectangle + True + True + True + False + False + rtbtn_select + + + False + True + + + + + + True + Creates a new ellipse object + Ellipse + True + True + True + False + False + rtbtn_select + + + False + True + + + + + + True + Creates a new image object + Image + True + True + True + False + False + rtbtn_select + + + False + True + + + + + + + 0 + False + True + + + + + + True + True + 0 + + + + + + + + True + True + True + True + GTK_POS_TOP + True + False + + + + + + + + True + label1 + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + tab + + + + + + + + + + True + label2 + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + tab + + + + + + + + + + True + label3 + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + tab + + + + + True + True + + + + + 0 + True + True + + + + + + True + True + + + 0 + False + False + + + + + + + + True + True + greptool + Copyright (C) 2007 Andrea Zagli + Creates and manages reptool report's definition files + False + Andrea Zagli <azagli@inwind.it> + translator-credits + + + diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..630bfc7 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,11 @@ +gladedir = $(datadir)/greptool/glade + +AM_CPPFLAGS = $(GREPTOOL_CFLAGS) \ + -DGLADEDIR=\""$(gladedir)"\" + +LIBS = $(GREPTOOL_LIBS) \ + -export-dynamic + +bin_PROGRAMS = greptool + +greptool_SOURCES = main.c diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..47db35c --- /dev/null +++ b/src/main.c @@ -0,0 +1,39 @@ +/* + * Copyright (C) 2007 Andrea Zagli + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU 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 General Public License for more details. + * + * You should have received a copy of the GNU 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. + */ + +#include +#include + +GtkWidget *w; + +int +main (int argc, char **argv) +{ + GladeXML *glaMain; + + gtk_init (&argc, &argv); + + glaMain = glade_xml_new (GLADEDIR "/greptool.glade", "w_main", NULL); + glade_xml_signal_autoconnect (glaMain); + + w = glade_xml_get_widget (glaMain, "w_main"); + + gtk_main (); + + return 0; +} -- 2.49.0