summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gui/Makefile.am10
-rw-r--r--src/gui/qt/Makefile.am21
-rw-r--r--src/gui/qt/gui-qt.c22
-rw-r--r--src/gui/qt/gui-qt.h23
-rw-r--r--src/gui/wxwidgets/Makefile.am31
-rw-r--r--src/gui/wxwidgets/gui-display.c21
-rw-r--r--src/gui/wxwidgets/gui-input.c21
7 files changed, 1 insertions, 148 deletions
diff --git a/src/gui/Makefile.am b/src/gui/Makefile.am
index 92fc75a81..30ea8ff95 100644
--- a/src/gui/Makefile.am
+++ b/src/gui/Makefile.am
@@ -65,18 +65,10 @@ if GUI_NCURSES
curses_dir=curses
endif
-if GUI_WXWIDGETS
-wxwidgets_dir=wxwidgets
-endif
-
if GUI_GTK
gtk_dir=gtk
endif
-if GUI_QT
-qt_dir=qt
-endif
-
-SUBDIRS = . $(curses_dir) $(wxwidgets_dir) $(gtk_dir) $(qt_dir)
+SUBDIRS = . $(curses_dir) $(gtk_dir)
EXTRA_DIST = CMakeLists.txt
diff --git a/src/gui/qt/Makefile.am b/src/gui/qt/Makefile.am
deleted file mode 100644
index 88b862562..000000000
--- a/src/gui/qt/Makefile.am
+++ /dev/null
@@ -1,21 +0,0 @@
-#
-# Copyright (C) 2003-2011 Sebastien Helleu <flashcode@flashtux.org>
-#
-# This file is part of WeeChat, the extensible chat client.
-#
-# WeeChat 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 3 of the License, or
-# (at your option) any later version.
-#
-# WeeChat 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 WeeChat. If not, see <http://www.gnu.org/licenses/>.
-#
-
-EXTRA_DIST = gui-qt.c \
- gui-qt.h
diff --git a/src/gui/qt/gui-qt.c b/src/gui/qt/gui-qt.c
deleted file mode 100644
index 5cfc1dc43..000000000
--- a/src/gui/qt/gui-qt.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * Copyright (C) 2003-2011 Sebastien Helleu <flashcode@flashtux.org>
- *
- * This file is part of WeeChat, the extensible chat client.
- *
- * WeeChat 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 3 of the License, or
- * (at your option) any later version.
- *
- * WeeChat 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 WeeChat. If not, see <http://www.gnu.org/licenses/>.
- */
-
-/* gui-qt.c: Qt GUI for WeeChat */
-
-/* ***** Qt GUI for WeeChat, NOT developed! ***** */
diff --git a/src/gui/qt/gui-qt.h b/src/gui/qt/gui-qt.h
deleted file mode 100644
index 64a81bebf..000000000
--- a/src/gui/qt/gui-qt.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Copyright (C) 2003-2011 Sebastien Helleu <flashcode@flashtux.org>
- *
- * This file is part of WeeChat, the extensible chat client.
- *
- * WeeChat 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 3 of the License, or
- * (at your option) any later version.
- *
- * WeeChat 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 WeeChat. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#ifndef __WEECHAT_GUI_QT_H
-#define __WEECHAT_GUI_QT_H 1
-
-#endif /* __WEECHAT_GUI_QT_H */
diff --git a/src/gui/wxwidgets/Makefile.am b/src/gui/wxwidgets/Makefile.am
deleted file mode 100644
index f084b6433..000000000
--- a/src/gui/wxwidgets/Makefile.am
+++ /dev/null
@@ -1,31 +0,0 @@
-#
-# Copyright (C) 2005 Benoit Papillault <benoit.papillault@free.fr>
-# Copyright (C) 2005-2011 Sebastien Helleu <flashcode@flashtux.org>
-#
-# This file is part of WeeChat, the extensible chat client.
-#
-# WeeChat 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 3 of the License, or
-# (at your option) any later version.
-#
-# WeeChat 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 WeeChat. If not, see <http://www.gnu.org/licenses/>.
-#
-
-INCLUDES = -DLOCALEDIR=\"$(datadir)/locale\"
-
-bin_PROGRAMS = weechat-wxwidgets
-
-weechat_wxwidgets_LDADD = ../lib_weechat_gui_common.a \
- ../../common/lib_weechat_main.a \
- ../../irc/lib_weechat_irc.a \
- ../../plugins/lib_weechat_plugins.a $(PLUGINS_LIBS)
-
-weechat_wxwidgets_SOURCES = gui-display.c \
- gui-input.c
diff --git a/src/gui/wxwidgets/gui-display.c b/src/gui/wxwidgets/gui-display.c
deleted file mode 100644
index 48284b89f..000000000
--- a/src/gui/wxwidgets/gui-display.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * Copyright (C) 2005 Benoit Papillault <benoit.papillault@free.fr>
- * Copyright (C) 2005-2011 Sebastien Helleu <flashcode@flashtux.org>
- *
- * This file is part of WeeChat, the extensible chat client.
- *
- * WeeChat 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 3 of the License, or
- * (at your option) any later version.
- *
- * WeeChat 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 WeeChat. If not, see <http://www.gnu.org/licenses/>.
- */
-
-/* gui-display.c: display functions for wxWidgets GUI */
diff --git a/src/gui/wxwidgets/gui-input.c b/src/gui/wxwidgets/gui-input.c
deleted file mode 100644
index 85b4288ca..000000000
--- a/src/gui/wxwidgets/gui-input.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * Copyright (C) 2005 Benoit Papillault <benoit.papillault@free.fr>
- * Copyright (C) 2005-2011 Sebastien Helleu <flashcode@flashtux.org>
- *
- * This file is part of WeeChat, the extensible chat client.
- *
- * WeeChat 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 3 of the License, or
- * (at your option) any later version.
- *
- * WeeChat 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 WeeChat. If not, see <http://www.gnu.org/licenses/>.
- */
-
-/* gui-input: user input functions for wxWidgets GUI */