summaryrefslogtreecommitdiffstats
path: root/PerlTQt
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2018-10-18 22:45:41 +0900
committerMichele Calgaro <[email protected]>2018-10-21 19:17:26 +0900
commit10ee12b66a226f890b423ab711e17efd04bd2f70 (patch)
tree64d998718597a805203696291a935c0d9672682e /PerlTQt
parent3144af3574cf5c78b414ab7ce2efb5dacf2549b3 (diff)
downloadlibtqt-perl-10ee12b66a226f890b423ab711e17efd04bd2f70.tar.gz
libtqt-perl-10ee12b66a226f890b423ab711e17efd04bd2f70.zip
Moved to /usr folder instead of /opt/trinity. This relates to bug 266.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'PerlTQt')
-rw-r--r--PerlTQt/MANIFEST6
-rw-r--r--PerlTQt/Makefile.PL.in10
-rw-r--r--PerlTQt/TQt.pod6
-rw-r--r--PerlTQt/TQt.xs2
-rwxr-xr-xPerlTQt/bin/ptqtapi (renamed from PerlTQt/bin/pqtapi)4
-rwxr-xr-xPerlTQt/bin/ptqtsh (renamed from PerlTQt/bin/pqtsh)8
-rw-r--r--PerlTQt/handlers.cpp2
-rw-r--r--PerlTQt/perltqt.h (renamed from PerlTQt/perlqt.h)0
-rw-r--r--PerlTQt/smokeperl.h2
9 files changed, 20 insertions, 20 deletions
diff --git a/PerlTQt/MANIFEST b/PerlTQt/MANIFEST
index 53d07ac..a3055a9 100644
--- a/PerlTQt/MANIFEST
+++ b/PerlTQt/MANIFEST
@@ -4,8 +4,8 @@ Makefile.PL.in
TQt.pm
TQt.xs
TQt.pod
-bin/pqtapi
-bin/pqtsh
+bin/ptqtapi
+bin/ptqtsh
examples/aclock/AnalogClock.pm
examples/aclock/aclock.pl
examples/buttongroups/ButtonsGroups.pm
@@ -34,7 +34,7 @@ lib/TQt/signals.pm
lib/TQt/slots.pm
lib/TQt/GlobalSpace.pm
marshall.h
-perlqt.h
+perltqt.h
smokeperl.cpp
smokeperl.h
t/My/Codec.pm
diff --git a/PerlTQt/Makefile.PL.in b/PerlTQt/Makefile.PL.in
index ea2dd0c..c46d8c5 100644
--- a/PerlTQt/Makefile.PL.in
+++ b/PerlTQt/Makefile.PL.in
@@ -56,7 +56,7 @@ $rpath = $rpath eq "yes" ?
)
) : "";
-my @scripts = ("bin/pqtsh", "bin/pqtapi");
+my @scripts = ("bin/ptqtsh", "bin/ptqtapi");
my $cxxflags = '@CXXFLAGS@';
$cxxflags =~ s/ -pedantic / /g;
@@ -96,7 +96,7 @@ WriteMakefile(
) : ()),
'INST_BIN' => './bin',
'DEFINE' => $cxxflags,
- 'H' => ["marshall.h", "perlqt.h", "smokeperl.h"],
+ 'H' => ["marshall.h", "perltqt.h", "smokeperl.h"],
'ABSTRACT' => "An OO interface to Trolltech's TQt toolkit",
'dynamic_lib' => {'OTHERLDFLAGS' => $rpath},
($] >= 5.005 ? ## Add these new keywords supported since 5.005
@@ -191,11 +191,11 @@ Instead, it provides two introspection tools
=over 4
-=item * pqtapi:
+=item * ptqtapi:
a command line PerlTQt API introspector
-=item * pqtsh:
+=item * ptqtsh:
a graphical PerlTQt shell
@@ -211,7 +211,7 @@ on this system in C<$doc_dir_glob>, in both B<POD> and
B<HTML> format.
For a complete IDE allowing RAD and visual programming,
-check the pqt-designer package.
+check the ptqt-designer package.
--- The PerlTQt team
diff --git a/PerlTQt/TQt.pod b/PerlTQt/TQt.pod
index 45fcec9..411594d 100644
--- a/PerlTQt/TQt.pod
+++ b/PerlTQt/TQt.pod
@@ -13,11 +13,11 @@ Instead, it provides two introspection tools
=over 4
-=item * pqtapi:
+=item * ptqtapi:
a command line PerlTQt API introspector
-=item * pqtsh:
+=item * ptqtsh:
a graphical PerlTQt shell
@@ -33,7 +33,7 @@ on this system in C</usr/share/doc/libtqt-perl/tutorial>, in both B<POD> and
B<HTML> format.
For a complete IDE allowing RAD and visual programming,
-check the pqt-designer package.
+check the ptqt-designer package.
--- The PerlTQt team
diff --git a/PerlTQt/TQt.xs b/PerlTQt/TQt.xs
index 8032e8e..ee6ca16 100644
--- a/PerlTQt/TQt.xs
+++ b/PerlTQt/TQt.xs
@@ -31,7 +31,7 @@
#undef malloc
#include "marshall.h"
-#include "perlqt.h"
+#include "perltqt.h"
#include "smokeperl.h"
#ifndef IN_BYTES
diff --git a/PerlTQt/bin/pqtapi b/PerlTQt/bin/ptqtapi
index 338d600..3d8705b 100755
--- a/PerlTQt/bin/pqtapi
+++ b/PerlTQt/bin/ptqtapi
@@ -71,8 +71,8 @@ while ($i)
}
BEGIN {
- $h = "pqtapi - a PerlTQt introspection tool\t(c) Germain Garand 2003 <germain\@ebooksfrance.org>\n\n".
- "usage: pqtapi [-r <re>] [<class>]\n\n".
+ $h = "ptqtapi - a PerlTQt introspection tool\t(c) Germain Garand 2003 <germain\@ebooksfrance.org>\n\n".
+ "usage: ptqtapi [-r <re>] [<class>]\n\n".
"options:\n".
"\t-r <re> : find all functions matching regular expression/keyword <re>\n".
"\t-i : together with -r, performs a case insensitive search\n".
diff --git a/PerlTQt/bin/pqtsh b/PerlTQt/bin/ptqtsh
index ec44e43..012e920 100755
--- a/PerlTQt/bin/pqtsh
+++ b/PerlTQt/bin/ptqtsh
@@ -1,6 +1,6 @@
#!/usr/bin/perl
-# pqtsh : a graphical shell for PerlTQt.
+# ptqtsh : a graphical shell for PerlTQt.
#
# author: Germain Garand <[email protected]>
# license: GNU Public License v2
@@ -347,7 +347,7 @@ sub fileOpen
{
my $fn = TQt::FileDialog::getOpenFileName(
".",
- "Pqtsh Session (*.pqts)",
+ "Pqtsh Session (*.ptqts)",
this,
"open session",
"Choose a file to open" );
@@ -360,11 +360,11 @@ sub getFileName
{
fileName = TQt::FileDialog::getSaveFileName(
".",
- "Pqtsh Session (*.pqts)",
+ "Pqtsh Session (*.ptqts)",
this,
"save session",
"Choose a filename" );
- fileName !~ /\.pqts$/ and fileName = fileName . ".pqts";
+ fileName !~ /\.ptqts$/ and fileName = fileName . ".ptqts";
return fileName;
}
diff --git a/PerlTQt/handlers.cpp b/PerlTQt/handlers.cpp
index 280336a..cff3d25 100644
--- a/PerlTQt/handlers.cpp
+++ b/PerlTQt/handlers.cpp
@@ -34,7 +34,7 @@
#endif
#include "marshall.h"
-#include "perlqt.h"
+#include "perltqt.h"
#include "smokeperl.h"
#ifndef HINT_BYTES
diff --git a/PerlTQt/perlqt.h b/PerlTQt/perltqt.h
index 7eb240a..7eb240a 100644
--- a/PerlTQt/perlqt.h
+++ b/PerlTQt/perltqt.h
diff --git a/PerlTQt/smokeperl.h b/PerlTQt/smokeperl.h
index 21e8298..75b2921 100644
--- a/PerlTQt/smokeperl.h
+++ b/PerlTQt/smokeperl.h
@@ -17,7 +17,7 @@
#include "perl.h"
#include "XSUB.h"
-#include "perlqt.h"
+#include "perltqt.h"
#include "marshall.h"
class SmokePerl;