summaryrefslogtreecommitdiff
path: root/src/gui/linkhandler.h
diff options
context:
space:
mode:
authorJosé Ávila <linux@javila.net>2005-06-17 07:14:23 +0000
committerJosé Ávila <linux@javila.net>2005-06-17 07:14:23 +0000
commit50b0f0e7ea4508e1ee30f0a0ea8741af6d3212d4 (patch)
tree846a6272b9c40e7a1fde02c52ad399f34e31124b /src/gui/linkhandler.h
parent4e031f6dba55f4793247f8603e6260a380a109f7 (diff)
downloadmana-client-50b0f0e7ea4508e1ee30f0a0ea8741af6d3212d4.tar.gz
mana-client-50b0f0e7ea4508e1ee30f0a0ea8741af6d3212d4.tar.bz2
mana-client-50b0f0e7ea4508e1ee30f0a0ea8741af6d3212d4.tar.xz
mana-client-50b0f0e7ea4508e1ee30f0a0ea8741af6d3212d4.zip
new BrowserBox widget with colors/links support
Diffstat (limited to 'src/gui/linkhandler.h')
-rw-r--r--src/gui/linkhandler.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/gui/linkhandler.h b/src/gui/linkhandler.h
new file mode 100644
index 00000000..05a0a99b
--- /dev/null
+++ b/src/gui/linkhandler.h
@@ -0,0 +1,42 @@
+/*
+ * The Mana World
+ * Copyright 2004 The Mana World Development Team
+ *
+ * This file is part of The Mana World.
+ *
+ * The Mana World 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
+ * any later version.
+ *
+ * The Mana World 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 The Mana World; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ * $Id$
+ */
+
+#ifndef _TMW_LINK_HANDLER_H
+#define _TMW_LINK_HANDLER_H
+
+/**
+ * A simple interface to windows that need to handle links from BrowserBox
+ * widget.
+ */
+class LinkHandler
+{
+ public:
+ virtual ~LinkHandler() { }
+
+ virtual void handleLink(const std::string& link) { }
+
+ protected:
+ LinkHandler() { }
+};
+
+#endif