summaryrefslogtreecommitdiffstats
path: root/kcontrol/ebrowsing/filteropts.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kcontrol/ebrowsing/filteropts.cpp')
-rw-r--r--kcontrol/ebrowsing/filteropts.cpp62
1 files changed, 62 insertions, 0 deletions
diff --git a/kcontrol/ebrowsing/filteropts.cpp b/kcontrol/ebrowsing/filteropts.cpp
new file mode 100644
index 000000000..ae2127380
--- /dev/null
+++ b/kcontrol/ebrowsing/filteropts.cpp
@@ -0,0 +1,62 @@
+/*
+ * Copyright (c) 2000 Yves Arrouye <yves@realnames.com>
+ *
+ * Requires the Qt widget libraries, available at no cost at
+ * http://www.troll.no/
+ *
+ * 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.
+ */
+
+#include <unistd.h>
+
+#include <qlayout.h>
+#include <qlabel.h>
+
+#include <dcopclient.h>
+#include <klocale.h>
+
+#include "filteropts.h"
+
+FilterOptions::FilterOptions(QWidget *parent, const char *name)
+ :KCModule(parent, name)
+{
+
+ QGridLayout *lay = new QGridLayout(this, 1, 1, 10, 5);
+
+ lay->addWidget(new QLabel(i18n("Under construction..."), this), 0, 0);
+ lay->activate();
+
+}
+
+void FilterOptions::load( bool useDefaults )
+{
+
+}
+
+void FilterOptions::save()
+{
+}
+
+void FilterOptions::defaults()
+{
+ load( true );
+}
+
+void FilterOptions::moduleChanged(bool state)
+{
+ emit changed(state);
+}
+
+#include "filteropts.moc"