summaryrefslogtreecommitdiff
path: root/dldialog/src/dld_textbox.h
diff options
context:
space:
mode:
Diffstat (limited to 'dldialog/src/dld_textbox.h')
-rw-r--r--dldialog/src/dld_textbox.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/dldialog/src/dld_textbox.h b/dldialog/src/dld_textbox.h
new file mode 100644
index 0000000..9d5b7ca
--- /dev/null
+++ b/dldialog/src/dld_textbox.h
@@ -0,0 +1,44 @@
+/******************************************************************************
+**
+** $Id: dld_textbox.h,v 1.1 1999/04/18 20:59:35 harald Exp $
+**
+** 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.
+**
+** by Harald Hoyer (Harald.Hoyer@hot.spotline.de)
+** for delix Computer GmbH (http://www.delix.de)
+**
+******************************************************************************/
+
+/******************************************************************************
+ *
+ * IMPORTANT:
+ * ----------
+ *
+ * If you modify anything of this you have to modify
+ * GUI_VERSION_INFO in configure.in following the guidelines in
+ * README.developers
+ *
+ *****************************************************************************/
+
+#ifndef DLD_GUI_TEXTBOX_H
+#define DLD_GUI_TEXTBOX_H
+
+#include "dld_obj.h"
+
+/**
+ * Abstract Interface
+ * @short Abstract Interface
+ * @author Harald Hoyer <Harald.Hoyer@hot.spotline.de>
+ */
+class DLD_TextBox : public virtual DLD_Obj {
+public:
+ /** Sets the filename of the file that will be printed
+ * @param filename the filepath
+ */
+ virtual void set_filename(const string& filename) = 0;
+};
+
+#endif