aboutsummaryrefslogtreecommitdiffstats
path: root/pbx/pbx_kdeconsole.h
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>1999-10-27 02:12:33 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>1999-10-27 02:12:33 +0000
commit78ef020112000af4547e87dc332b3b623a616713 (patch)
tree39f429fb6b41cc50f251a3e48f596bd0f975b5eb /pbx/pbx_kdeconsole.h
parenta561260fdab6fed8b474e89f797c0e64eefc4684 (diff)
Version 0.1.0 from FTP
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@11 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx/pbx_kdeconsole.h')
-rwxr-xr-xpbx/pbx_kdeconsole.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/pbx/pbx_kdeconsole.h b/pbx/pbx_kdeconsole.h
new file mode 100755
index 000000000..e003e48f1
--- /dev/null
+++ b/pbx/pbx_kdeconsole.h
@@ -0,0 +1,37 @@
+/*
+ * Asterisk -- A telephony toolkit for Linux.
+ *
+ * KDE Console monitor -- Header file
+ *
+ * Copyright (C) 1999, Adtran Inc. and Linux Support Services, LLC
+ *
+ * Mark Spencer <markster@linux-support.net>
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License
+ */
+
+#include <kapp.h>
+#include <ktmainwindow.h>
+#include <qpushbutton.h>
+#include <kmenubar.h>
+#include <qpopupmenu.h>
+#include <qlistbox.h>
+#include <qlayout.h>
+#include <qframe.h>
+
+class KAsteriskConsole : public KTMainWindow
+{
+ Q_OBJECT
+public:
+ KAsteriskConsole();
+ void closeEvent(QCloseEvent *);
+ QListBox *verbose;
+public slots:
+ void slotExit();
+private:
+ void KAsteriskConsole::verboser(char *stuff, int opos, int replacelast, int complete);
+ QPushButton *btnExit;
+ KMenuBar *menu;
+ QPopupMenu *file, *help;
+};