2002-10-26 Havoc Pennington <hp@pobox.com> * theme-switcher.c (window_read_themes): adapt to gnome-wm-manager API changes 2002-10-26 Havoc Pennington <hp@pobox.com> * gnome-window-manager.c: handle NULL fields in the class struct; and replace the individual setters with get/set for a big struct with flags indicating which fields we care about, a la a graphics context. Add settings_changed signal. (gnome_window_manager_get_type): change object name to GnomeWindowManager not GWindowManager * gnome-window-manager.h (struct _GnomeWindowManagerClass): add padding to the class struct * Makefile.am: move metacity module here from capplets/windows/ (libgnome_window_settings_la_SOURCES): don't build the code to switch window managers, it was bitrotted and broken anyway, and isn't in the UI right now. Keep the code in EXTRA_DIST in case someone wants to recover it. Move some relevant bits to gnome-wm-manager.c 2002-10-26 Havoc Pennington <hp@pobox.com> * gnome-window-properties.c: rewrite * Makefile.am (bin_PROGRAMS): remove metacity module, move to libwindow-settings (gnome_window_properties_LDADD): properly link to .la file for libgnome-window-settings, not the installed copy
35 lines
1 KiB
Makefile
35 lines
1 KiB
Makefile
bin_PROGRAMS = gnome-window-properties
|
|
|
|
gnome_window_properties_LDADD = $(GNOMECC_CAPPLETS_LIBS) \
|
|
$(top_builddir)/libwindow-settings/libgnome-window-settings.la
|
|
|
|
gnome_window_properties_SOURCES = \
|
|
gnome-window-properties.c
|
|
|
|
@INTLTOOL_DESKTOP_RULE@
|
|
|
|
pixmapdir = $(GNOMECC_PIXMAPS_DIR)
|
|
pixmap_DATA =
|
|
|
|
gladedir = $(GNOMECC_GLADE_DIR)
|
|
glade_DATA = gnome-window-properties.glade
|
|
|
|
iconsdir = $(GNOMECC_ICONS_DIR)
|
|
icons_DATA = window-capplet.png
|
|
|
|
desktop_iconsdir = $(datadir)/pixmaps
|
|
desktop_icons_DATA = window-capplet.png
|
|
|
|
desktopdir = $(GNOMECC_DESKTOP_DIR)
|
|
Desktop_in_files = window-properties.desktop.in
|
|
desktop_DATA = $(Desktop_in_files:.desktop.in=.desktop)
|
|
|
|
INCLUDES = $(GNOMECC_CAPPLETS_CFLAGS) \
|
|
-I $(top_srcdir)/libwindow-settings \
|
|
-DGNOME_WINDOW_MANAGER_MODULE_PATH=\""$(libdir)/window-manager-settings"\" \
|
|
-DGLADEDIR=\""$(gladedir)"\" \
|
|
-DPIXMAPDIR=\""$(pixmapdir)"\"
|
|
|
|
CLEANFILES = $(GNOMECC_CAPPLETS_CLEANFILES)
|
|
EXTRA_DIST = $(glade_DATA) $(icons_DATA) $(Desktop_in_files) $(pixmap_DATA)
|
|
|