kexi
messageaction.h
00001 /*************************************************************************** 00002 * This file is part of the KDE project 00003 * copyright (C) 2006 by Sebastian Sauer (mail@dipe.org) 00004 * copyright (C) 2006 by Bernd Steindorff (bernd@itii.de) 00005 * copyright (C) 2006 by Sascha Kupper (kusato@kfnv.de) 00006 * 00007 * This program is free software; you can redistribute it and/or 00008 * modify it under the terms of the GNU Library General Public 00009 * License as published by the Free Software Foundation; either 00010 * version 2 of the License, or (at your option) any later version. 00011 * This program is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 * Library General Public License for more details. 00015 * You should have received a copy of the GNU Library General Public License 00016 * along with this program; see the file COPYING. If not, write to 00017 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00018 * Boston, MA 02110-1301, USA. 00019 ***************************************************************************/ 00020 00021 #ifndef KEXIMACRO_MESSAGEACTION_H 00022 #define KEXIMACRO_MESSAGEACTION_H 00023 00024 00025 #include "kexiaction.h" 00026 00027 class KexiMainWindow; 00028 00029 namespace KoMacro { 00030 class Context; 00031 } 00032 00033 namespace KexiMacro { 00034 00040 class MessageAction : public KexiAction 00041 { 00042 Q_OBJECT 00043 public: 00044 00048 MessageAction(); 00049 00053 virtual ~MessageAction(); 00054 00055 public slots: 00056 00061 virtual void activate(KSharedPtr<KoMacro::Context> context); 00062 00063 }; 00064 } 00065 00066 #endif