mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-20 04:48:06 +01:00
Added ability to set omnipresent icons in Clip.
This commit is contained in:
@@ -31,8 +31,10 @@ Changes since version 0.53.0:
|
|||||||
seb_bauer@bigfoot.com)
|
seb_bauer@bigfoot.com)
|
||||||
- added GNUstep info panel (still needs beautification..)
|
- added GNUstep info panel (still needs beautification..)
|
||||||
- made the paths selector in WPrefs.app use the open file panel
|
- made the paths selector in WPrefs.app use the open file panel
|
||||||
|
- fixed a mem leak in superfluous mode caused by the ghost icon.
|
||||||
|
- added possibility to set omnipresent icons in Clip. See NEWS.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Changes since version 0.52.0:
|
Changes since version 0.52.0:
|
||||||
.............................
|
.............................
|
||||||
|
|
||||||
|
|||||||
65
Makefile.in
65
Makefile.in
@@ -91,16 +91,16 @@ wprefsdir = @wprefsdir@
|
|||||||
SUBDIRS = wrlib WINGs src util po WindowMaker wmlib test WPrefs.app doc contrib
|
SUBDIRS = wrlib WINGs src util po WindowMaker wmlib test WPrefs.app doc contrib
|
||||||
|
|
||||||
|
|
||||||
EXTRA_DIST = TODO BUGS BUGFORM FAQ FAQ.I18N MIRRORS COPYING.OPL Install acconfig.h mkpatch README.KDE README.GNOME WindowMaker.lsm.in docklib-0.2.tar.gz libwmfun-0.0.1.tar.gz
|
EXTRA_DIST = TODO BUGS BUGFORM FAQ FAQ.I18N MIRRORS COPYING.OPL Install acconfig.h mkpatch README.KDE README.GNOME WindowMaker.lsm.in docklib-0.2.tar.gz libwmfun-0.0.1.tar.gz
|
||||||
|
|
||||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||||
CONFIG_HEADER = ./src/config.h
|
CONFIG_HEADER = ./src/config.h
|
||||||
CONFIG_CLEAN_FILES =
|
CONFIG_CLEAN_FILES =
|
||||||
DIST_COMMON = README AUTHORS COPYING ChangeLog INSTALL Makefile.am \
|
DIST_COMMON = README AUTHORS COPYING ChangeLog INSTALL Makefile.am \
|
||||||
Makefile.in NEWS TODO acinclude.m4 aclocal.m4 config.guess config.sub \
|
Makefile.in NEWS TODO acconfig.h acinclude.m4 aclocal.m4 config.guess \
|
||||||
configure configure.in install-sh ltconfig ltmain.sh missing \
|
config.sub configure configure.in install-sh ltconfig ltmain.sh missing \
|
||||||
mkinstalldirs
|
mkinstalldirs src/config.h.in src/stamp-h.in
|
||||||
|
|
||||||
|
|
||||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
@@ -110,9 +110,9 @@ GZIP_ENV = --best
|
|||||||
all: all-redirect
|
all: all-redirect
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile
|
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps Makefile
|
||||||
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||||
cd $(top_builddir) \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
&& CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
|
||||||
@@ -124,6 +124,34 @@ config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
|||||||
$(srcdir)/configure: $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
|
$(srcdir)/configure: $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
|
||||||
cd $(srcdir) && $(AUTOCONF)
|
cd $(srcdir) && $(AUTOCONF)
|
||||||
|
|
||||||
|
src/config.h: src/stamp-h
|
||||||
|
@if test ! -f $@; then \
|
||||||
|
rm -f src/stamp-h; \
|
||||||
|
$(MAKE) src/stamp-h; \
|
||||||
|
else :; fi
|
||||||
|
src/stamp-h: $(srcdir)/src/config.h.in $(top_builddir)/config.status
|
||||||
|
cd $(top_builddir) \
|
||||||
|
&& CONFIG_FILES= CONFIG_HEADERS=src/config.h \
|
||||||
|
$(SHELL) ./config.status
|
||||||
|
@echo timestamp > src/stamp-h 2> /dev/null
|
||||||
|
$(srcdir)/src/config.h.in: $(srcdir)/src/stamp-h.in
|
||||||
|
@if test ! -f $@; then \
|
||||||
|
rm -f $(srcdir)/src/stamp-h.in; \
|
||||||
|
$(MAKE) $(srcdir)/src/stamp-h.in; \
|
||||||
|
else :; fi
|
||||||
|
$(srcdir)/src/stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) acconfig.h
|
||||||
|
cd $(top_srcdir) && $(AUTOHEADER)
|
||||||
|
@echo timestamp > $(srcdir)/src/stamp-h.in 2> /dev/null
|
||||||
|
|
||||||
|
mostlyclean-hdr:
|
||||||
|
|
||||||
|
clean-hdr:
|
||||||
|
|
||||||
|
distclean-hdr:
|
||||||
|
-rm -f src/config.h
|
||||||
|
|
||||||
|
maintainer-clean-hdr:
|
||||||
|
|
||||||
# This directory's subdirectories are mostly independent; you can cd
|
# This directory's subdirectories are mostly independent; you can cd
|
||||||
# into them and run `make' without going through this Makefile.
|
# into them and run `make' without going through this Makefile.
|
||||||
# To change the values of `make' variables: instead of editing Makefiles,
|
# To change the values of `make' variables: instead of editing Makefiles,
|
||||||
@@ -251,11 +279,6 @@ distdir: $(DISTFILES)
|
|||||||
-rm -rf $(distdir)
|
-rm -rf $(distdir)
|
||||||
mkdir $(distdir)
|
mkdir $(distdir)
|
||||||
-chmod 777 $(distdir)
|
-chmod 777 $(distdir)
|
||||||
here=`cd $(top_builddir) && pwd`; \
|
|
||||||
top_distdir=`cd $(distdir) && pwd`; \
|
|
||||||
distdir=`cd $(distdir) && pwd`; \
|
|
||||||
cd $(top_srcdir) \
|
|
||||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu Makefile
|
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
if test -d $$d/$$file; then \
|
if test -d $$d/$$file; then \
|
||||||
@@ -312,33 +335,33 @@ distclean-generic:
|
|||||||
-rm -f config.cache config.log stamp-h stamp-h[0-9]*
|
-rm -f config.cache config.log stamp-h stamp-h[0-9]*
|
||||||
|
|
||||||
maintainer-clean-generic:
|
maintainer-clean-generic:
|
||||||
mostlyclean-am: mostlyclean-tags mostlyclean-generic
|
mostlyclean-am: mostlyclean-hdr mostlyclean-tags mostlyclean-generic
|
||||||
|
|
||||||
mostlyclean: mostlyclean-recursive
|
mostlyclean: mostlyclean-recursive
|
||||||
|
|
||||||
clean-am: clean-tags clean-generic mostlyclean-am
|
clean-am: clean-hdr clean-tags clean-generic mostlyclean-am
|
||||||
|
|
||||||
clean: clean-recursive
|
clean: clean-recursive
|
||||||
|
|
||||||
distclean-am: distclean-tags distclean-generic clean-am
|
distclean-am: distclean-hdr distclean-tags distclean-generic clean-am
|
||||||
-rm -f libtool
|
-rm -f libtool
|
||||||
|
|
||||||
distclean: distclean-recursive
|
distclean: distclean-recursive
|
||||||
-rm -f config.status
|
-rm -f config.status
|
||||||
|
|
||||||
maintainer-clean-am: maintainer-clean-tags maintainer-clean-generic \
|
maintainer-clean-am: maintainer-clean-hdr maintainer-clean-tags \
|
||||||
distclean-am
|
maintainer-clean-generic distclean-am
|
||||||
@echo "This command is intended for maintainers to use;"
|
@echo "This command is intended for maintainers to use;"
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
|
|
||||||
maintainer-clean: maintainer-clean-recursive
|
maintainer-clean: maintainer-clean-recursive
|
||||||
-rm -f config.status
|
-rm -f config.status
|
||||||
|
|
||||||
.PHONY: install-data-recursive uninstall-data-recursive \
|
.PHONY: mostlyclean-hdr distclean-hdr clean-hdr maintainer-clean-hdr \
|
||||||
install-exec-recursive uninstall-exec-recursive installdirs-recursive \
|
install-data-recursive uninstall-data-recursive install-exec-recursive \
|
||||||
uninstalldirs-recursive all-recursive check-recursive \
|
uninstall-exec-recursive installdirs-recursive uninstalldirs-recursive \
|
||||||
installcheck-recursive info-recursive dvi-recursive \
|
all-recursive check-recursive installcheck-recursive info-recursive \
|
||||||
mostlyclean-recursive distclean-recursive clean-recursive \
|
dvi-recursive mostlyclean-recursive distclean-recursive clean-recursive \
|
||||||
maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
|
maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
|
||||||
distclean-tags clean-tags maintainer-clean-tags distdir info-am info \
|
distclean-tags clean-tags maintainer-clean-tags distdir info-am info \
|
||||||
dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
|
dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
|
||||||
|
|||||||
19
NEWS
19
NEWS
@@ -52,6 +52,25 @@ Default configuration for user specific menus installed in
|
|||||||
and ~/GNUstep/Library/WindowMaker/UserMenus.
|
and ~/GNUstep/Library/WindowMaker/UserMenus.
|
||||||
|
|
||||||
|
|
||||||
|
Omnipresent icons in Clip
|
||||||
|
-------------------------
|
||||||
|
|
||||||
|
Added ability to set icons docked in Clip to be omnipresent on all workspaces.
|
||||||
|
To set/reset this flag use the "Settings Panel" for that specific icon (right
|
||||||
|
click on docked icon, and select "Settings").
|
||||||
|
An icon can be set to omnipresent, only if its position is free in all the
|
||||||
|
workspaces, else you will be informed of the problem and asked to fix it first.
|
||||||
|
Also when dragging an omnipresent icon around in Clip, all the icons docked in
|
||||||
|
all the workspaces are shown while the dragging is done, to let one easily see
|
||||||
|
where are free slots in all workspaces.
|
||||||
|
|
||||||
|
Now before you load your gun to start a flame war because this is against your
|
||||||
|
principles you love so much, please sit down and think that this is a feature,
|
||||||
|
which, if you don't use, the old behaviour of the Clip is totally preserved.
|
||||||
|
It just adds some extra capabilities to the Clip for people who think that this
|
||||||
|
is useful.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--- 0.53.0
|
--- 0.53.0
|
||||||
|
|
||||||
|
|||||||
@@ -108,9 +108,9 @@ GZIP_ENV = --best
|
|||||||
all: all-redirect
|
all: all-redirect
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu WINGs/Resources/Makefile
|
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps WINGs/Resources/Makefile
|
||||||
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||||
cd $(top_builddir) \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
|
||||||
@@ -142,11 +142,6 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|||||||
subdir = WINGs/Resources
|
subdir = WINGs/Resources
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
distdir: $(DISTFILES)
|
||||||
here=`cd $(top_builddir) && pwd`; \
|
|
||||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
|
||||||
distdir=`cd $(distdir) && pwd`; \
|
|
||||||
cd $(top_srcdir) \
|
|
||||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu WINGs/Resources/Makefile
|
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
if test -d $$d/$$file; then \
|
if test -d $$d/$$file; then \
|
||||||
|
|||||||
@@ -120,9 +120,9 @@ all: all-redirect
|
|||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
.SUFFIXES: .mo .po
|
.SUFFIXES: .mo .po
|
||||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu WPrefs.app/po/Makefile
|
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps WPrefs.app/po/Makefile
|
||||||
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||||
cd $(top_builddir) \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
|
||||||
@@ -135,11 +135,6 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|||||||
subdir = WPrefs.app/po
|
subdir = WPrefs.app/po
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
distdir: $(DISTFILES)
|
||||||
here=`cd $(top_builddir) && pwd`; \
|
|
||||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
|
||||||
distdir=`cd $(distdir) && pwd`; \
|
|
||||||
cd $(top_srcdir) \
|
|
||||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu WPrefs.app/po/Makefile
|
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
if test -d $$d/$$file; then \
|
if test -d $$d/$$file; then \
|
||||||
|
|||||||
@@ -109,9 +109,9 @@ GZIP_ENV = --best
|
|||||||
all: all-redirect
|
all: all-redirect
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu WPrefs.app/tiff/Makefile
|
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps WPrefs.app/tiff/Makefile
|
||||||
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||||
cd $(top_builddir) \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
|
||||||
@@ -143,11 +143,6 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|||||||
subdir = WPrefs.app/tiff
|
subdir = WPrefs.app/tiff
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
distdir: $(DISTFILES)
|
||||||
here=`cd $(top_builddir) && pwd`; \
|
|
||||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
|
||||||
distdir=`cd $(distdir) && pwd`; \
|
|
||||||
cd $(top_srcdir) \
|
|
||||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu WPrefs.app/tiff/Makefile
|
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
if test -d $$d/$$file; then \
|
if test -d $$d/$$file; then \
|
||||||
|
|||||||
@@ -109,9 +109,9 @@ GZIP_ENV = --best
|
|||||||
all: all-redirect
|
all: all-redirect
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu WPrefs.app/xpm/Makefile
|
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps WPrefs.app/xpm/Makefile
|
||||||
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||||
cd $(top_builddir) \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
|
||||||
@@ -143,11 +143,6 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|||||||
subdir = WPrefs.app/xpm
|
subdir = WPrefs.app/xpm
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
distdir: $(DISTFILES)
|
||||||
here=`cd $(top_builddir) && pwd`; \
|
|
||||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
|
||||||
distdir=`cd $(distdir) && pwd`; \
|
|
||||||
cd $(top_srcdir) \
|
|
||||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu WPrefs.app/xpm/Makefile
|
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
if test -d $$d/$$file; then \
|
if test -d $$d/$$file; then \
|
||||||
|
|||||||
@@ -108,9 +108,9 @@ GZIP_ENV = --best
|
|||||||
all: all-redirect
|
all: all-redirect
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu WindowMaker/Backgrounds/Makefile
|
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps WindowMaker/Backgrounds/Makefile
|
||||||
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||||
cd $(top_builddir) \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
|
||||||
@@ -142,11 +142,6 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|||||||
subdir = WindowMaker/Backgrounds
|
subdir = WindowMaker/Backgrounds
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
distdir: $(DISTFILES)
|
||||||
here=`cd $(top_builddir) && pwd`; \
|
|
||||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
|
||||||
distdir=`cd $(distdir) && pwd`; \
|
|
||||||
cd $(top_srcdir) \
|
|
||||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu WindowMaker/Backgrounds/Makefile
|
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
if test -d $$d/$$file; then \
|
if test -d $$d/$$file; then \
|
||||||
|
|||||||
@@ -110,9 +110,9 @@ GZIP_ENV = --best
|
|||||||
all: all-redirect
|
all: all-redirect
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu WindowMaker/Defaults/Makefile
|
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps WindowMaker/Defaults/Makefile
|
||||||
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||||
cd $(top_builddir) \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
|
||||||
@@ -144,11 +144,6 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|||||||
subdir = WindowMaker/Defaults
|
subdir = WindowMaker/Defaults
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
distdir: $(DISTFILES)
|
||||||
here=`cd $(top_builddir) && pwd`; \
|
|
||||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
|
||||||
distdir=`cd $(distdir) && pwd`; \
|
|
||||||
cd $(top_srcdir) \
|
|
||||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu WindowMaker/Defaults/Makefile
|
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
if test -d $$d/$$file; then \
|
if test -d $$d/$$file; then \
|
||||||
|
|||||||
@@ -110,9 +110,9 @@ GZIP_ENV = --best
|
|||||||
all: all-redirect
|
all: all-redirect
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu WindowMaker/IconSets/Makefile
|
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps WindowMaker/IconSets/Makefile
|
||||||
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||||
cd $(top_builddir) \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
|
||||||
@@ -144,11 +144,6 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|||||||
subdir = WindowMaker/IconSets
|
subdir = WindowMaker/IconSets
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
distdir: $(DISTFILES)
|
||||||
here=`cd $(top_builddir) && pwd`; \
|
|
||||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
|
||||||
distdir=`cd $(distdir) && pwd`; \
|
|
||||||
cd $(top_srcdir) \
|
|
||||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu WindowMaker/IconSets/Makefile
|
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
if test -d $$d/$$file; then \
|
if test -d $$d/$$file; then \
|
||||||
|
|||||||
@@ -109,9 +109,9 @@ GZIP_ENV = --best
|
|||||||
all: all-redirect
|
all: all-redirect
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu WindowMaker/Icons/Makefile
|
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps WindowMaker/Icons/Makefile
|
||||||
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||||
cd $(top_builddir) \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
|
||||||
@@ -143,11 +143,6 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|||||||
subdir = WindowMaker/Icons
|
subdir = WindowMaker/Icons
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
distdir: $(DISTFILES)
|
||||||
here=`cd $(top_builddir) && pwd`; \
|
|
||||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
|
||||||
distdir=`cd $(distdir) && pwd`; \
|
|
||||||
cd $(top_srcdir) \
|
|
||||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu WindowMaker/Icons/Makefile
|
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
if test -d $$d/$$file; then \
|
if test -d $$d/$$file; then \
|
||||||
|
|||||||
@@ -111,9 +111,9 @@ GZIP_ENV = --best
|
|||||||
all: all-redirect
|
all: all-redirect
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu WindowMaker/Makefile
|
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps WindowMaker/Makefile
|
||||||
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||||
cd $(top_builddir) \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
|
||||||
@@ -231,11 +231,6 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|||||||
subdir = WindowMaker
|
subdir = WindowMaker
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
distdir: $(DISTFILES)
|
||||||
here=`cd $(top_builddir) && pwd`; \
|
|
||||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
|
||||||
distdir=`cd $(distdir) && pwd`; \
|
|
||||||
cd $(top_srcdir) \
|
|
||||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu WindowMaker/Makefile
|
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
if test -d $$d/$$file; then \
|
if test -d $$d/$$file; then \
|
||||||
|
|||||||
@@ -109,9 +109,9 @@ GZIP_ENV = --best
|
|||||||
all: all-redirect
|
all: all-redirect
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu WindowMaker/Pixmaps/Makefile
|
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps WindowMaker/Pixmaps/Makefile
|
||||||
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||||
cd $(top_builddir) \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
|
||||||
@@ -143,11 +143,6 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|||||||
subdir = WindowMaker/Pixmaps
|
subdir = WindowMaker/Pixmaps
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
distdir: $(DISTFILES)
|
||||||
here=`cd $(top_builddir) && pwd`; \
|
|
||||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
|
||||||
distdir=`cd $(distdir) && pwd`; \
|
|
||||||
cd $(top_srcdir) \
|
|
||||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu WindowMaker/Pixmaps/Makefile
|
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
if test -d $$d/$$file; then \
|
if test -d $$d/$$file; then \
|
||||||
|
|||||||
@@ -109,9 +109,9 @@ GZIP_ENV = --best
|
|||||||
all: all-redirect
|
all: all-redirect
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu WindowMaker/Styles/Makefile
|
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps WindowMaker/Styles/Makefile
|
||||||
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||||
cd $(top_builddir) \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
|
||||||
@@ -143,11 +143,6 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|||||||
subdir = WindowMaker/Styles
|
subdir = WindowMaker/Styles
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
distdir: $(DISTFILES)
|
||||||
here=`cd $(top_builddir) && pwd`; \
|
|
||||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
|
||||||
distdir=`cd $(distdir) && pwd`; \
|
|
||||||
cd $(top_srcdir) \
|
|
||||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu WindowMaker/Styles/Makefile
|
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
if test -d $$d/$$file; then \
|
if test -d $$d/$$file; then \
|
||||||
|
|||||||
@@ -110,9 +110,9 @@ GZIP_ENV = --best
|
|||||||
all: all-redirect
|
all: all-redirect
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu WindowMaker/Themes/Makefile
|
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps WindowMaker/Themes/Makefile
|
||||||
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||||
cd $(top_builddir) \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
|
||||||
@@ -230,11 +230,6 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|||||||
subdir = WindowMaker/Themes
|
subdir = WindowMaker/Themes
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
distdir: $(DISTFILES)
|
||||||
here=`cd $(top_builddir) && pwd`; \
|
|
||||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
|
||||||
distdir=`cd $(distdir) && pwd`; \
|
|
||||||
cd $(top_srcdir) \
|
|
||||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu WindowMaker/Themes/Makefile
|
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
if test -d $$d/$$file; then \
|
if test -d $$d/$$file; then \
|
||||||
|
|||||||
@@ -102,9 +102,9 @@ GZIP_ENV = --best
|
|||||||
all: all-redirect
|
all: all-redirect
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu contrib/Makefile
|
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps contrib/Makefile
|
||||||
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||||
cd $(top_builddir) \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
|
||||||
@@ -117,11 +117,6 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|||||||
subdir = contrib
|
subdir = contrib
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
distdir: $(DISTFILES)
|
||||||
here=`cd $(top_builddir) && pwd`; \
|
|
||||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
|
||||||
distdir=`cd $(distdir) && pwd`; \
|
|
||||||
cd $(top_srcdir) \
|
|
||||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu contrib/Makefile
|
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
if test -d $$d/$$file; then \
|
if test -d $$d/$$file; then \
|
||||||
|
|||||||
@@ -109,9 +109,9 @@ GZIP_ENV = --best
|
|||||||
all: all-redirect
|
all: all-redirect
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/Makefile
|
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps doc/Makefile
|
||||||
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||||
cd $(top_builddir) \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
|
||||||
@@ -163,11 +163,6 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|||||||
subdir = doc
|
subdir = doc
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
distdir: $(DISTFILES)
|
||||||
here=`cd $(top_builddir) && pwd`; \
|
|
||||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
|
||||||
distdir=`cd $(distdir) && pwd`; \
|
|
||||||
cd $(top_srcdir) \
|
|
||||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu doc/Makefile
|
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
if test -d $$d/$$file; then \
|
if test -d $$d/$$file; then \
|
||||||
|
|||||||
@@ -120,9 +120,9 @@ all: all-redirect
|
|||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
.SUFFIXES: .mo .po
|
.SUFFIXES: .mo .po
|
||||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu po/Makefile
|
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps po/Makefile
|
||||||
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||||
cd $(top_builddir) \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
|
||||||
@@ -135,11 +135,6 @@ distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|||||||
subdir = po
|
subdir = po
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
distdir: $(DISTFILES)
|
||||||
here=`cd $(top_builddir) && pwd`; \
|
|
||||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
|
||||||
distdir=`cd $(distdir) && pwd`; \
|
|
||||||
cd $(top_srcdir) \
|
|
||||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu po/Makefile
|
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
if test -d $$d/$$file; then \
|
if test -d $$d/$$file; then \
|
||||||
|
|||||||
131
src/appicon.c
131
src/appicon.c
@@ -1,10 +1,10 @@
|
|||||||
/* appicon.c- icon for applications (not mini-window)
|
/* appicon.c- icon for applications (not mini-window)
|
||||||
*
|
*
|
||||||
* Window Maker window manager
|
* Window Maker window manager
|
||||||
*
|
*
|
||||||
* Copyright (c) 1997, 1998 Alfredo K. Kojima
|
* Copyright (c) 1997, 1998 Alfredo K. Kojima
|
||||||
* Copyright (c) 1998 Dan Pascu
|
* Copyright (c) 1998 Dan Pascu
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
||||||
* USA.
|
* USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -45,7 +45,7 @@
|
|||||||
#include "dialog.h"
|
#include "dialog.h"
|
||||||
#include "client.h"
|
#include "client.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* icon_file for the dock is got from the preferences file by
|
* icon_file for the dock is got from the preferences file by
|
||||||
* using the classname/instancename
|
* using the classname/instancename
|
||||||
*/
|
*/
|
||||||
@@ -83,7 +83,7 @@ wAppIconCreateForDock(WScreen *scr, char *command, char *wm_instance,
|
|||||||
scr->app_icon_list = dicon;
|
scr->app_icon_list = dicon;
|
||||||
|
|
||||||
if (command) {
|
if (command) {
|
||||||
dicon->command = wstrdup(command);
|
dicon->command = wstrdup(command);
|
||||||
}
|
}
|
||||||
if (wm_class)
|
if (wm_class)
|
||||||
dicon->wm_class = wstrdup(wm_class);
|
dicon->wm_class = wstrdup(wm_class);
|
||||||
@@ -96,7 +96,7 @@ wAppIconCreateForDock(WScreen *scr, char *command, char *wm_instance,
|
|||||||
|
|
||||||
path = wDefaultGetIconFile(scr, wm_instance, wm_class, False);
|
path = wDefaultGetIconFile(scr, wm_instance, wm_class, False);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (path)
|
if (path)
|
||||||
path = FindImage(wPreferences.icon_path, path);
|
path = FindImage(wPreferences.icon_path, path);
|
||||||
|
|
||||||
@@ -180,7 +180,7 @@ wAppIconCreate(WWindow *leader_win)
|
|||||||
(strcmp(leader_win->wm_instance, tinstance) == 0))
|
(strcmp(leader_win->wm_instance, tinstance) == 0))
|
||||||
{
|
{
|
||||||
/* We have a winner */
|
/* We have a winner */
|
||||||
wrelease(aicon);
|
wrelease(aicon);
|
||||||
atmp->num_apps++;
|
atmp->num_apps++;
|
||||||
applist->next = atmp->applist;
|
applist->next = atmp->applist;
|
||||||
if (atmp->applist)
|
if (atmp->applist)
|
||||||
@@ -308,7 +308,7 @@ drawCorner(WIcon *icon, WWindow *wwin, int active)
|
|||||||
#endif /* NEWAPPICON */
|
#endif /* NEWAPPICON */
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
wAppIconMove(WAppIcon *aicon, int x, int y)
|
wAppIconMove(WAppIcon *aicon, int x, int y)
|
||||||
{
|
{
|
||||||
XMoveWindow(dpy, aicon->icon->core->window, x, y);
|
XMoveWindow(dpy, aicon->icon->core->window, x, y);
|
||||||
@@ -331,13 +331,13 @@ updateDockNumbers(WScreen *scr)
|
|||||||
my_gc_values.foreground = scr->white_pixel;
|
my_gc_values.foreground = scr->white_pixel;
|
||||||
numbers_gc = XCreateGC(dpy, dicon->icon->core->window,
|
numbers_gc = XCreateGC(dpy, dicon->icon->core->window,
|
||||||
my_v_mask, &my_gc_values);
|
my_v_mask, &my_gc_values);
|
||||||
|
|
||||||
ws_numbers = malloc(20);
|
ws_numbers = malloc(20);
|
||||||
sprintf(ws_numbers, "%i [ %i ]", scr->current_workspace+1,
|
sprintf(ws_numbers, "%i [ %i ]", scr->current_workspace+1,
|
||||||
((scr->current_workspace/10)+1));
|
((scr->current_workspace/10)+1));
|
||||||
length = strlen(ws_numbers);
|
length = strlen(ws_numbers);
|
||||||
|
|
||||||
XClearArea(dpy, dicon->icon->core->window, 2, 2, 50,
|
XClearArea(dpy, dicon->icon->core->window, 2, 2, 50,
|
||||||
scr->icon_title_font->y+1, False);
|
scr->icon_title_font->y+1, False);
|
||||||
|
|
||||||
#ifndef I18N_MB
|
#ifndef I18N_MB
|
||||||
@@ -381,7 +381,7 @@ wAppIconPaint(WAppIcon *aicon)
|
|||||||
&& aicon->command!=NULL) {
|
&& aicon->command!=NULL) {
|
||||||
XSetClipMask(dpy, scr->copy_gc, scr->dock_dots->mask);
|
XSetClipMask(dpy, scr->copy_gc, scr->dock_dots->mask);
|
||||||
XSetClipOrigin(dpy, scr->copy_gc, 0, 0);
|
XSetClipOrigin(dpy, scr->copy_gc, 0, 0);
|
||||||
XCopyArea(dpy, scr->dock_dots->image, aicon->icon->core->window,
|
XCopyArea(dpy, scr->dock_dots->image, aicon->icon->core->window,
|
||||||
scr->copy_gc, 0, 0, scr->dock_dots->width,
|
scr->copy_gc, 0, 0, scr->dock_dots->width,
|
||||||
scr->dock_dots->height, 0, 0);
|
scr->dock_dots->height, 0, 0);
|
||||||
}
|
}
|
||||||
@@ -390,16 +390,14 @@ wAppIconPaint(WAppIcon *aicon)
|
|||||||
{
|
{
|
||||||
WApplication *wapp;
|
WApplication *wapp;
|
||||||
wapp = wApplicationOf(aicon->main_window);
|
wapp = wApplicationOf(aicon->main_window);
|
||||||
if (wapp) {
|
if (wapp && wapp->flags.hidden) {
|
||||||
if (wapp->flags.hidden) {
|
XSetClipMask(dpy, scr->copy_gc, scr->dock_dots->mask);
|
||||||
XSetClipMask(dpy, scr->copy_gc, scr->dock_dots->mask);
|
XSetClipOrigin(dpy, scr->copy_gc, 0, 0);
|
||||||
XSetClipOrigin(dpy, scr->copy_gc, 0, 0);
|
XCopyArea(dpy, scr->dock_dots->image,
|
||||||
XCopyArea(dpy, scr->dock_dots->image,
|
aicon->icon->core->window,
|
||||||
aicon->icon->core->window,
|
scr->copy_gc, 0, 0, 7,
|
||||||
scr->copy_gc, 0, 0, 7,
|
scr->dock_dots->height, 0, 0);
|
||||||
scr->dock_dots->height, 0, 0);
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
#endif /* HIDDENDOT */
|
#endif /* HIDDENDOT */
|
||||||
|
|
||||||
@@ -429,7 +427,7 @@ wAppIconPaint(WAppIcon *aicon)
|
|||||||
|
|
||||||
XSetClipMask(dpy, scr->copy_gc, None);
|
XSetClipMask(dpy, scr->copy_gc, None);
|
||||||
if (aicon->launching) {
|
if (aicon->launching) {
|
||||||
XFillRectangle(dpy, aicon->icon->core->window, scr->stipple_gc,
|
XFillRectangle(dpy, aicon->icon->core->window, scr->stipple_gc,
|
||||||
0, 0, wPreferences.icon_size, wPreferences.icon_size);
|
0, 0, wPreferences.icon_size, wPreferences.icon_size);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -440,23 +438,23 @@ wAppIconPaint(WAppIcon *aicon)
|
|||||||
|
|
||||||
#ifdef REDUCE_APPICONS
|
#ifdef REDUCE_APPICONS
|
||||||
unsigned int
|
unsigned int
|
||||||
wAppIconReduceAppCount(WApplication *wapp)
|
wAppIconReduceAppCount(WApplication *wapp)
|
||||||
{
|
{
|
||||||
WAppIconAppList *applist;
|
WAppIconAppList *applist;
|
||||||
|
|
||||||
if (wapp == NULL)
|
if (wapp == NULL)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if (wapp->app_icon == NULL)
|
if (wapp->app_icon == NULL)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
/* If given a main window, check the applist
|
/* If given a main window, check the applist
|
||||||
* and remove the if it exists
|
* and remove the if it exists
|
||||||
*/
|
*/
|
||||||
applist = wapp->app_icon->applist;
|
applist = wapp->app_icon->applist;
|
||||||
while (applist != NULL) {
|
while (applist != NULL) {
|
||||||
if (applist->wapp == wapp) {
|
if (applist->wapp == wapp) {
|
||||||
/* If this app owns the appicon, change the appicon's
|
/* If this app owns the appicon, change the appicon's
|
||||||
* owner to the next app in the list or NULL
|
* owner to the next app in the list or NULL
|
||||||
*/
|
*/
|
||||||
if (wapp->app_icon->icon->owner == applist->wapp->main_window_desc)
|
if (wapp->app_icon->icon->owner == applist->wapp->main_window_desc)
|
||||||
@@ -496,7 +494,7 @@ static void
|
|||||||
hideCallback(WMenu *menu, WMenuEntry *entry)
|
hideCallback(WMenu *menu, WMenuEntry *entry)
|
||||||
{
|
{
|
||||||
WApplication *wapp = (WApplication*)entry->clientdata;
|
WApplication *wapp = (WApplication*)entry->clientdata;
|
||||||
|
|
||||||
if (wapp->flags.hidden) {
|
if (wapp->flags.hidden) {
|
||||||
wWorkspaceChange(menu->menu->screen_ptr, wapp->last_workspace);
|
wWorkspaceChange(menu->menu->screen_ptr, wapp->last_workspace);
|
||||||
wUnhideApplication(wapp, False, False);
|
wUnhideApplication(wapp, False, False);
|
||||||
@@ -510,7 +508,7 @@ static void
|
|||||||
unhideHereCallback(WMenu *menu, WMenuEntry *entry)
|
unhideHereCallback(WMenu *menu, WMenuEntry *entry)
|
||||||
{
|
{
|
||||||
WApplication *wapp = (WApplication*)entry->clientdata;
|
WApplication *wapp = (WApplication*)entry->clientdata;
|
||||||
|
|
||||||
wUnhideApplication(wapp, False, True);
|
wUnhideApplication(wapp, False, True);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -529,11 +527,11 @@ setIconCallback(WMenu *menu, WMenuEntry *entry)
|
|||||||
return;
|
return;
|
||||||
icon->editing = 1;
|
icon->editing = 1;
|
||||||
scr = icon->icon->core->screen_ptr;
|
scr = icon->icon->core->screen_ptr;
|
||||||
|
|
||||||
wretain(icon);
|
wretain(icon);
|
||||||
|
|
||||||
result = wIconChooserDialog(scr, &file, icon->wm_instance, icon->wm_class);
|
result = wIconChooserDialog(scr, &file, icon->wm_instance, icon->wm_class);
|
||||||
|
|
||||||
if (result && !icon->destroyed) {
|
if (result && !icon->destroyed) {
|
||||||
if (file[0]==0) {
|
if (file[0]==0) {
|
||||||
free(file);
|
free(file);
|
||||||
@@ -541,7 +539,7 @@ setIconCallback(WMenu *menu, WMenuEntry *entry)
|
|||||||
}
|
}
|
||||||
if (!wIconChangeImageFile(icon->icon, file)) {
|
if (!wIconChangeImageFile(icon->icon, file)) {
|
||||||
wMessageDialog(scr, _("Error"),
|
wMessageDialog(scr, _("Error"),
|
||||||
_("Could not open specified icon file"),
|
_("Could not open specified icon file"),
|
||||||
_("OK"), NULL, NULL);
|
_("OK"), NULL, NULL);
|
||||||
} else {
|
} else {
|
||||||
wDefaultChangeIcon(scr, icon->wm_instance, icon->wm_class, file);
|
wDefaultChangeIcon(scr, icon->wm_instance, icon->wm_class, file);
|
||||||
@@ -565,7 +563,7 @@ killCallback(WMenu *menu, WMenuEntry *entry)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
WCHANGE_STATE(WSTATE_MODAL);
|
WCHANGE_STATE(WSTATE_MODAL);
|
||||||
|
|
||||||
assert(entry->clientdata!=NULL);
|
assert(entry->clientdata!=NULL);
|
||||||
|
|
||||||
buffer = wstrappend(wapp->app_icon ? wapp->app_icon->wm_class : NULL,
|
buffer = wstrappend(wapp->app_icon ? wapp->app_icon->wm_class : NULL,
|
||||||
@@ -592,7 +590,7 @@ static WMenu*
|
|||||||
createApplicationMenu(WScreen *scr)
|
createApplicationMenu(WScreen *scr)
|
||||||
{
|
{
|
||||||
WMenu *menu;
|
WMenu *menu;
|
||||||
|
|
||||||
menu = wMenuCreate(scr, NULL, False);
|
menu = wMenuCreate(scr, NULL, False);
|
||||||
wMenuAddCallback(menu, _("Unhide Here"), unhideHereCallback, NULL);
|
wMenuAddCallback(menu, _("Unhide Here"), unhideHereCallback, NULL);
|
||||||
wMenuAddCallback(menu, _("Hide"), hideCallback, NULL);
|
wMenuAddCallback(menu, _("Hide"), hideCallback, NULL);
|
||||||
@@ -609,7 +607,7 @@ openApplicationMenu(WApplication *wapp, int x, int y)
|
|||||||
WMenu *menu;
|
WMenu *menu;
|
||||||
WScreen *scr = wapp->main_window_desc->screen_ptr;
|
WScreen *scr = wapp->main_window_desc->screen_ptr;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
if (!scr->icon_menu) {
|
if (!scr->icon_menu) {
|
||||||
scr->icon_menu = createApplicationMenu(scr);
|
scr->icon_menu = createApplicationMenu(scr);
|
||||||
free(scr->icon_menu->entries[1]->text);
|
free(scr->icon_menu->entries[1]->text);
|
||||||
@@ -642,7 +640,7 @@ openApplicationMenu(WApplication *wapp, int x, int y)
|
|||||||
|
|
||||||
/******************************************************************/
|
/******************************************************************/
|
||||||
|
|
||||||
static void
|
static void
|
||||||
iconExpose(WObjDescriptor *desc, XEvent *event)
|
iconExpose(WObjDescriptor *desc, XEvent *event)
|
||||||
{
|
{
|
||||||
wAppIconPaint(desc->parent);
|
wAppIconPaint(desc->parent);
|
||||||
@@ -664,7 +662,7 @@ iconDblClick(WObjDescriptor *desc, XEvent *event)
|
|||||||
fprintf(stderr, "Double-click disabled: missing main window.\n");
|
fprintf(stderr, "Double-click disabled: missing main window.\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
wapp = wApplicationOf(aicon->icon->owner->main_window);
|
wapp = wApplicationOf(aicon->icon->owner->main_window);
|
||||||
#ifdef DEBUG0
|
#ifdef DEBUG0
|
||||||
@@ -694,7 +692,7 @@ iconDblClick(WObjDescriptor *desc, XEvent *event)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
appIconMouseDown(WObjDescriptor *desc, XEvent *event)
|
appIconMouseDown(WObjDescriptor *desc, XEvent *event)
|
||||||
{
|
{
|
||||||
WAppIcon *aicon = desc->parent;
|
WAppIcon *aicon = desc->parent;
|
||||||
@@ -711,10 +709,11 @@ appIconMouseDown(WObjDescriptor *desc, XEvent *event)
|
|||||||
int ix, iy;
|
int ix, iy;
|
||||||
int clickButton = event->xbutton.button;
|
int clickButton = event->xbutton.button;
|
||||||
Pixmap ghost = None;
|
Pixmap ghost = None;
|
||||||
|
Window wins[2];
|
||||||
|
|
||||||
if (aicon->editing || WCHECK_STATE(WSTATE_MODAL))
|
if (aicon->editing || WCHECK_STATE(WSTATE_MODAL))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (IsDoubleClick(scr, event)) {
|
if (IsDoubleClick(scr, event)) {
|
||||||
iconDblClick(desc, event);
|
iconDblClick(desc, event);
|
||||||
return;
|
return;
|
||||||
@@ -727,7 +726,7 @@ appIconMouseDown(WObjDescriptor *desc, XEvent *event)
|
|||||||
if (!wapp)
|
if (!wapp)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
openApplicationMenu(wapp, event->xbutton.x_root,
|
openApplicationMenu(wapp, event->xbutton.x_root,
|
||||||
event->xbutton.y_root);
|
event->xbutton.y_root);
|
||||||
|
|
||||||
/* allow drag select of menu */
|
/* allow drag select of menu */
|
||||||
@@ -745,7 +744,7 @@ appIconMouseDown(WObjDescriptor *desc, XEvent *event)
|
|||||||
else
|
else
|
||||||
wRaiseFrame(icon->core);
|
wRaiseFrame(icon->core);
|
||||||
|
|
||||||
|
|
||||||
if (XGrabPointer(dpy, icon->core->window, True, ButtonMotionMask
|
if (XGrabPointer(dpy, icon->core->window, True, ButtonMotionMask
|
||||||
|ButtonReleaseMask|ButtonPressMask, GrabModeAsync,
|
|ButtonReleaseMask|ButtonPressMask, GrabModeAsync,
|
||||||
GrabModeAsync, None, None, CurrentTime) !=GrabSuccess) {
|
GrabModeAsync, None, None, CurrentTime) !=GrabSuccess) {
|
||||||
@@ -757,6 +756,18 @@ appIconMouseDown(WObjDescriptor *desc, XEvent *event)
|
|||||||
else
|
else
|
||||||
dockable = canBeDocked(icon->owner);
|
dockable = canBeDocked(icon->owner);
|
||||||
|
|
||||||
|
wins[0] = icon->core->window;
|
||||||
|
wins[1] = scr->dock_shadow;
|
||||||
|
XRestackWindows(dpy, wins, 2);
|
||||||
|
if (superfluous) {
|
||||||
|
if (icon->pixmap!=None)
|
||||||
|
ghost = MakeGhostIcon(scr, icon->pixmap);
|
||||||
|
else
|
||||||
|
ghost = MakeGhostIcon(scr, icon->core->window);
|
||||||
|
XSetWindowBackgroundPixmap(dpy, scr->dock_shadow,
|
||||||
|
ghost);
|
||||||
|
XClearWindow(dpy, scr->dock_shadow);
|
||||||
|
}
|
||||||
|
|
||||||
while (!done) {
|
while (!done) {
|
||||||
WMMaskEvent(dpy, PointerMotionMask|ButtonReleaseMask|ButtonPressMask
|
WMMaskEvent(dpy, PointerMotionMask|ButtonReleaseMask|ButtonPressMask
|
||||||
@@ -771,7 +782,7 @@ appIconMouseDown(WObjDescriptor *desc, XEvent *event)
|
|||||||
if (abs(dx-ev.xmotion.x)>=MOVE_THRESHOLD
|
if (abs(dx-ev.xmotion.x)>=MOVE_THRESHOLD
|
||||||
|| abs(dy-ev.xmotion.y)>=MOVE_THRESHOLD) {
|
|| abs(dy-ev.xmotion.y)>=MOVE_THRESHOLD) {
|
||||||
XChangeActivePointerGrab(dpy, ButtonMotionMask
|
XChangeActivePointerGrab(dpy, ButtonMotionMask
|
||||||
|ButtonReleaseMask|ButtonPressMask,
|
|ButtonReleaseMask|ButtonPressMask,
|
||||||
wCursor[WCUR_MOVE], CurrentTime);
|
wCursor[WCUR_MOVE], CurrentTime);
|
||||||
grabbed=1;
|
grabbed=1;
|
||||||
} else {
|
} else {
|
||||||
@@ -805,20 +816,6 @@ appIconMouseDown(WObjDescriptor *desc, XEvent *event)
|
|||||||
|
|
||||||
XMoveWindow(dpy, scr->dock_shadow, shad_x, shad_y);
|
XMoveWindow(dpy, scr->dock_shadow, shad_x, shad_y);
|
||||||
if (!docking) {
|
if (!docking) {
|
||||||
Window wins[2];
|
|
||||||
|
|
||||||
wins[0] = icon->core->window;
|
|
||||||
wins[1] = scr->dock_shadow;
|
|
||||||
XRestackWindows(dpy, wins, 2);
|
|
||||||
if (superfluous) {
|
|
||||||
if (icon->pixmap!=None)
|
|
||||||
ghost = MakeGhostIcon(scr, icon->pixmap);
|
|
||||||
else
|
|
||||||
ghost = MakeGhostIcon(scr, icon->core->window);
|
|
||||||
XSetWindowBackgroundPixmap(dpy, scr->dock_shadow,
|
|
||||||
ghost);
|
|
||||||
XClearWindow(dpy, scr->dock_shadow);
|
|
||||||
}
|
|
||||||
XMapWindow(dpy, scr->dock_shadow);
|
XMapWindow(dpy, scr->dock_shadow);
|
||||||
}
|
}
|
||||||
docking = 1;
|
docking = 1;
|
||||||
@@ -827,7 +824,7 @@ appIconMouseDown(WObjDescriptor *desc, XEvent *event)
|
|||||||
&ix, &iy, False)) {
|
&ix, &iy, False)) {
|
||||||
shad_x = workspace->clip->x_pos + ix*wPreferences.icon_size;
|
shad_x = workspace->clip->x_pos + ix*wPreferences.icon_size;
|
||||||
shad_y = workspace->clip->y_pos + iy*wPreferences.icon_size;
|
shad_y = workspace->clip->y_pos + iy*wPreferences.icon_size;
|
||||||
|
|
||||||
if (scr->last_dock != workspace->clip && collapsed) {
|
if (scr->last_dock != workspace->clip && collapsed) {
|
||||||
scr->last_dock->collapsed = 1;
|
scr->last_dock->collapsed = 1;
|
||||||
wDockHideIcons(scr->last_dock);
|
wDockHideIcons(scr->last_dock);
|
||||||
@@ -845,20 +842,6 @@ appIconMouseDown(WObjDescriptor *desc, XEvent *event)
|
|||||||
|
|
||||||
XMoveWindow(dpy, scr->dock_shadow, shad_x, shad_y);
|
XMoveWindow(dpy, scr->dock_shadow, shad_x, shad_y);
|
||||||
if (!docking) {
|
if (!docking) {
|
||||||
Window wins[2];
|
|
||||||
|
|
||||||
wins[0] = icon->core->window;
|
|
||||||
wins[1] = scr->dock_shadow;
|
|
||||||
XRestackWindows(dpy, wins, 2);
|
|
||||||
if (superfluous) {
|
|
||||||
if (icon->pixmap!=None)
|
|
||||||
ghost = MakeGhostIcon(scr, icon->pixmap);
|
|
||||||
else
|
|
||||||
ghost = MakeGhostIcon(scr, icon->core->window);
|
|
||||||
XSetWindowBackgroundPixmap(dpy, scr->dock_shadow,
|
|
||||||
ghost);
|
|
||||||
XClearWindow(dpy, scr->dock_shadow);
|
|
||||||
}
|
|
||||||
XMapWindow(dpy, scr->dock_shadow);
|
XMapWindow(dpy, scr->dock_shadow);
|
||||||
}
|
}
|
||||||
docking = 1;
|
docking = 1;
|
||||||
@@ -896,7 +879,7 @@ appIconMouseDown(WObjDescriptor *desc, XEvent *event)
|
|||||||
if (!docked) {
|
if (!docked) {
|
||||||
/* If icon could not be docked, slide it back to the old
|
/* If icon could not be docked, slide it back to the old
|
||||||
* position */
|
* position */
|
||||||
SlideWindow(icon->core->window, x, y, aicon->x_pos,
|
SlideWindow(icon->core->window, x, y, aicon->x_pos,
|
||||||
aicon->y_pos);
|
aicon->y_pos);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -927,5 +910,5 @@ appIconMouseDown(WObjDescriptor *desc, XEvent *event)
|
|||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
puts("End icon move");
|
puts("End icon move");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -76,6 +76,7 @@ typedef struct WAppIcon {
|
|||||||
|
|
||||||
unsigned int gnustep_app:1; /* if this is a GNUstep application */
|
unsigned int gnustep_app:1; /* if this is a GNUstep application */
|
||||||
unsigned int docked:1;
|
unsigned int docked:1;
|
||||||
|
unsigned int omnipresent:1; /* If omnipresent when docked in clip */
|
||||||
unsigned int attracted:1; /* If it was attracted by the clip */
|
unsigned int attracted:1; /* If it was attracted by the clip */
|
||||||
unsigned int launching:1;
|
unsigned int launching:1;
|
||||||
unsigned int running:1; /* application is already running */
|
unsigned int running:1; /* application is already running */
|
||||||
|
|||||||
591
src/dock.c
591
src/dock.c
File diff suppressed because it is too large
Load Diff
@@ -109,4 +109,10 @@ void wClipUpdateForWorkspaceChange(WScreen *scr, int workspace);
|
|||||||
|
|
||||||
RImage *wClipMakeTile(WScreen *scr, RImage *normalTile);
|
RImage *wClipMakeTile(WScreen *scr, RImage *normalTile);
|
||||||
|
|
||||||
|
#define WO_FAILED 0
|
||||||
|
#define WO_NOT_APPLICABLE 1
|
||||||
|
#define WO_SUCCESS 2
|
||||||
|
|
||||||
|
int wClipMakeIconOmnipresent(WAppIcon *aicon, int omnipresent);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
126
src/dockedapp.c
126
src/dockedapp.c
@@ -1,9 +1,9 @@
|
|||||||
/* dockedapp.c- docked application settings panel
|
/* dockedapp.c- docked application settings panel
|
||||||
*
|
*
|
||||||
* Window Maker window manager
|
* Window Maker window manager
|
||||||
*
|
*
|
||||||
* Copyright (c) 1998 Alfredo K. Kojima
|
* Copyright (c) 1998 Alfredo K. Kojima
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
||||||
* USA.
|
* USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -48,12 +48,12 @@ extern WPreferences wPreferences;
|
|||||||
typedef struct _AppSettingsPanel {
|
typedef struct _AppSettingsPanel {
|
||||||
WMWindow *win;
|
WMWindow *win;
|
||||||
WAppIcon *editedIcon;
|
WAppIcon *editedIcon;
|
||||||
|
|
||||||
WWindow *wwin;
|
WWindow *wwin;
|
||||||
|
|
||||||
WMLabel *iconLabel;
|
WMLabel *iconLabel;
|
||||||
WMLabel *nameLabel;
|
WMLabel *nameLabel;
|
||||||
|
|
||||||
WMFrame *commandFrame;
|
WMFrame *commandFrame;
|
||||||
WMTextField *commandField;
|
WMTextField *commandField;
|
||||||
|
|
||||||
@@ -66,6 +66,7 @@ typedef struct _AppSettingsPanel {
|
|||||||
WMButton *browseBtn;
|
WMButton *browseBtn;
|
||||||
|
|
||||||
WMButton *autoLaunchBtn;
|
WMButton *autoLaunchBtn;
|
||||||
|
WMButton *omnipresentBtn;
|
||||||
|
|
||||||
WMButton *okBtn;
|
WMButton *okBtn;
|
||||||
WMButton *cancelBtn;
|
WMButton *cancelBtn;
|
||||||
@@ -92,7 +93,7 @@ updateCommand(WAppIcon *icon, char *command)
|
|||||||
}
|
}
|
||||||
icon->command = command;
|
icon->command = command;
|
||||||
|
|
||||||
if (!icon->wm_class && !icon->wm_instance && icon->command
|
if (!icon->wm_class && !icon->wm_instance && icon->command
|
||||||
&& strlen(icon->command)>0) {
|
&& strlen(icon->command)>0) {
|
||||||
icon->forced_dock = 1;
|
icon->forced_dock = 1;
|
||||||
}
|
}
|
||||||
@@ -118,13 +119,13 @@ static void
|
|||||||
updateSettingsPanelIcon(AppSettingsPanel *panel)
|
updateSettingsPanelIcon(AppSettingsPanel *panel)
|
||||||
{
|
{
|
||||||
char *file;
|
char *file;
|
||||||
|
|
||||||
file = WMGetTextFieldText(panel->iconField);
|
file = WMGetTextFieldText(panel->iconField);
|
||||||
if (!file)
|
if (!file)
|
||||||
WMSetLabelImage(panel->iconLabel, NULL);
|
WMSetLabelImage(panel->iconLabel, NULL);
|
||||||
else {
|
else {
|
||||||
char *path;
|
char *path;
|
||||||
|
|
||||||
path = FindImage(wPreferences.icon_path, file);
|
path = FindImage(wPreferences.icon_path, file);
|
||||||
if (!path) {
|
if (!path) {
|
||||||
wwarning(_("could not find icon %s, used in a docked application"),
|
wwarning(_("could not find icon %s, used in a docked application"),
|
||||||
@@ -165,8 +166,8 @@ chooseIconCallback(WMWidget *self, void *clientData)
|
|||||||
panel->choosingIcon = 1;
|
panel->choosingIcon = 1;
|
||||||
|
|
||||||
WMSetButtonEnabled(panel->browseBtn, False);
|
WMSetButtonEnabled(panel->browseBtn, False);
|
||||||
|
|
||||||
result = wIconChooserDialog(panel->wwin->screen_ptr, &file,
|
result = wIconChooserDialog(panel->wwin->screen_ptr, &file,
|
||||||
panel->editedIcon->wm_instance,
|
panel->editedIcon->wm_instance,
|
||||||
panel->editedIcon->wm_class);
|
panel->editedIcon->wm_class);
|
||||||
|
|
||||||
@@ -177,7 +178,7 @@ chooseIconCallback(WMWidget *self, void *clientData)
|
|||||||
free(file);
|
free(file);
|
||||||
updateSettingsPanelIcon(panel);
|
updateSettingsPanelIcon(panel);
|
||||||
}
|
}
|
||||||
|
|
||||||
WMSetButtonEnabled(panel->browseBtn, True);
|
WMSetButtonEnabled(panel->browseBtn, True);
|
||||||
} else {
|
} else {
|
||||||
/* kluge for the case, the user asked to close the panel before
|
/* kluge for the case, the user asked to close the panel before
|
||||||
@@ -193,8 +194,8 @@ panelBtnCallback(WMWidget *self, void *data)
|
|||||||
WMButton *btn = self;
|
WMButton *btn = self;
|
||||||
AppSettingsPanel *panel = (AppSettingsPanel*)data;
|
AppSettingsPanel *panel = (AppSettingsPanel*)data;
|
||||||
char *text;
|
char *text;
|
||||||
int done;
|
int done, omnipresent;
|
||||||
|
|
||||||
done = 1;
|
done = 1;
|
||||||
if (panel->okBtn == btn) {
|
if (panel->okBtn == btn) {
|
||||||
text = WMGetTextFieldText(panel->iconField);
|
text = WMGetTextFieldText(panel->iconField);
|
||||||
@@ -204,10 +205,10 @@ panelBtnCallback(WMWidget *self, void *data)
|
|||||||
}
|
}
|
||||||
if (!wIconChangeImageFile(panel->editedIcon->icon, text)) {
|
if (!wIconChangeImageFile(panel->editedIcon->icon, text)) {
|
||||||
char *buf;
|
char *buf;
|
||||||
|
|
||||||
buf = wmalloc(strlen(text) + 64);
|
buf = wmalloc(strlen(text) + 64);
|
||||||
sprintf(buf, _("Could not open specified icon file: %s"), text);
|
sprintf(buf, _("Could not open specified icon file: %s"), text);
|
||||||
if (wMessageDialog(panel->wwin->screen_ptr, _("Error"), buf,
|
if (wMessageDialog(panel->wwin->screen_ptr, _("Error"), buf,
|
||||||
_("OK"), _("Ignore"), NULL) == WAPRDefault) {
|
_("OK"), _("Ignore"), NULL) == WAPRDefault) {
|
||||||
if (text)
|
if (text)
|
||||||
free(text);
|
free(text);
|
||||||
@@ -244,7 +245,19 @@ panelBtnCallback(WMWidget *self, void *data)
|
|||||||
updateDNDCommand(panel->editedIcon, text);
|
updateDNDCommand(panel->editedIcon, text);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
panel->editedIcon->auto_launch =
|
omnipresent = WMGetButtonSelected(panel->omnipresentBtn);
|
||||||
|
if (wClipMakeIconOmnipresent(panel->editedIcon, omnipresent) ==
|
||||||
|
WO_FAILED) {
|
||||||
|
wMessageDialog(panel->wwin->screen_ptr, _("Error"),
|
||||||
|
_("Sorry, icon cannot be made omnipresent. "
|
||||||
|
"Please make sure that no other icon is "
|
||||||
|
"docked in the same position on the other "
|
||||||
|
"workspaces, and try again."),
|
||||||
|
_("OK"), NULL, NULL);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
panel->editedIcon->auto_launch =
|
||||||
WMGetButtonSelected(panel->autoLaunchBtn);
|
WMGetButtonSelected(panel->autoLaunchBtn);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -254,10 +267,10 @@ panelBtnCallback(WMWidget *self, void *data)
|
|||||||
|
|
||||||
|
|
||||||
#define PWIDTH 295
|
#define PWIDTH 295
|
||||||
#define PHEIGHT 345
|
#define PHEIGHT 375
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
ShowDockAppSettingsPanel(WAppIcon *aicon)
|
ShowDockAppSettingsPanel(WAppIcon *aicon)
|
||||||
{
|
{
|
||||||
AppSettingsPanel *panel;
|
AppSettingsPanel *panel;
|
||||||
@@ -265,15 +278,15 @@ ShowDockAppSettingsPanel(WAppIcon *aicon)
|
|||||||
Window parent;
|
Window parent;
|
||||||
WMFont *font;
|
WMFont *font;
|
||||||
int x, y;
|
int x, y;
|
||||||
|
|
||||||
panel = wmalloc(sizeof(AppSettingsPanel));
|
panel = wmalloc(sizeof(AppSettingsPanel));
|
||||||
memset(panel, 0, sizeof(AppSettingsPanel));
|
memset(panel, 0, sizeof(AppSettingsPanel));
|
||||||
|
|
||||||
panel->editedIcon = aicon;
|
panel->editedIcon = aicon;
|
||||||
|
|
||||||
aicon->panel = panel;
|
aicon->panel = panel;
|
||||||
aicon->editing = 1;
|
aicon->editing = 1;
|
||||||
|
|
||||||
panel->win = WMCreateWindow(scr->wmscreen, "applicationSettings");
|
panel->win = WMCreateWindow(scr->wmscreen, "applicationSettings");
|
||||||
WMResizeWidget(panel->win, PWIDTH, PHEIGHT);
|
WMResizeWidget(panel->win, PWIDTH, PHEIGHT);
|
||||||
|
|
||||||
@@ -281,7 +294,7 @@ ShowDockAppSettingsPanel(WAppIcon *aicon)
|
|||||||
WMResizeWidget(panel->iconLabel, 64, 64);
|
WMResizeWidget(panel->iconLabel, 64, 64);
|
||||||
WMMoveWidget(panel->iconLabel, 10, 10);
|
WMMoveWidget(panel->iconLabel, 10, 10);
|
||||||
WMSetLabelImagePosition(panel->iconLabel, WIPImageOnly);
|
WMSetLabelImagePosition(panel->iconLabel, WIPImageOnly);
|
||||||
|
|
||||||
panel->nameLabel = WMCreateLabel(panel->win);
|
panel->nameLabel = WMCreateLabel(panel->win);
|
||||||
WMResizeWidget(panel->nameLabel, 190, 18);
|
WMResizeWidget(panel->nameLabel, 190, 18);
|
||||||
WMMoveWidget(panel->nameLabel, 80, 35);
|
WMMoveWidget(panel->nameLabel, 80, 35);
|
||||||
@@ -294,75 +307,84 @@ ShowDockAppSettingsPanel(WAppIcon *aicon)
|
|||||||
panel->autoLaunchBtn = WMCreateSwitchButton(panel->win);
|
panel->autoLaunchBtn = WMCreateSwitchButton(panel->win);
|
||||||
WMResizeWidget(panel->autoLaunchBtn, PWIDTH-30, 20);
|
WMResizeWidget(panel->autoLaunchBtn, PWIDTH-30, 20);
|
||||||
WMMoveWidget(panel->autoLaunchBtn, 15, 80);
|
WMMoveWidget(panel->autoLaunchBtn, 15, 80);
|
||||||
WMSetButtonText(panel->autoLaunchBtn,
|
WMSetButtonText(panel->autoLaunchBtn,
|
||||||
_("Start when WindowMaker is started"));
|
_("Start when WindowMaker is started"));
|
||||||
WMSetButtonSelected(panel->autoLaunchBtn, aicon->auto_launch);
|
WMSetButtonSelected(panel->autoLaunchBtn, aicon->auto_launch);
|
||||||
|
|
||||||
|
panel->omnipresentBtn = WMCreateSwitchButton(panel->win);
|
||||||
|
WMResizeWidget(panel->omnipresentBtn, PWIDTH-30, 20);
|
||||||
|
WMMoveWidget(panel->omnipresentBtn, 15, 102);
|
||||||
|
WMSetButtonText(panel->omnipresentBtn,
|
||||||
|
_("Omnipresent application icon"));
|
||||||
|
WMSetButtonEnabled(panel->omnipresentBtn,
|
||||||
|
aicon->dock!=scr->dock && aicon!=scr->clip_icon);
|
||||||
|
WMSetButtonSelected(panel->omnipresentBtn, (aicon->omnipresent ||
|
||||||
|
aicon->dock==scr->dock || aicon==scr->clip_icon));
|
||||||
|
|
||||||
panel->commandFrame = WMCreateFrame(panel->win);
|
panel->commandFrame = WMCreateFrame(panel->win);
|
||||||
WMResizeWidget(panel->commandFrame, 275, 50);
|
WMResizeWidget(panel->commandFrame, 275, 50);
|
||||||
WMMoveWidget(panel->commandFrame, 10, 105);
|
WMMoveWidget(panel->commandFrame, 10, 130);
|
||||||
WMSetFrameTitle(panel->commandFrame, _("Application path and arguments"));
|
WMSetFrameTitle(panel->commandFrame, _("Application path and arguments"));
|
||||||
|
|
||||||
panel->commandField = WMCreateTextField(panel->commandFrame);
|
panel->commandField = WMCreateTextField(panel->commandFrame);
|
||||||
WMResizeWidget(panel->commandField, 256, 20);
|
WMResizeWidget(panel->commandField, 256, 20);
|
||||||
WMMoveWidget(panel->commandField, 10, 20);
|
WMMoveWidget(panel->commandField, 10, 20);
|
||||||
WMSetTextFieldText(panel->commandField, aicon->command);
|
WMSetTextFieldText(panel->commandField, aicon->command);
|
||||||
|
|
||||||
panel->dndCommandFrame = WMCreateFrame(panel->win);
|
panel->dndCommandFrame = WMCreateFrame(panel->win);
|
||||||
WMResizeWidget(panel->dndCommandFrame, 275, 70);
|
WMResizeWidget(panel->dndCommandFrame, 275, 70);
|
||||||
WMMoveWidget(panel->dndCommandFrame, 10, 165);
|
WMMoveWidget(panel->dndCommandFrame, 10, 190);
|
||||||
WMSetFrameTitle(panel->dndCommandFrame,
|
WMSetFrameTitle(panel->dndCommandFrame,
|
||||||
_("Command for files dropped with DND"));
|
_("Command for files dropped with DND"));
|
||||||
|
|
||||||
panel->dndCommandField = WMCreateTextField(panel->dndCommandFrame);
|
panel->dndCommandField = WMCreateTextField(panel->dndCommandFrame);
|
||||||
WMResizeWidget(panel->dndCommandField, 256, 20);
|
WMResizeWidget(panel->dndCommandField, 256, 20);
|
||||||
WMMoveWidget(panel->dndCommandField, 10, 20);
|
WMMoveWidget(panel->dndCommandField, 10, 20);
|
||||||
|
|
||||||
panel->dndCommandLabel = WMCreateLabel(panel->dndCommandFrame);
|
panel->dndCommandLabel = WMCreateLabel(panel->dndCommandFrame);
|
||||||
WMResizeWidget(panel->dndCommandLabel, 256, 18);
|
WMResizeWidget(panel->dndCommandLabel, 256, 18);
|
||||||
WMMoveWidget(panel->dndCommandLabel, 10, 45);
|
WMMoveWidget(panel->dndCommandLabel, 10, 45);
|
||||||
#ifdef OFFIX_DND
|
#ifdef OFFIX_DND
|
||||||
WMSetTextFieldText(panel->dndCommandField, aicon->dnd_command);
|
WMSetTextFieldText(panel->dndCommandField, aicon->dnd_command);
|
||||||
WMSetLabelText(panel->dndCommandLabel,
|
WMSetLabelText(panel->dndCommandLabel,
|
||||||
_("%d will be replaced with the file name"));
|
_("%d will be replaced with the file name"));
|
||||||
#else
|
#else
|
||||||
WMSetTextFieldEditable(panel->dndCommandField, False);
|
WMSetTextFieldEditable(panel->dndCommandField, False);
|
||||||
WMSetLabelText(panel->dndCommandLabel,
|
WMSetLabelText(panel->dndCommandLabel,
|
||||||
_("DND support was not compiled in"));
|
_("DND support was not compiled in"));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
panel->iconFrame = WMCreateFrame(panel->win);
|
panel->iconFrame = WMCreateFrame(panel->win);
|
||||||
WMResizeWidget(panel->iconFrame, 275, 50);
|
WMResizeWidget(panel->iconFrame, 275, 50);
|
||||||
WMMoveWidget(panel->iconFrame, 10, 245);
|
WMMoveWidget(panel->iconFrame, 10, 270);
|
||||||
WMSetFrameTitle(panel->iconFrame, _("Icon Image"));
|
WMSetFrameTitle(panel->iconFrame, _("Icon Image"));
|
||||||
|
|
||||||
panel->iconField = WMCreateTextField(panel->iconFrame);
|
panel->iconField = WMCreateTextField(panel->iconFrame);
|
||||||
WMResizeWidget(panel->iconField, 176, 20);
|
WMResizeWidget(panel->iconField, 176, 20);
|
||||||
WMMoveWidget(panel->iconField, 10, 20);
|
WMMoveWidget(panel->iconField, 10, 20);
|
||||||
WMSetTextFieldText(panel->iconField,
|
WMSetTextFieldText(panel->iconField,
|
||||||
wDefaultGetIconFile(scr, aicon->wm_instance,
|
wDefaultGetIconFile(scr, aicon->wm_instance,
|
||||||
aicon->wm_class, True));
|
aicon->wm_class, True));
|
||||||
|
|
||||||
panel->browseBtn = WMCreateCommandButton(panel->iconFrame);
|
panel->browseBtn = WMCreateCommandButton(panel->iconFrame);
|
||||||
WMResizeWidget(panel->browseBtn, 70, 24);
|
WMResizeWidget(panel->browseBtn, 70, 24);
|
||||||
WMMoveWidget(panel->browseBtn, 195, 18);
|
WMMoveWidget(panel->browseBtn, 195, 18);
|
||||||
WMSetButtonText(panel->browseBtn, _("Browse..."));
|
WMSetButtonText(panel->browseBtn, _("Browse..."));
|
||||||
WMSetButtonAction(panel->browseBtn, chooseIconCallback, panel);
|
WMSetButtonAction(panel->browseBtn, chooseIconCallback, panel);
|
||||||
|
|
||||||
|
|
||||||
panel->okBtn = WMCreateCommandButton(panel->win);
|
panel->okBtn = WMCreateCommandButton(panel->win);
|
||||||
WMResizeWidget(panel->okBtn, 80, 26);
|
WMResizeWidget(panel->okBtn, 80, 26);
|
||||||
WMMoveWidget(panel->okBtn, 200, 308);
|
WMMoveWidget(panel->okBtn, 200, 333);
|
||||||
WMSetButtonText(panel->okBtn, _("OK"));
|
WMSetButtonText(panel->okBtn, _("OK"));
|
||||||
WMSetButtonAction(panel->okBtn, panelBtnCallback, panel);
|
WMSetButtonAction(panel->okBtn, panelBtnCallback, panel);
|
||||||
|
|
||||||
panel->cancelBtn = WMCreateCommandButton(panel->win);
|
panel->cancelBtn = WMCreateCommandButton(panel->win);
|
||||||
WMResizeWidget(panel->cancelBtn, 80, 26);
|
WMResizeWidget(panel->cancelBtn, 80, 26);
|
||||||
WMMoveWidget(panel->cancelBtn, 110, 308);
|
WMMoveWidget(panel->cancelBtn, 110, 333);
|
||||||
WMSetButtonText(panel->cancelBtn, _("Cancel"));
|
WMSetButtonText(panel->cancelBtn, _("Cancel"));
|
||||||
WMSetButtonAction(panel->cancelBtn, panelBtnCallback, panel);
|
WMSetButtonAction(panel->cancelBtn, panelBtnCallback, panel);
|
||||||
|
|
||||||
WMRealizeWidget(panel->win);
|
WMRealizeWidget(panel->win);
|
||||||
WMMapSubwidgets(panel->win);
|
WMMapSubwidgets(panel->win);
|
||||||
WMMapSubwidgets(panel->commandFrame);
|
WMMapSubwidgets(panel->commandFrame);
|
||||||
@@ -376,7 +398,7 @@ ShowDockAppSettingsPanel(WAppIcon *aicon)
|
|||||||
XSelectInput(dpy, parent, KeyPressMask|KeyReleaseMask);
|
XSelectInput(dpy, parent, KeyPressMask|KeyReleaseMask);
|
||||||
|
|
||||||
XReparentWindow(dpy, WMWidgetXID(panel->win), parent, 0, 0);
|
XReparentWindow(dpy, WMWidgetXID(panel->win), parent, 0, 0);
|
||||||
|
|
||||||
y = aicon->y_pos;
|
y = aicon->y_pos;
|
||||||
if (y < 0)
|
if (y < 0)
|
||||||
y = 0;
|
y = 0;
|
||||||
@@ -391,16 +413,16 @@ ShowDockAppSettingsPanel(WAppIcon *aicon)
|
|||||||
} else {
|
} else {
|
||||||
x = (scr->scr_width - PWIDTH)/2;
|
x = (scr->scr_width - PWIDTH)/2;
|
||||||
}
|
}
|
||||||
panel->wwin = wManageInternalWindow(scr, parent, None,
|
panel->wwin = wManageInternalWindow(scr, parent, None,
|
||||||
_("Docked Application Settings"),
|
_("Docked Application Settings"),
|
||||||
x, y, PWIDTH, PHEIGHT);
|
x, y, PWIDTH, PHEIGHT);
|
||||||
|
|
||||||
panel->wwin->client_leader = WMWidgetXID(panel->win);
|
panel->wwin->client_leader = WMWidgetXID(panel->win);
|
||||||
|
|
||||||
panel->parent = parent;
|
panel->parent = parent;
|
||||||
|
|
||||||
WMMapWidget(panel->win);
|
WMMapWidget(panel->win);
|
||||||
|
|
||||||
wWindowMap(panel->wwin);
|
wWindowMap(panel->wwin);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -410,23 +432,23 @@ DestroyDockAppSettingsPanel(AppSettingsPanel *panel)
|
|||||||
{
|
{
|
||||||
if (!panel->destroyed) {
|
if (!panel->destroyed) {
|
||||||
XUnmapWindow(dpy, panel->wwin->client_win);
|
XUnmapWindow(dpy, panel->wwin->client_win);
|
||||||
XReparentWindow(dpy, panel->wwin->client_win,
|
XReparentWindow(dpy, panel->wwin->client_win,
|
||||||
panel->wwin->screen_ptr->root_win, 0, 0);
|
panel->wwin->screen_ptr->root_win, 0, 0);
|
||||||
wUnmanageWindow(panel->wwin, False, False);
|
wUnmanageWindow(panel->wwin, False, False);
|
||||||
}
|
}
|
||||||
|
|
||||||
panel->destroyed = 1;
|
panel->destroyed = 1;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* kluge. If we destroy the panel before the icon chooser is closed,
|
* kluge. If we destroy the panel before the icon chooser is closed,
|
||||||
* we will crash when it does close, trying to access something in the
|
* we will crash when it does close, trying to access something in the
|
||||||
* destroyed panel. Could use wretain()/wrelease() in the panel,
|
* destroyed panel. Could use wretain()/wrelease() in the panel,
|
||||||
* but it is not working for some reason.
|
* but it is not working for some reason.
|
||||||
*/
|
*/
|
||||||
if (panel->choosingIcon)
|
if (panel->choosingIcon)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
WMDestroyWidget(panel->win);
|
WMDestroyWidget(panel->win);
|
||||||
|
|
||||||
XDestroyWindow(dpy, panel->parent);
|
XDestroyWindow(dpy, panel->parent);
|
||||||
|
|
||||||
|
|||||||
@@ -62,6 +62,11 @@ typedef struct WReservedArea {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
typedef struct WAppIconChain {
|
||||||
|
struct WAppIcon *aicon;
|
||||||
|
struct WAppIconChain *next;
|
||||||
|
} WAppIconChain;
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* each WScreen is saved into a context associated with it's root window
|
* each WScreen is saved into a context associated with it's root window
|
||||||
@@ -230,6 +235,7 @@ typedef struct _WScreen {
|
|||||||
struct WMenu *clip_options; /* Options for Clip */
|
struct WMenu *clip_options; /* Options for Clip */
|
||||||
struct WMenu *clip_ws_menu; /* workspace menu for clip */
|
struct WMenu *clip_ws_menu; /* workspace menu for clip */
|
||||||
struct WDock *last_dock;
|
struct WDock *last_dock;
|
||||||
|
WAppIconChain *global_icons; /* for omnipresent icons chain in clip */
|
||||||
|
|
||||||
Window clip_balloon; /* window for workspace name */
|
Window clip_balloon; /* window for workspace name */
|
||||||
|
|
||||||
|
|||||||
@@ -869,7 +869,7 @@ wWorkspaceRestoreState(WScreen *scr)
|
|||||||
{
|
{
|
||||||
proplist_t parr, pstr, wks_state;
|
proplist_t parr, pstr, wks_state;
|
||||||
proplist_t clip_state;
|
proplist_t clip_state;
|
||||||
int i, wscount;
|
int i, j, wscount;
|
||||||
|
|
||||||
make_keys();
|
make_keys();
|
||||||
|
|
||||||
@@ -899,9 +899,24 @@ wWorkspaceRestoreState(WScreen *scr)
|
|||||||
if (scr->workspaces[i]->clip)
|
if (scr->workspaces[i]->clip)
|
||||||
wDockDestroy(scr->workspaces[i]->clip);
|
wDockDestroy(scr->workspaces[i]->clip);
|
||||||
scr->workspaces[i]->clip = wDockRestoreState(scr, clip_state,
|
scr->workspaces[i]->clip = wDockRestoreState(scr, clip_state,
|
||||||
WM_CLIP);
|
WM_CLIP);
|
||||||
if (i>0)
|
if (i>0)
|
||||||
wDockHideIcons(scr->workspaces[i]->clip);
|
wDockHideIcons(scr->workspaces[i]->clip);
|
||||||
|
|
||||||
|
/* We set the global icons here, because scr->workspaces[i]->clip
|
||||||
|
* was not valid in wDockRestoreState().
|
||||||
|
* There we only set icon->omnipresent to know which icons we
|
||||||
|
* need to set here.
|
||||||
|
*/
|
||||||
|
for (j=0; j<scr->workspaces[i]->clip->max_icons; j++) {
|
||||||
|
WAppIcon *aicon = scr->workspaces[i]->clip->icon_array[j];
|
||||||
|
|
||||||
|
if (aicon && aicon->omnipresent) {
|
||||||
|
aicon->omnipresent = 0;
|
||||||
|
wClipMakeIconOmnipresent(aicon, True);
|
||||||
|
XMapWindow(dpy, aicon->icon->core->window);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#ifdef KWM_HINTS
|
#ifdef KWM_HINTS
|
||||||
wKWMUpdateWorkspaceNameHint(scr, i);
|
wKWMUpdateWorkspaceNameHint(scr, i);
|
||||||
|
|||||||
Reference in New Issue
Block a user