summaryrefslogtreecommitdiff
path: root/scripts/q_functions
Side-by-side diff
Diffstat (limited to 'scripts/q_functions') (more/less context) (ignore whitespace changes)
-rwxr-xr-xscripts/q_functions12
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/q_functions b/scripts/q_functions
index cf2c2e1..0705cc2 100755
--- a/scripts/q_functions
+++ b/scripts/q_functions
@@ -94,106 +94,106 @@ function print_header_file
{
print_copyright_header
cat << END
#ifndef $NEW_CLASS_HEADER_DEFINE
#define $NEW_CLASS_HEADER_DEFINE
#include <qwidget.h>
class $NEW_CLASS_NAME : public QWidget
{
Q_OBJECT
public:
$NEW_CLASS_NAME( QWidget *parent=0, const char *name=0, WFlags f = 0);
protected:
void exampleFunction( );
private:
int exampleVariable;
};
#endif // $NEW_CLASS_HEADER_DEFINE
END
}
function print_pro_file
{
cat << END
TEMPLATE = app
CONFIG = qt warn_on release
DESTDIR = ../bin
HEADERS = $NEW_CLASS_HEADER_FILE
SOURCES = $NEW_CLASS_SOURCE_FILE $NEW_APP_MAIN_FILE
INTERFACES =
INCLUDEPATH += ../library
DEPENDPATH += ../library
LIBS += -lqpe
TARGET = $NEW_APP_NAME
END
}
function print_install_file
{
cat << END
#!/bin/sh
-if [ a\$QPEDIR = a ]
+if [ a\$OPIEDIR = a ]
then
-echo QPEDIR must be set
+echo OPIEDIR must be set
exit
fi
-[ -f \$QPEDIR/pics/$NEW_APP_ICON_FILE ] || cp $NEW_APP_ICON_FILE \$QPEDIR/pics/
-[ -f \$QPEDIR/apps/$NEW_APP_DESKTOP_FILE ] || cp $NEW_APP_DESKTOP_FILE \$QPEDIR/apps/
-mv \$QPEDIR/Makefile \$QPEDIR/Makefile.orig
+[ -f \$OPIEDIR/pics/$NEW_APP_ICON_FILE ] || cp $NEW_APP_ICON_FILE \$OPIEDIR/pics/
+[ -f \$OPIEDIR/apps/$NEW_APP_DESKTOP_FILE ] || cp $NEW_APP_DESKTOP_FILE \$OPIEDIR/apps/
+mv \$OPIEDIR/Makefile \$OPIEDIR/Makefile.orig
sed "s/APPS=/&$NEW_APP_NAME \\\\\\\\ \\\\
- /" \$QPEDIR/Makefile.orig >> \$QPEDIR/Makefile
+ /" \$OPIEDIR/Makefile.orig >> \$OPIEDIR/Makefile
echo You may wish to move the desktop file in to
echo an appropriate subdirectory of the menus.
END
}
function print_desktop_file
{
cat << END
[Desktop Entry]
Type=Application
Exec=$NEW_APP_NAME
Icon=$NEW_APP_ICON_FILE
Name=$NEW_APP_MENU_NAME
Comment=$NEW_APP_DESCRIPTION
END
}
function print_icon_file
{
XPM_NAME="$NEW_APP_NAME"_xpm
cat << END
/* XPM */
static char *$XPM_NAME[] = {
"14 14 3 1",
" c None",
". c #000000",
"a c #FFFFFF",
" ",
" aaaaaaaaaaaa ",
" a..........a ",
" a..aaaaaa..a ",
" a.a.aaaa.a.a ",
" a.aa.aa.aa.a ",
" a.aaa..aaa.a ",
" a.aaa..aaa.a ",
" a.aa.aa.aa.a ",
" a.a.aaaa.a.a ",
" a..aaaaaa..a ",
" a..........a ",
" aaaaaaaaaaaa ",
" "};
END
}
function add_class_to_pro_file