summaryrefslogtreecommitdiffstats
path: root/arts/message
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commitce4a32fe52ef09d8f5ff1dd22c001110902b60a2 (patch)
tree5ac38a06f3dde268dc7927dc155896926aaf7012 /arts/message
downloadtdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.tar.gz
tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'arts/message')
-rw-r--r--arts/message/Makefile.am8
-rw-r--r--arts/message/artsmessage.cc93
2 files changed, 101 insertions, 0 deletions
diff --git a/arts/message/Makefile.am b/arts/message/Makefile.am
new file mode 100644
index 000000000..be67e4bd8
--- /dev/null
+++ b/arts/message/Makefile.am
@@ -0,0 +1,8 @@
+INCLUDES = $(all_includes)
+
+bin_PROGRAMS = artsmessage
+
+artsmessage_SOURCES = artsmessage.cc
+
+artsmessage_LDADD = ../../kdeui/libkdeui.la
+artsmessage_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(KDE_MT_LDFLAGS)
diff --git a/arts/message/artsmessage.cc b/arts/message/artsmessage.cc
new file mode 100644
index 000000000..7a127d4a4
--- /dev/null
+++ b/arts/message/artsmessage.cc
@@ -0,0 +1,93 @@
+/*
+ Copyright (C) 2001 Jeff Tranter
+ tranter@kde.org
+
+ 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+
+------------------------------------------------------------------------
+
+This application displays an error, warning, or informational message
+in a dialog. It is normally used by artsd in conjunction with the -m
+option. By abstracting this out of artsd, we keep it independent of
+any particular graphics toolkit.
+
+This version uses KDE. Equivalent versions could be written using Qt,
+Gnome, etc. and used instead.
+
+*/
+
+#include <qregexp.h>
+
+#include <klocale.h>
+#include <kglobal.h>
+#include <kapplication.h>
+#include <kaboutdata.h>
+#include <kmessagebox.h>
+#include <kcmdlineargs.h>
+
+// command line options
+static KCmdLineOptions options[] =
+ {
+ { "e", 0,0 },
+ { "error", I18N_NOOP("Display error message (default)"), 0 },
+ { "w", 0, 0},
+ { "warning", I18N_NOOP("Display warning message"), 0 },
+ { "i", 0, 0 },
+ { "info", I18N_NOOP("Display informational message"), 0 },
+ { "+message", I18N_NOOP("Message string to be displayed"), 0 },
+ KCmdLineLastOption // End of options.
+ };
+
+KAboutData aboutData("artsmessage", I18N_NOOP("artsmessage"), "0.1",
+ I18N_NOOP("Utility to display aRts error messages"),
+ KAboutData::License_GPL, "(c) 2001, Jeff Tranter", 0, 0, "tranter@kde.org");
+
+int main(int argc, char **argv) {
+ aboutData.addAuthor("Jeff Tranter", 0, "tranter@kde.org");
+ KGlobal::locale()->setMainCatalogue("kdelibs");
+ KCmdLineArgs::init(argc, argv, &aboutData);
+ KCmdLineArgs::addCmdLineOptions(options);
+ KApplication app;
+
+ KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
+ QString msg;
+
+ // must be at least one argument
+ if (args->count() == 0) {
+ args->usage();
+ }
+
+ // build up message string from remaining arguments
+ for (int i = 0; i < args->count(); i++) {
+ if (i == 0)
+ msg = args->arg(i);
+ else
+ msg += QString(" ") + args->arg(i);
+ }
+
+ const int notifyOptions = 0; // never activate KNotify
+ if (args->isSet("w")) {
+ KMessageBox::sorry(0, msg, i18n("Warning"), notifyOptions);
+ } else if (args->isSet("i")) {
+ QString id = msg;
+ id.replace(QRegExp("[\\[\\]\\s=]"), "_");
+ KMessageBox::information(0, msg, i18n("Informational"), id, notifyOptions);
+ } else {
+ KMessageBox::error(0, msg, i18n("Error"), notifyOptions);
+ }
+
+ return 0;
+}