From b888c7edb54e483ec0e3c2e2ce0eafd73acdcc65 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 24 Jul 2013 15:57:00 -0500 Subject: Initial import from kshowmail 3.3.1 sources --- doc/html/commandentry_8h-source.html | 69 ++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 doc/html/commandentry_8h-source.html (limited to 'doc/html/commandentry_8h-source.html') diff --git a/doc/html/commandentry_8h-source.html b/doc/html/commandentry_8h-source.html new file mode 100644 index 0000000..9e53f18 --- /dev/null +++ b/doc/html/commandentry_8h-source.html @@ -0,0 +1,69 @@ + + +kshowmail: kshowmail/commandentry.h Source File + + + + +
+
+ +

commandentry.h

00001 /***************************************************************************
+00002                           commandentry.h  -  description
+00003                              -------------------
+00004     begin                : Thu Jul 20 2000
+00005     copyright            : (C) 2000-2001 by Eggert Ehmke
+00006     email                : eggert.ehmke@berlin.de
+00007  ***************************************************************************/
+00008 
+00009 /***************************************************************************
+00010  *                                                                         *
+00011  *   This program is free software; you can redistribute it and/or modify  *
+00012  *   it under the terms of the GNU General Public License as published by  *
+00013  *   the Free Software Foundation; either version 2 of the License, or     *
+00014  *   (at your option) any later version.                                   *
+00015  *                                                                         *
+00016  ***************************************************************************/
+00017 
+00018 #ifndef COMMANDENTRY_H
+00019 #define COMMANDENTRY_H
+00020 
+00021 #include <qdialog.h>
+00022 #include <qpopupmenu.h>
+00023 
+00024 #include <ktoolbar.h>
+00025 
+00026 #include "configelem.h"
+00027 
+00031 class ConfigElem;
+00032 
+00033 class CommandEntry
+00034 {
+00035        public:
+00036        CommandEntry () {};
+00037        CommandEntry (const char* name, const char* path, const int id, const bool modal)
+00038        : m_name (name), m_path (path), m_id (id), m_waitForCommand (modal) {};
+00039        CommandEntry (const CommandEntry* copy)
+00040        : m_name (copy->m_name), m_path (copy->m_path), m_id (copy->m_id), m_waitForCommand (copy->m_waitForCommand) {};
+00041        CommandEntry& operator = (const CommandEntry& entry);
+00042        bool exec (ConfigElem* pelem = NULL, const char* header = NULL, const char* body = NULL);
+00043        bool exec (const QString& path, ConfigElem* pelem, const char* header = NULL, const char* body = NULL);
+00044        QString m_name;
+00045        QString m_path;
+00046        int m_id;
+00047   bool m_waitForCommand;
+00048 };
+00049 
+00050 #endif
+

Generated on Wed May 16 21:15:18 2007 for kshowmail by  + +doxygen 1.5.0
+ + -- cgit v1.2.1