summaryrefslogtreecommitdiffstats
path: root/kmplot/kmplot/kmplotIface.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmplot/kmplot/kmplotIface.h')
-rw-r--r--kmplot/kmplot/kmplotIface.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/kmplot/kmplot/kmplotIface.h b/kmplot/kmplot/kmplotIface.h
new file mode 100644
index 00000000..b176b944
--- /dev/null
+++ b/kmplot/kmplot/kmplotIface.h
@@ -0,0 +1,56 @@
+/*
+* KmPlot - a math. function plotter for the KDE-Desktop
+*
+* Copyright (C) 2004 Fredrik Edemar
+* f_edemar@linux.se
+*
+* This file is part of the KDE Project.
+* KmPlot is part of the KDE-EDU Project.
+*
+* 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.
+*
+*/
+
+#ifndef KMPLOTIFACE_H
+#define KMPLOTIFACE_H
+
+
+#include <dcopobject.h>
+#include <kurl.h>
+
+/**
+@author Fredrik Edemar
+*/
+/// All functions in KmPlotIface are accessible with DCOP. For descriptions about the functions, see KmPlot.
+class KmPlotIface : virtual public DCOPObject
+{
+ K_DCOP
+k_dcop:
+ virtual void fileOpen() = 0;
+ virtual void setStatusBarText(const QString &text, int id) = 0;
+ virtual void optionsConfigureKeys() = 0;
+ virtual void optionsConfigureToolbars() = 0;
+ virtual void openFileInNewWindow(const KURL url) = 0;
+ virtual bool stopProgressBar() = 0;
+ virtual void startProgressBar(int) = 0;
+ virtual void increaseProgressBar() = 0;
+
+ virtual void fileOpen(const KURL &url) = 0;
+};
+
+
+#endif
+
+