summaryrefslogtreecommitdiff
path: root/scripts/q_add_class
authorkergoth <kergoth>2002-01-25 22:14:26 (UTC)
committer kergoth <kergoth>2002-01-25 22:14:26 (UTC)
commit15318cad33835e4e2dc620d033e43cd930676cdd (patch) (side-by-side diff)
treec2fa0399a2c47fda8e2cd0092c73a809d17f68eb /scripts/q_add_class
downloadopie-15318cad33835e4e2dc620d033e43cd930676cdd.zip
opie-15318cad33835e4e2dc620d033e43cd930676cdd.tar.gz
opie-15318cad33835e4e2dc620d033e43cd930676cdd.tar.bz2
Initial revision
Diffstat (limited to 'scripts/q_add_class') (more/less context) (ignore whitespace changes)
-rwxr-xr-xscripts/q_add_class36
1 files changed, 36 insertions, 0 deletions
diff --git a/scripts/q_add_class b/scripts/q_add_class
new file mode 100755
index 0000000..6146e1e
--- a/dev/null
+++ b/scripts/q_add_class
@@ -0,0 +1,36 @@
+#!/bin/sh
+#
+# Script to add a new class to an existing application
+#
+# Copyright 1999-2000 Trolltech AS. All rights reserved.
+#
+
+
+# load the helper functions
+. q_functions
+
+
+if [ $# -lt 2 ]
+then
+echo "Usage: q_add_class ExistingAppName NewClassName"
+print_example_usage
+exit
+fi
+
+
+EXISTING_APP_NAME=$1
+NEW_CLASS_NAME=$2
+
+
+NEW_CLASS_NAME_LOWER=`echo $NEW_CLASS_NAME | tr [A-Z] [a-z]`
+NEW_CLASS_HEADER_FILE="$NEW_CLASS_NAME_LOWER".h
+NEW_CLASS_SOURCE_FILE="$NEW_CLASS_NAME_LOWER".cpp
+NEW_CLASS_HEADER_DEFINE=__`echo $NEW_CLASS_NAME | tr [a-z] [A-Z]`_H__
+EXISTING_PRO_FILE="$EXISTING_APP_NAME".pro
+
+
+print_source_file >> $NEW_CLASS_SOURCE_FILE
+print_header_file >> $NEW_CLASS_HEADER_FILE
+add_class_to_pro_file >> $EXISTING_PRO_FILE
+
+