openbox/actions/showdesktop.c \
openbox/actions/showmenu.c \
openbox/actions/unfocus.c \
+ openbox/filters/all.c \
+ openbox/filters/all.h \
openbox/action.c \
openbox/action.h \
openbox/action_filter.c \
#include "action_filter.h"
#include "gettext.h"
+#include "filters/all.h"
+
typedef struct _ObActionFilterDefinition ObActionFilterDefinition;
struct _ObActionFilterDefinition {
void action_filter_startup(gboolean reconfig)
{
- //XXX filters_all_startup();
+ filters_all_startup();
}
void action_filter_shutdown(gboolean reconfig)
--- /dev/null
+all clean install:
+ $(MAKE) -C .. -$(MAKEFLAGS) $@
+
+.PHONY: all clean install
--- /dev/null
+/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
+
+ filters/all.c for the Openbox window manager
+ Copyright (c) 2011 Dana Jansens
+
+ 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.
+
+ See the COPYING file for a copy of the GNU General Public License.
+*/
+
+#include "all.h"
+
+void filters_all_startup(void)
+{
+ /*filter_foo_startup();*/
+}
--- /dev/null
+/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
+
+ filters/all.h for the Openbox window manager
+ Copyright (c) 2011 Dana Jansens
+
+ 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.
+
+ See the COPYING file for a copy of the GNU General Public License.
+*/
+
+#ifndef __filters_all_h
+#define __filters_all_h
+
+void filters_all_startup(void);
+
+/*void filter_foo_startup(void);*/
+
+#endif