Compare commits
111 Commits
bacardi55
...
splitlayou
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5d83a4a664 | ||
|
|
bfb8658bba | ||
|
|
b47c4457f2 | ||
|
|
83c491527d | ||
|
|
c1d83e8c8b | ||
|
|
b6f728f1cc | ||
|
|
586620e1b1 | ||
|
|
52020cb22d | ||
|
|
fbcd31253b | ||
|
|
ff0d345b11 | ||
|
|
134bb3add4 | ||
|
|
74281424da | ||
|
|
b117a49b5a | ||
|
|
43f44ae9fd | ||
|
|
2aa654709e | ||
|
|
9a8fdd37c6 | ||
|
|
5d208730cd | ||
|
|
9bda577718 | ||
|
|
58f1c25eaf | ||
|
|
c0610091d6 | ||
|
|
5491037f54 | ||
|
|
e885449144 | ||
|
|
be2c983004 | ||
|
|
56ae367eee | ||
|
|
be5de68e93 | ||
|
|
5176103605 | ||
|
|
ef5c824a59 | ||
|
|
4a61cb8b18 | ||
|
|
87f926253f | ||
|
|
96b1c0dff2 | ||
|
|
bccd36d522 | ||
|
|
4e978c1824 | ||
|
|
2a30083520 | ||
|
|
13ac8cfa82 | ||
|
|
e4dbca928d | ||
|
|
eeedd9e4be | ||
|
|
a06e0daa5a | ||
|
|
860a1a2c11 | ||
|
|
ff888494f2 | ||
|
|
0774936a6f | ||
|
|
58b6d9bccb | ||
|
|
73a0d7ed01 | ||
|
|
ecda7adcf7 | ||
|
|
9e78421e2e | ||
|
|
87b558b4b9 | ||
|
|
82bea4cee8 | ||
|
|
d9cc60a205 | ||
|
|
e2d775ff83 | ||
|
|
af0ddeda3f | ||
|
|
7d754f71d4 | ||
|
|
517f6dc700 | ||
|
|
d229efe44b | ||
|
|
0445bb05da | ||
|
|
7b47fd041a | ||
|
|
9636f9188d | ||
|
|
b36af57fb0 | ||
|
|
a0e4a1657d | ||
|
|
c054e529a3 | ||
|
|
9e932ec98a | ||
|
|
83d56269f0 | ||
|
|
0b94f5496e | ||
|
|
34d94335f2 | ||
|
|
57ab723f5d | ||
|
|
99018268ef | ||
|
|
c556b45a8d | ||
|
|
f75c75645d | ||
|
|
6a93c6fa35 | ||
|
|
24de771713 | ||
|
|
a44505c1a9 | ||
|
|
468ecfdcb8 | ||
|
|
534eae3ae3 | ||
|
|
d2f3377f97 | ||
|
|
7839889071 | ||
|
|
664e4effdb | ||
|
|
ff923542ba | ||
|
|
c5e96961cb | ||
|
|
1ba4a0ad46 | ||
|
|
825620b25c | ||
|
|
911ac2f74a | ||
|
|
7eb15d595f | ||
|
|
dc836ccb86 | ||
|
|
f606b5ba88 | ||
|
|
391aae2dea | ||
|
|
f147bbbaf0 | ||
|
|
1b02cfed3e | ||
|
|
81e74e4bb6 | ||
|
|
4cda38ce26 | ||
|
|
c8b9b41a3e | ||
|
|
9d44177f20 | ||
|
|
06fb9553fc | ||
|
|
1061b79c5a | ||
|
|
50dcf7c8c2 | ||
|
|
a7162d803d | ||
|
|
4a804a740b | ||
|
|
813d88ff7a | ||
|
|
3f9c8a0030 | ||
|
|
c628970c60 | ||
|
|
3e3b18e6a3 | ||
|
|
89ff1ffcc5 | ||
|
|
dbaa966eb9 | ||
|
|
cb8e9889c8 | ||
|
|
11edb78e84 | ||
|
|
82eb33df85 | ||
|
|
12aa86e914 | ||
|
|
e57a6c5e62 | ||
|
|
a33ec045ab | ||
|
|
05bedec5c6 | ||
|
|
88d92149dd | ||
|
|
e28c6a3d64 | ||
|
|
3f21c79f08 | ||
|
|
ae47ab6f71 |
4
.gitignore
vendored
4
.gitignore
vendored
@@ -3,7 +3,9 @@
|
|||||||
wmfs
|
wmfs
|
||||||
#*
|
#*
|
||||||
\#*
|
\#*
|
||||||
Makefile
|
|
||||||
wmfs.1.gz
|
wmfs.1.gz
|
||||||
tags
|
tags
|
||||||
*.patch
|
*.patch
|
||||||
|
*.diff
|
||||||
|
Makefile
|
||||||
|
build/
|
||||||
|
|||||||
134
CMakeLists.txt
Normal file
134
CMakeLists.txt
Normal file
@@ -0,0 +1,134 @@
|
|||||||
|
#
|
||||||
|
# CMake for wmfs David Demelier <markand@malikania.fr>
|
||||||
|
#
|
||||||
|
|
||||||
|
# General settings
|
||||||
|
cmake_minimum_required(VERSION 2.8)
|
||||||
|
project(wmfs)
|
||||||
|
|
||||||
|
set(CMAKE_C_FLAGS_RELEASE "-Wall")
|
||||||
|
set(CMAKE_C_FLAGS_DEBUG "-Wall -g -ansi -pendantic -O3 -funroll-loops")
|
||||||
|
|
||||||
|
# General option
|
||||||
|
option(WITH_XINERAMA "Build with X.Org xinerama support" ON)
|
||||||
|
option(WITH_XRANDR "Build with X.Org xrandr support" ON)
|
||||||
|
option(WITH_XFT "Build with X.Org xft support" ON)
|
||||||
|
option(WITH_IMLIB2 "Build with imlib2 graphic library" ON)
|
||||||
|
|
||||||
|
# WMFS Version and XDG directory
|
||||||
|
set(WMFS_VERSION "201106")
|
||||||
|
if (NOT XDG_CONFIG_DIR)
|
||||||
|
set(XDG_CONFIG_DIR "${CMAKE_INSTALL_PREFIX}/etc/wmfs")
|
||||||
|
endif ()
|
||||||
|
|
||||||
|
# Man prefix
|
||||||
|
if (NOT MANPREFIX)
|
||||||
|
set(MANPREFIX "${CMAKE_INSTALL_PREFIX}/share")
|
||||||
|
endif ()
|
||||||
|
|
||||||
|
# Libraries are optional
|
||||||
|
find_package(X11)
|
||||||
|
if (NOT X11_FOUND)
|
||||||
|
message(FATAL_ERROR "You need x11 libraries to build wmfs")
|
||||||
|
else ()
|
||||||
|
list(APPEND INCLUDES ${X11_INCLUDE_DIR})
|
||||||
|
list(APPEND LIBRARIES ${X11_LIBRARIES})
|
||||||
|
endif ()
|
||||||
|
|
||||||
|
# pthread is needed
|
||||||
|
set(CMAKE_THREAD_PREFER_PTHREAD)
|
||||||
|
find_package(Threads)
|
||||||
|
|
||||||
|
if (NOT CMAKE_USE_PTHREADS_INIT)
|
||||||
|
message(FATAL_ERROR "You need pthread libraries to build wmfs")
|
||||||
|
else ()
|
||||||
|
list(APPEND LIBRARIES ${CMAKE_THREAD_LIBS_INIT})
|
||||||
|
endif ()
|
||||||
|
|
||||||
|
# The following are optional X11 libraries
|
||||||
|
if (X11_Xinerama_FOUND AND WITH_XINERAMA)
|
||||||
|
list(APPEND INCLUDES ${X11_Xinerama_INCLUDE_PATH})
|
||||||
|
list(APPEND LIBRARIES ${X11_Xinerama_LIB})
|
||||||
|
list(APPEND DEFINES "HAVE_XINERAMA")
|
||||||
|
else ()
|
||||||
|
list(APPEND DISABLED "HAVE_XINERAMA")
|
||||||
|
endif ()
|
||||||
|
|
||||||
|
if (X11_Xrandr_FOUND AND WITH_XRANDR)
|
||||||
|
list(APPEND INCLUDES ${X11_Xrandr_INCLUDE_PATH})
|
||||||
|
list(APPEND LIBRARIES ${X11_Xrandr_LIB})
|
||||||
|
list(APPEND DEFINES "HAVE_XRANDR")
|
||||||
|
else ()
|
||||||
|
list(APPEND DISABLED "HAVE_XRANDR")
|
||||||
|
endif ()
|
||||||
|
|
||||||
|
if (X11_Xft_FOUND AND WITH_XFT)
|
||||||
|
find_package(Freetype)
|
||||||
|
if (FREETYPE_FOUND)
|
||||||
|
list(APPEND INCLUDES ${FREETYPE_INCLUDE_DIRS}
|
||||||
|
${X11_Xft_INCLUDE_PATH})
|
||||||
|
list(APPEND LIBRARIES ${FREETYPE_LIBRARIES}
|
||||||
|
${X11_Xft_LIB})
|
||||||
|
list(APPEND DEFINES "HAVE_XFT")
|
||||||
|
else ()
|
||||||
|
list(APPEND DISABLED "HAVE_XFT")
|
||||||
|
endif ()
|
||||||
|
endif ()
|
||||||
|
|
||||||
|
if (WITH_IMLIB2)
|
||||||
|
find_package(PkgConfig)
|
||||||
|
if (PKG_CONFIG_FOUND)
|
||||||
|
pkg_check_modules(IMLIB2 imlib2)
|
||||||
|
if (IMLIB2_FOUND)
|
||||||
|
list(APPEND INCLUDES ${IMLIB2_INCLUDE_DIRS})
|
||||||
|
list(APPEND LIBRARIES ${IMLIB2_LIBRARIES})
|
||||||
|
list(APPEND DEFINES "HAVE_IMLIB")
|
||||||
|
|
||||||
|
link_directories(${IMLIB2_LIBRARY_DIRS})
|
||||||
|
else ()
|
||||||
|
list(APPEND DISABLED "HAVE_IMLIB")
|
||||||
|
endif ()
|
||||||
|
else ()
|
||||||
|
list(APPEND DISABLED "HAVE_IMLIB")
|
||||||
|
endif ()
|
||||||
|
endif ()
|
||||||
|
|
||||||
|
# Enable the optional module to compilation
|
||||||
|
foreach (modname ${DEFINES})
|
||||||
|
add_definitions(-D${modname})
|
||||||
|
|
||||||
|
# Set a variable to print all enabled modules.
|
||||||
|
# Remove the HAVE_ from module names
|
||||||
|
string(SUBSTRING ${modname} 5 -1 upcase)
|
||||||
|
string(TOLOWER ${upcase} module)
|
||||||
|
|
||||||
|
message("INFO: ${module} enabled")
|
||||||
|
endforeach ()
|
||||||
|
|
||||||
|
# Show modules disabled
|
||||||
|
foreach (modname ${DISABLED})
|
||||||
|
string(SUBSTRING ${modname} 5 -1 upcase)
|
||||||
|
string(TOLOWER ${upcase} module)
|
||||||
|
|
||||||
|
message("INFO: ${module} disabled")
|
||||||
|
endforeach ()
|
||||||
|
|
||||||
|
file(
|
||||||
|
GLOB
|
||||||
|
SOURCES
|
||||||
|
src/*.c
|
||||||
|
src/*.h
|
||||||
|
)
|
||||||
|
|
||||||
|
# Add definitions for the version and XDG
|
||||||
|
add_definitions(-DWMFS_VERSION=\"${WMFS_VERSION}\")
|
||||||
|
add_definitions(-DXDG_CONFIG_DIR=\"${XDG_CONFIG_DIR}\")
|
||||||
|
|
||||||
|
include_directories(${INCLUDES})
|
||||||
|
add_executable(wmfs ${SOURCES})
|
||||||
|
target_link_libraries(wmfs ${LIBRARIES})
|
||||||
|
|
||||||
|
# Install targets
|
||||||
|
install(TARGETS wmfs DESTINATION bin/)
|
||||||
|
install(FILES wmfsrc DESTINATION ${XDG_CONFIG_DIR}/)
|
||||||
|
install(FILES wmfs.1 DESTINATION ${MANPREFIX}/man1/)
|
||||||
86
Makefile.in
86
Makefile.in
@@ -1,86 +0,0 @@
|
|||||||
PROG=wmfs
|
|
||||||
MAN=wmfs.1
|
|
||||||
|
|
||||||
# wmfs version
|
|
||||||
VERSION= 201011
|
|
||||||
|
|
||||||
SRCS= \
|
|
||||||
src/barwin.c \
|
|
||||||
src/client.c \
|
|
||||||
src/config.c \
|
|
||||||
src/draw.c \
|
|
||||||
src/event.c \
|
|
||||||
src/ewmh.c \
|
|
||||||
src/frame.c \
|
|
||||||
src/getinfo.c \
|
|
||||||
src/infobar.c \
|
|
||||||
src/init.c \
|
|
||||||
src/launcher.c \
|
|
||||||
src/layout.c \
|
|
||||||
src/menu.c \
|
|
||||||
src/mouse.c \
|
|
||||||
src/parse_api.c \
|
|
||||||
src/parse.c \
|
|
||||||
src/screen.c \
|
|
||||||
src/status.c \
|
|
||||||
src/systray.c \
|
|
||||||
src/tag.c \
|
|
||||||
src/util.c \
|
|
||||||
src/viwmfs.c \
|
|
||||||
src/color.c \
|
|
||||||
src/wmfs.c
|
|
||||||
|
|
||||||
# flags
|
|
||||||
CFLAGS+= -DXDG_CONFIG_DIR=\"${XDG_CONFIG_DIR}\"
|
|
||||||
CFLAGS+= -DWMFS_VERSION=\"${VERSION}\"
|
|
||||||
CFLAGS+= -Wall -Wextra
|
|
||||||
|
|
||||||
OBJS= ${SRCS:.c=.o}
|
|
||||||
|
|
||||||
all: ${PROG} ${MAN}.gz
|
|
||||||
|
|
||||||
${PROG}: ${OBJS} src/structs.h src/wmfs.h src/parse.h
|
|
||||||
${CC} -o $@ ${OBJS} ${LDFLAGS}
|
|
||||||
|
|
||||||
${MAN}.gz: ${MAN}
|
|
||||||
gzip -cn -9 ${MAN} > $@
|
|
||||||
|
|
||||||
.c.o:
|
|
||||||
${CC} -c ${CFLAGS} $< -o $@
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f ${OBJS} wmfs ${MAN}.gz
|
|
||||||
|
|
||||||
distclean: clean
|
|
||||||
rm -f Makefile
|
|
||||||
|
|
||||||
|
|
||||||
install: all
|
|
||||||
@echo installing executable file to ${DESTDIR}${PREFIX}/bin
|
|
||||||
mkdir -p ${DESTDIR}${PREFIX}/bin
|
|
||||||
install ${PROG} ${DESTDIR}${PREFIX}/bin
|
|
||||||
@echo installing manual page to ${DESTDIR}${MANPREFIX}/man1
|
|
||||||
mkdir -p ${DESTDIR}${MANPREFIX}/man1
|
|
||||||
install -m 644 ${MAN}.gz ${DESTDIR}${MANPREFIX}/man1/
|
|
||||||
@echo installing xsession file to ${DESTDIR}${PREFIX}/share/xsessions
|
|
||||||
mkdir -p ${DESTDIR}${PREFIX}/share/xsessions
|
|
||||||
install -m 644 wmfs.desktop ${DESTDIR}${PREFIX}/share/xsessions/
|
|
||||||
@echo installing default config file to ${DESTDIR}${XDG_CONFIG_DIR}/wmfs/
|
|
||||||
mkdir -p ${DESTDIR}${XDG_CONFIG_DIR}/wmfs/
|
|
||||||
install -m 444 wmfsrc ${DESTDIR}${XDG_CONFIG_DIR}/wmfs/
|
|
||||||
|
|
||||||
uninstall:
|
|
||||||
@echo removing executable file from ${DESTDIR}${PREFIX}/bin
|
|
||||||
rm -f ${DESTDIR}${PREFIX}/bin/wmfs
|
|
||||||
@echo removing manual page from ${DESTDIR}${MANPREFIX}/man1
|
|
||||||
rm -f ${DESTDIR}${MANPREFIX}/man1/wmfs.1.gz
|
|
||||||
@echo removing xsession file from ${DESTDIR}${PREFIX}/share/xsessions
|
|
||||||
rm -f ${DESTDIR}${PREFIX}/share/xsessions/wmfs.desktop
|
|
||||||
@echo removing config file from ${DESTDIR}${XDG_CONFIG_DIR}/wmfs/
|
|
||||||
rm -f ${DESTDIR}${XDG_CONFIG_DIR}/wmfs/wmfsrc
|
|
||||||
rmdir ${DESTDIR}${XDG_CONFIG_DIR}/wmfs/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.PHONY: all clean distclean install uninstall
|
|
||||||
|
|
||||||
18
README
18
README
@@ -4,34 +4,36 @@ WMFS Window Manager.
|
|||||||
|
|
||||||
A highly configurable and manageable tiling Window Manager created from scratch
|
A highly configurable and manageable tiling Window Manager created from scratch
|
||||||
|
|
||||||
AUTHORS : (in order of commits and > 5 commits)
|
AUTHOR :
|
||||||
- Martin Duquesnoy <xorg62@gmail.com>
|
- Martin Duquesnoy <xorg62@gmail.com>
|
||||||
|
|
||||||
|
CONTRIBUTORS :
|
||||||
- Philippe Pepiot <phil@philpep.org>
|
- Philippe Pepiot <phil@philpep.org>
|
||||||
- Marc Lagrange <markocpc@gmail.com>
|
- Marc Lagrange <markocpc@gmail.com>
|
||||||
- OldMan <tele-post@mail.ru>
|
- OldMan <tele-post@mail.ru>
|
||||||
- Raphael Khaiat <raphael@khaiat.org>
|
- Raphael Khaiat <raphael@khaiat.org>
|
||||||
- Tomáš Chvátal <scarabeus@gentoo.org>
|
- Tomáš Chvátal <scarabeus@gentoo.org>
|
||||||
- David Delassus <linkdd@ydb.me>
|
- David Delassus <linkdd@ydb.me>
|
||||||
|
- David Demelier <markand@malikania.fr>
|
||||||
|
|
||||||
|
LICENSE : BSD, see COPYING.
|
||||||
LICENSE : BSD
|
|
||||||
|
|
||||||
REQUIREMENT :
|
REQUIREMENT :
|
||||||
- freetype2
|
|
||||||
- libxft
|
|
||||||
- libx11
|
- libx11
|
||||||
|
- libxft (optional)
|
||||||
|
\- freetype
|
||||||
- libxinerama (optional)
|
- libxinerama (optional)
|
||||||
- libxrandr (optional)
|
- libxrandr (optional)
|
||||||
- imlib2 (optional)
|
- imlib2 (optional)
|
||||||
|
- cmake>=2.8 (build system)
|
||||||
|
|
||||||
OS :
|
OS :
|
||||||
- GNU/Linux : Supported.
|
- GNU/Linux : Supported.
|
||||||
- FreeBSD/OpenBSD/NetBSD : Supported.
|
- FreeBSD/OpenBSD/NetBSD : Supported.
|
||||||
|
|
||||||
INSTALL :
|
INSTALL :
|
||||||
./configure [--without-imlib2|--without-xrandr|--without-xinerama] (./configure -h)
|
mkdir build/ && cd build/
|
||||||
make
|
cmake ..
|
||||||
sudo make install
|
|
||||||
|
|
||||||
DISTROS :
|
DISTROS :
|
||||||
- wmfs port for FreeBSD at x11-wm/wmfs
|
- wmfs port for FreeBSD at x11-wm/wmfs
|
||||||
|
|||||||
29
TODO
29
TODO
@@ -1,5 +1,24 @@
|
|||||||
· Add Doxygen comment <-> OK
|
,
|
||||||
· Mouse bindings in the config file
|
dM
|
||||||
· Can change client position in the tile grid
|
MMr
|
||||||
· Fix all the bug \o/
|
4MMML .
|
||||||
· XCB ?
|
MMMMM. xf
|
||||||
|
. "M6MMM .MM-
|
||||||
|
Mh.. +MM5MMM .MMMM
|
||||||
|
.MMM. .MMMMML. MMMMMh
|
||||||
|
)MMMh. MM5MMM MMMMMMM
|
||||||
|
3MMMMx. 'MMM3MMf xnMMMMMM"
|
||||||
|
'*MMMMM MMMMMM. nMMMMMMP"
|
||||||
|
*MMMMMx "MMM5M\ .MMMMMMM=
|
||||||
|
*MMMMMh "MMMMM" JMMMMMMP
|
||||||
|
MMMMMM GMMMM. dMMMMMM .
|
||||||
|
MMMMMM "MMMM .MMMMM( .nnMP"
|
||||||
|
.. *MMMMx MMM" dMMMM" .nnMMMMM*
|
||||||
|
"MMn... 'MMMMr 'MM MMM" .nMMMMMMM*"
|
||||||
|
"4MMMMnn.. *MMM MM MMP" .dMMMMMMM""
|
||||||
|
^MMMMMMMMx. *ML "M .M* .MMMMMM**"
|
||||||
|
*PMMMMMMhn. *x > M .MMMM**""
|
||||||
|
""**MMMMhx/.h/ .=*"
|
||||||
|
.3P"%....
|
||||||
|
nP" "*MMnx
|
||||||
|
|
||||||
|
|||||||
105
configure
vendored
105
configure
vendored
@@ -1,105 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
LIBS="x11 xft freetype2"
|
|
||||||
USE_XINERAMA="xinerama"
|
|
||||||
USE_XRANDR="xrandr"
|
|
||||||
USE_IMLIB2="imlib2"
|
|
||||||
OS=`uname -s`
|
|
||||||
PREFIX=/usr/local
|
|
||||||
MANPREFIX="$PREFIX/man"
|
|
||||||
XDG_CONFIG_DIR="$PREFIX/etc/xdg"
|
|
||||||
|
|
||||||
while true; do
|
|
||||||
case "$1" in
|
|
||||||
--without-xinerama)
|
|
||||||
USE_XINERAMA=""; shift;;
|
|
||||||
--without-xrandr)
|
|
||||||
USE_XRANDR=""; shift;;
|
|
||||||
--without-imlib2)
|
|
||||||
USE_IMLIB2=""; shift;;
|
|
||||||
--prefix)
|
|
||||||
[ -z "$2" ] && echo "Missing argument" && exit 1
|
|
||||||
PREFIX=$2; shift 2;;
|
|
||||||
--xdg-config-dir)
|
|
||||||
[ -z "$2" ] && echo "Missing argument" && exit 1
|
|
||||||
XDG_CONFIG_DIR=$2; shift 2;;
|
|
||||||
--man-prefix)
|
|
||||||
[ -z "$2" ] && echo "Missing argument" && exit 1
|
|
||||||
MANPREFIX=$2; shift 2;;
|
|
||||||
--help|-h)
|
|
||||||
echo "Usage: ./configure [options]
|
|
||||||
--without-imlib2 : compile without imlib2 support
|
|
||||||
--without-xrandr : compile without xrandr support
|
|
||||||
--without-xinerama : compile without xinerama support
|
|
||||||
--prefix DIRECTORY : install binary with specified prefix (default $PREFIX)
|
|
||||||
--xdg-config-dir DIRECTORY : install configuration to specified directory (default $XDG_CONFIG_DIR)
|
|
||||||
--man-prefix DIRECTORY : install man page to specified prefix (default $MANPREFIX)"
|
|
||||||
exit 0;;
|
|
||||||
*) break;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
LIBS="$LIBS $USE_XINERAMA $USE_XRANDR $USE_IMLIB2"
|
|
||||||
|
|
||||||
which pkg-config >/dev/null 2>&1
|
|
||||||
|
|
||||||
if [ $? -eq 0 ];
|
|
||||||
then
|
|
||||||
CFLAGS=`pkg-config --cflags-only-I $LIBS`
|
|
||||||
LDFLAGS=`pkg-config --libs $LIBS`
|
|
||||||
else
|
|
||||||
# Try to use some known paths
|
|
||||||
case $OS in
|
|
||||||
FreeBSD)
|
|
||||||
CFLAGS="-I/usr/local/include -I/usr/local/include/freetype2"
|
|
||||||
LDFLAGS="-L/usr/local/lib";;
|
|
||||||
OpenBSD)
|
|
||||||
CFLAGS="-I/usr/X11R6/include -I/usr/X11R6/include/freetype2 -I/usr/local/include"
|
|
||||||
LDFLAGS="-L/usr/X11R6/lib -L/usr/local/lib";;
|
|
||||||
NetBSD)
|
|
||||||
CFLAGS="-I/usr/X11R7/include -I/usr/X11R7/include/freetype2 -I/usr/local/include"
|
|
||||||
LDFLAGS="-L/usr/X11R7/lib -L/usr/local/lib";;
|
|
||||||
Linux)
|
|
||||||
CFLAGS="-I/usr/include/freetype2"
|
|
||||||
LDFLAGS=""
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "No default CFLAGS and LDFLAGS found for your OS, feel free to contribute or install pkg-config :)"
|
|
||||||
exit 1;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
LDFLAGS="$LDFLAGS -lX11 -lXft -lfreetype"
|
|
||||||
|
|
||||||
[ -n "$USE_XINERAMA" ] && LDFLAGS="$LDFLAGS -lXinerama"
|
|
||||||
[ -n "$USE_XRANDR" ] && LDFLAGS="$LDFLAGS -lXrandr"
|
|
||||||
[ -n "$USE_IMLIB2" ] && LDFLAGS="$LDFLAGS -lImlib2"
|
|
||||||
fi
|
|
||||||
|
|
||||||
[ -n "$USE_XINERAMA" ] && CFLAGS="$CFLAGS -DHAVE_XINERAMA"
|
|
||||||
[ -n "$USE_XRANDR" ] && CFLAGS="$CFLAGS -DHAVE_XRANDR"
|
|
||||||
[ -n "$USE_IMLIB2" ] && CFLAGS="$CFLAGS -DHAVE_IMLIB"
|
|
||||||
|
|
||||||
LDFLAGS="$LDFLAGS -lpthread"
|
|
||||||
|
|
||||||
cat > Makefile << EOF
|
|
||||||
PREFIX=$PREFIX
|
|
||||||
XDG_CONFIG_DIR=$XDG_CONFIG_DIR
|
|
||||||
MANPREFIX=$MANPREFIX
|
|
||||||
|
|
||||||
CFLAGS+=$CFLAGS
|
|
||||||
LDFLAGS+=$LDFLAGS
|
|
||||||
|
|
||||||
EOF
|
|
||||||
|
|
||||||
cat Makefile.in >> Makefile
|
|
||||||
|
|
||||||
echo "Compilation resume:
|
|
||||||
OS=$OS
|
|
||||||
CFLAGS=$CFLAGS
|
|
||||||
LDFLAGS=$LDFLAGS
|
|
||||||
PREFIX=$PREFIX
|
|
||||||
MANPREFIX=$MANPREFIX
|
|
||||||
XDG_CONFIG_DIR=$XDG_CONFIG_DIR
|
|
||||||
|
|
||||||
You can run 'make' now :-)
|
|
||||||
"
|
|
||||||
75
scripts/setlocalversion
Executable file
75
scripts/setlocalversion
Executable file
@@ -0,0 +1,75 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# Print additional version information for non-release trees.
|
||||||
|
|
||||||
|
usage() {
|
||||||
|
echo "Usage: $0 [srctree]" >&2
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
cd "${1:-.}" || usage
|
||||||
|
|
||||||
|
# Check for git and a git repo.
|
||||||
|
if head=`git rev-parse --verify --short HEAD 2>/dev/null`; then
|
||||||
|
# Do we have an untagged version?
|
||||||
|
if git name-rev --tags HEAD | grep -E '^HEAD[[:space:]]+(.*~[0-9]*|undefined)$' > /dev/null; then
|
||||||
|
if tag=`git describe 2>/dev/null`; then
|
||||||
|
echo $tag | awk -F- '{printf("-%05d-%s", $(NF-1),$(NF))}'
|
||||||
|
else
|
||||||
|
printf '%s%s' -g $head
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Is this git on svn?
|
||||||
|
if git config --get svn-remote.svn.url >/dev/null; then
|
||||||
|
printf -- '-svn%s' "`git svn find-rev $head`"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Are there uncommitted changes?
|
||||||
|
git update-index --refresh --unmerged > /dev/null
|
||||||
|
if git diff-index --name-only HEAD | grep -v "^scripts/package" \
|
||||||
|
| read dummy; then
|
||||||
|
printf '%s' -dirty
|
||||||
|
fi
|
||||||
|
|
||||||
|
# All done with git
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Check for mercurial and a mercurial repo.
|
||||||
|
if hgid=`hg id 2>/dev/null`; then
|
||||||
|
tag=`printf '%s' "$hgid" | cut -d' ' -f2`
|
||||||
|
|
||||||
|
# Do we have an untagged version?
|
||||||
|
if [ -z "$tag" -o "$tag" = tip ]; then
|
||||||
|
id=`printf '%s' "$hgid" | sed 's/[+ ].*//'`
|
||||||
|
printf '%s%s' -hg "$id"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Are there uncommitted changes?
|
||||||
|
# These are represented by + after the changeset id.
|
||||||
|
case "$hgid" in
|
||||||
|
*+|*+\ *) printf '%s' -dirty ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# All done with mercurial
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Check for svn and a svn repo.
|
||||||
|
if rev=`svn info 2>/dev/null | grep '^Last Changed Rev'`; then
|
||||||
|
rev=`echo $rev | awk '{print $NF}'`
|
||||||
|
changes=`svn status 2>/dev/null | grep '^[AMD]' | wc -l`
|
||||||
|
|
||||||
|
# Are there uncommitted changes?
|
||||||
|
if [ $changes != 0 ]; then
|
||||||
|
printf -- '-svn%s%s' "$rev" -dirty
|
||||||
|
else
|
||||||
|
printf -- '-svn%s' "$rev"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# All done with svn
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
# default version
|
||||||
|
printf -- '-%s' "`date +%Y%m`"
|
||||||
89
src/barwin.c
89
src/barwin.c
@@ -39,20 +39,20 @@
|
|||||||
* \param w BarWindow Width
|
* \param w BarWindow Width
|
||||||
* \param h BarWindow Height
|
* \param h BarWindow Height
|
||||||
* \param color BarWindow color
|
* \param color BarWindow color
|
||||||
* \param entermask Bool for know if the EnterMask mask is needed
|
* \param entermask bool for know if the EnterMask mask is needed
|
||||||
* \return The BarWindow pointer
|
* \return The BarWindow pointer
|
||||||
*/
|
*/
|
||||||
BarWindow*
|
BarWindow*
|
||||||
barwin_create(Window parent,
|
barwin_create(Window parent,
|
||||||
int x,
|
int x,
|
||||||
int y,
|
int y,
|
||||||
uint w,
|
int w,
|
||||||
uint h,
|
int h,
|
||||||
uint bg,
|
uint bg,
|
||||||
char *fg,
|
char *fg,
|
||||||
Bool entermask,
|
bool entermask,
|
||||||
Bool stipple,
|
bool stipple,
|
||||||
Bool border)
|
bool border)
|
||||||
{
|
{
|
||||||
XSetWindowAttributes at;
|
XSetWindowAttributes at;
|
||||||
BarWindow *bw;
|
BarWindow *bw;
|
||||||
@@ -80,7 +80,7 @@ barwin_create(Window parent,
|
|||||||
/* His border */
|
/* His border */
|
||||||
if(border)
|
if(border)
|
||||||
{
|
{
|
||||||
bw->bord = True;
|
bw->flags |= BordFlag;
|
||||||
bw->border.light = color_shade(bg, conf.colors.bar_light_shade);
|
bw->border.light = color_shade(bg, conf.colors.bar_light_shade);
|
||||||
bw->border.dark = color_shade(bg, conf.colors.bar_dark_shade);
|
bw->border.dark = color_shade(bg, conf.colors.bar_dark_shade);
|
||||||
|
|
||||||
@@ -97,7 +97,7 @@ barwin_create(Window parent,
|
|||||||
bw->geo.height = h;
|
bw->geo.height = h;
|
||||||
bw->bg = bg;
|
bw->bg = bg;
|
||||||
bw->fg = fg;
|
bw->fg = fg;
|
||||||
bw->stipple = stipple;
|
FLAGAPPLY(bw->flags, stipple, StippleFlag);
|
||||||
bw->stipple_color = -1;
|
bw->stipple_color = -1;
|
||||||
|
|
||||||
return bw;
|
return bw;
|
||||||
@@ -108,11 +108,8 @@ barwin_create(Window parent,
|
|||||||
void
|
void
|
||||||
barwin_draw_text(BarWindow *bw, int x, int y, char *text)
|
barwin_draw_text(BarWindow *bw, int x, int y, char *text)
|
||||||
{
|
{
|
||||||
if(!text)
|
|
||||||
return;
|
|
||||||
|
|
||||||
/* Background color of the text if there is stipple */
|
/* Background color of the text if there is stipple */
|
||||||
if(bw->stipple)
|
if(bw->flags & StippleFlag)
|
||||||
draw_rectangle(bw->dr, x - 4, 0, textw(text) + 8, bw->geo.height, bw->bg);
|
draw_rectangle(bw->dr, x - 4, 0, textw(text) + 8, bw->geo.height, bw->bg);
|
||||||
|
|
||||||
/* Draw text */
|
/* Draw text */
|
||||||
@@ -123,26 +120,6 @@ barwin_draw_text(BarWindow *bw, int x, int y, char *text)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Draw text in a Barwindow
|
|
||||||
*/
|
|
||||||
void
|
|
||||||
barwin_draw_image_ofset_text(BarWindow *bw, int x, int y, char *text, int x_image_ofset, int y_image_ofset)
|
|
||||||
{
|
|
||||||
if(!text)
|
|
||||||
return;
|
|
||||||
|
|
||||||
/* Background color of the text if there is stipple */
|
|
||||||
if(bw->stipple)
|
|
||||||
draw_rectangle(bw->dr, x - 4, 0, textw(text) + 8, bw->geo.height, bw->bg);
|
|
||||||
|
|
||||||
/* Draw text */
|
|
||||||
draw_image_ofset_text(bw->dr, x, y, bw->fg, text, x_image_ofset, y_image_ofset);
|
|
||||||
|
|
||||||
barwin_refresh(bw);
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void
|
||||||
barwin_color_set(BarWindow *bw, uint bg, char *fg)
|
barwin_color_set(BarWindow *bw, uint bg, char *fg)
|
||||||
{
|
{
|
||||||
@@ -151,12 +128,15 @@ barwin_color_set(BarWindow *bw, uint bg, char *fg)
|
|||||||
bw->bg = bg;
|
bw->bg = bg;
|
||||||
bw->fg = fg;
|
bw->fg = fg;
|
||||||
|
|
||||||
if(bw->bord)
|
if(bw->flags & BordFlag)
|
||||||
{
|
{
|
||||||
bw->border.light = color_shade(bg, conf.colors.bar_light_shade);
|
bw->border.light = color_shade(bg, conf.colors.bar_light_shade);
|
||||||
bw->border.dark = color_shade(bg, conf.colors.bar_dark_shade);
|
bw->border.dark = color_shade(bg, conf.colors.bar_dark_shade);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(bw->flags & StippleFlag && bw->stipple_color == -1)
|
||||||
|
bw->stipple_color = getcolor(fg);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -195,11 +175,11 @@ barwin_delete_subwin(BarWindow *bw)
|
|||||||
void
|
void
|
||||||
barwin_map(BarWindow *bw)
|
barwin_map(BarWindow *bw)
|
||||||
{
|
{
|
||||||
CHECK(!bw->mapped);
|
CHECK(!(bw->flags & MappedFlag));
|
||||||
|
|
||||||
XMapWindow(dpy, bw->win);
|
XMapWindow(dpy, bw->win);
|
||||||
|
|
||||||
bw->mapped = True;
|
bw->flags |= MappedFlag;
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -225,11 +205,11 @@ barwin_map_subwin(BarWindow *bw)
|
|||||||
void
|
void
|
||||||
barwin_unmap(BarWindow *bw)
|
barwin_unmap(BarWindow *bw)
|
||||||
{
|
{
|
||||||
CHECK(bw->mapped);
|
CHECK(bw->flags & MappedFlag);
|
||||||
|
|
||||||
XUnmapWindow(dpy, bw->win);
|
XUnmapWindow(dpy, bw->win);
|
||||||
|
|
||||||
bw->mapped = False;
|
bw->flags &= ~MappedFlag;
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -269,25 +249,26 @@ barwin_move(BarWindow *bw, int x, int y)
|
|||||||
* \param h Height
|
* \param h Height
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
barwin_resize(BarWindow *bw, uint w, uint h)
|
barwin_resize(BarWindow *bw, int w, int h)
|
||||||
{
|
{
|
||||||
if(!bw || (bw->geo.width == w && bw->geo.height == h))
|
if(!bw || (bw->geo.width == w && bw->geo.height == h))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
bw->geo.width = w;
|
/* Frame */
|
||||||
bw->geo.height = h;
|
|
||||||
XFreePixmap(dpy, bw->dr);
|
XFreePixmap(dpy, bw->dr);
|
||||||
|
|
||||||
/* Frame */
|
|
||||||
bw->dr = XCreatePixmap(dpy, ROOT,
|
bw->dr = XCreatePixmap(dpy, ROOT,
|
||||||
w - ((bw->bord) ? SHADH : 0),
|
w - ((bw->flags & BordFlag) ? SHADH : 0),
|
||||||
h - ((bw->bord) ? SHADH : 0),
|
h - ((bw->flags & BordFlag) ? SHADH : 0),
|
||||||
DefaultDepth(dpy, SCREEN));
|
DefaultDepth(dpy, SCREEN));
|
||||||
|
|
||||||
|
bw->geo.width = w;
|
||||||
|
bw->geo.height = h;
|
||||||
|
|
||||||
XResizeWindow(dpy, bw->win, w, h);
|
XResizeWindow(dpy, bw->win, w, h);
|
||||||
|
|
||||||
/* Border */
|
/* Border */
|
||||||
if(bw->bord)
|
if(bw->flags & BordFlag)
|
||||||
{
|
{
|
||||||
XResizeWindow(dpy, bw->border.left, SHADH, h);
|
XResizeWindow(dpy, bw->border.left, SHADH, h);
|
||||||
XResizeWindow(dpy, bw->border.top, w, SHADH);
|
XResizeWindow(dpy, bw->border.top, w, SHADH);
|
||||||
@@ -306,20 +287,21 @@ barwin_refresh_color(BarWindow *bw)
|
|||||||
{
|
{
|
||||||
CHECK(bw);
|
CHECK(bw);
|
||||||
|
|
||||||
draw_rectangle(bw->dr, 0, 0, bw->geo.width, bw->geo.height, bw->bg);
|
XSetForeground(dpy, gc, bw->bg);
|
||||||
|
XFillRectangle(dpy, bw->dr, gc, 0, 0, bw->geo.width, bw->geo.height);
|
||||||
|
|
||||||
if(bw->stipple)
|
if(bw->flags & StippleFlag)
|
||||||
{
|
{
|
||||||
XSetForeground(dpy, gc_stipple, ((bw->stipple_color != (uint)-1) ? (long)bw->stipple_color : getcolor(bw->fg)));
|
XSetForeground(dpy, gc_stipple, bw->stipple_color);
|
||||||
XFillRectangle(dpy, bw->dr, gc_stipple, 3, 2, bw->geo.width - 6, bw->geo.height - 4);
|
XFillRectangle(dpy, bw->dr, gc_stipple, 3, 2, bw->geo.width - 6, bw->geo.height - 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(bw->bord)
|
if(bw->flags & BordFlag)
|
||||||
{
|
{
|
||||||
XSetWindowBackground(dpy, bw->border.left, bw->border.light);
|
XSetWindowBackground(dpy, bw->border.left, bw->border.light);
|
||||||
XSetWindowBackground(dpy, bw->border.top, bw->border.light);
|
XSetWindowBackground(dpy, bw->border.top, bw->border.light);
|
||||||
XSetWindowBackground(dpy, bw->border.bottom, bw->border.dark);
|
XSetWindowBackground(dpy, bw->border.bottom, bw->border.dark);
|
||||||
XSetWindowBackground(dpy, bw->border.right, bw->border.dark);
|
XSetWindowBackground(dpy, bw->border.right, bw->border.dark);
|
||||||
|
|
||||||
XClearWindow(dpy, bw->border.left);
|
XClearWindow(dpy, bw->border.left);
|
||||||
XClearWindow(dpy, bw->border.top);
|
XClearWindow(dpy, bw->border.top);
|
||||||
@@ -336,8 +318,7 @@ barwin_refresh_color(BarWindow *bw)
|
|||||||
void
|
void
|
||||||
barwin_refresh(BarWindow *bw)
|
barwin_refresh(BarWindow *bw)
|
||||||
{
|
{
|
||||||
if(!bw || !bw->dr || !bw->win)
|
CHECK(bw);
|
||||||
return;
|
|
||||||
|
|
||||||
XCopyArea(dpy, bw->dr, bw->win, gc, 0, 0, bw->geo.width, bw->geo.height, 0, 0);
|
XCopyArea(dpy, bw->dr, bw->win, gc, 0, 0, bw->geo.width, bw->geo.height, 0, 0);
|
||||||
|
|
||||||
|
|||||||
279
src/cfactor.c
Normal file
279
src/cfactor.c
Normal file
@@ -0,0 +1,279 @@
|
|||||||
|
/*
|
||||||
|
* cfactor.c
|
||||||
|
* Copyright © 2011 Martin Duquesnoy <xorg62@gmail.com>
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are
|
||||||
|
* met:
|
||||||
|
*
|
||||||
|
* * Redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer.
|
||||||
|
* * Redistributions in binary form must reproduce the above
|
||||||
|
* copyright notice, this list of conditions and the following disclaimer
|
||||||
|
* in the documentation and/or other materials provided with the
|
||||||
|
* distribution.
|
||||||
|
* * Neither the name of the nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||||
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "wmfs.h"
|
||||||
|
|
||||||
|
#define CLIENT_RESIZE_DIR(d) \
|
||||||
|
void \
|
||||||
|
uicb_client_resize_##d(uicb_t cmd) \
|
||||||
|
{ \
|
||||||
|
CHECK(sel); \
|
||||||
|
cfactor_set(sel, d, atoi(cmd)); \
|
||||||
|
}
|
||||||
|
|
||||||
|
/* uicb_client_resize_dir() */
|
||||||
|
CLIENT_RESIZE_DIR(Right);
|
||||||
|
CLIENT_RESIZE_DIR(Left);
|
||||||
|
CLIENT_RESIZE_DIR(Top);
|
||||||
|
CLIENT_RESIZE_DIR(Bottom);
|
||||||
|
|
||||||
|
/** Clean client tile factors
|
||||||
|
*\param c Client pointer
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
cfactor_clean(Client *c)
|
||||||
|
{
|
||||||
|
CHECK(c);
|
||||||
|
|
||||||
|
if(!(tags[c->screen][c->tag].flags & (SplitFlag | CleanFactFlag)))
|
||||||
|
return;
|
||||||
|
|
||||||
|
c->tilefact[Right] = c->tilefact[Left] = 0;
|
||||||
|
c->tilefact[Top] = c->tilefact[Bottom] = 0;
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Return new geo of client with factors applied
|
||||||
|
*\param c Client pointer
|
||||||
|
*\return geo
|
||||||
|
*/
|
||||||
|
Geo
|
||||||
|
cfactor_geo(Geo geo, int fact[4], int *err)
|
||||||
|
{
|
||||||
|
Geo cgeo = geo;
|
||||||
|
|
||||||
|
*err = 0;
|
||||||
|
|
||||||
|
/* Right factor */
|
||||||
|
cgeo.width += fact[Right];
|
||||||
|
|
||||||
|
/* Left factor */
|
||||||
|
cgeo.x -= fact[Left];
|
||||||
|
cgeo.width += fact[Left];
|
||||||
|
|
||||||
|
/* Top factor */
|
||||||
|
cgeo.y -= fact[Top];
|
||||||
|
cgeo.height += fact[Top];
|
||||||
|
|
||||||
|
/* Bottom factor */
|
||||||
|
cgeo.height += fact[Bottom];
|
||||||
|
|
||||||
|
/* Too big/small */
|
||||||
|
if(cgeo.width > sgeo[selscreen].width || cgeo.height > sgeo[selscreen].height
|
||||||
|
|| cgeo.width < (BORDH << 1) || cgeo.height < (BORDH + TBARH))
|
||||||
|
{
|
||||||
|
*err = 1;
|
||||||
|
return geo;
|
||||||
|
}
|
||||||
|
|
||||||
|
return cgeo;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Get c parents of row and resize
|
||||||
|
*\param c Client pointer
|
||||||
|
*\param p Direction of resizing
|
||||||
|
*\param fac Factor of resizing
|
||||||
|
*/
|
||||||
|
static void
|
||||||
|
_cfactor_arrange_row(Client *c, Position p, int fac)
|
||||||
|
{
|
||||||
|
Geo cgeo = c->frame_geo;
|
||||||
|
Client *cc;
|
||||||
|
|
||||||
|
/* Travel clients to search parents of row and apply fact */
|
||||||
|
for(cc = tiled_client(c->screen, clients); cc; cc = tiled_client(c->screen, cc->next))
|
||||||
|
if(CFACTOR_PARENTROW(cgeo, cc->frame_geo, p))
|
||||||
|
{
|
||||||
|
cc->tilefact[p] += fac;
|
||||||
|
client_moveresize(cc, cc->geo, (tags[cc->screen][cc->tag].flags & ResizeHintFlag));
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Get c parents of row and check geo with futur resize factor
|
||||||
|
*\param c Client pointer
|
||||||
|
*\param p Direction of resizing
|
||||||
|
*\param fac Factor of resizing
|
||||||
|
*\return False in case of error
|
||||||
|
*/
|
||||||
|
static bool
|
||||||
|
_cfactor_check_geo_row(Client *c, Position p, int fac)
|
||||||
|
{
|
||||||
|
Geo cgeo = c->frame_geo;
|
||||||
|
Client *cc;
|
||||||
|
int e, f[4] = { 0 };
|
||||||
|
|
||||||
|
f[p] += fac;
|
||||||
|
|
||||||
|
/* Travel clients to search parents of row and check geos */
|
||||||
|
for(cc = tiled_client(c->screen, clients); cc; cc = tiled_client(c->screen, cc->next))
|
||||||
|
if(CFACTOR_PARENTROW(cgeo, cc->frame_geo, p))
|
||||||
|
{
|
||||||
|
(Geo)cfactor_geo(cc->wrgeo, f, &e);
|
||||||
|
if(e)
|
||||||
|
return False;
|
||||||
|
}
|
||||||
|
|
||||||
|
return True;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Resize only 2 client with applied factor
|
||||||
|
*\param c1 Client pointer
|
||||||
|
*\param c2 Client pointer
|
||||||
|
*\param p Direction of resizing
|
||||||
|
*\param fac Facotr
|
||||||
|
*/
|
||||||
|
static void
|
||||||
|
cfactor_arrange_two(Client *c1, Client *c2, Position p, int fac)
|
||||||
|
{
|
||||||
|
c1->tilefact[p] += fac;
|
||||||
|
c2->tilefact[RPOS(p)] -= fac;
|
||||||
|
|
||||||
|
/* Needed in case of padding */
|
||||||
|
if(conf.client.padding)
|
||||||
|
{
|
||||||
|
c1->flags |= FLayFlag;
|
||||||
|
c2->flags |= FLayFlag;
|
||||||
|
}
|
||||||
|
|
||||||
|
client_moveresize(c1, c1->geo, (tags[c1->screen][c1->tag].flags & ResizeHintFlag));
|
||||||
|
client_moveresize(c2, c2->geo, (tags[c2->screen][c2->tag].flags & ResizeHintFlag));
|
||||||
|
|
||||||
|
return;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Get c parents of row and resize, exception checking same size before arranging row
|
||||||
|
*\param c Client pointer
|
||||||
|
*\param gc Client pointer
|
||||||
|
*\param p Direction of resizing
|
||||||
|
*\param fac Factor of resizing
|
||||||
|
*/
|
||||||
|
static void
|
||||||
|
cfactor_arrange_row(Client *c, Client *gc, Position p, int fac)
|
||||||
|
{
|
||||||
|
if(CFACTOR_CHECK2(c->frame_geo, gc->frame_geo, p))
|
||||||
|
cfactor_arrange_two(c, gc, p, fac);
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_cfactor_arrange_row(c, p, fac);
|
||||||
|
_cfactor_arrange_row(gc, RPOS(p), -fac);
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Check future geometry of factorized client
|
||||||
|
*\param c Client pointer
|
||||||
|
*\param g Client pointer
|
||||||
|
*\param p Direction of resizing
|
||||||
|
*\param fac Factor of resizing
|
||||||
|
*/
|
||||||
|
static bool
|
||||||
|
cfactor_check_geo(Client *c, Client *g, Position p, int fac)
|
||||||
|
{
|
||||||
|
int e, ee;
|
||||||
|
int cf[4] = { 0 }, gf[4] = { 0 };
|
||||||
|
|
||||||
|
/* Check c & g first */
|
||||||
|
cf[p] += fac;
|
||||||
|
gf[RPOS(p)] -= fac;
|
||||||
|
|
||||||
|
(Geo)cfactor_geo(c->geo, cf, &e);
|
||||||
|
(Geo)cfactor_geo(g->geo, gf, &ee);
|
||||||
|
|
||||||
|
/* Size failure */
|
||||||
|
if(e || ee || !_cfactor_check_geo_row(c, p, fac)
|
||||||
|
|| !_cfactor_check_geo_row(g, RPOS(p), -fac))
|
||||||
|
return False;
|
||||||
|
|
||||||
|
return True;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Manual resizing of tiled clients
|
||||||
|
* \param c Client pointer
|
||||||
|
* \param p Direction of resizing
|
||||||
|
* \param fac Factor of resizing
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
cfactor_set(Client *c, Position p, int fac)
|
||||||
|
{
|
||||||
|
Client *gc = NULL;
|
||||||
|
|
||||||
|
if(!c || !(c->flags & TileFlag) || p > Bottom)
|
||||||
|
return;
|
||||||
|
|
||||||
|
/* Get next client with direction of resize */
|
||||||
|
gc = client_get_next_with_direction(c, p);
|
||||||
|
|
||||||
|
if(!gc || c->screen != gc->screen)
|
||||||
|
return;
|
||||||
|
|
||||||
|
/* Check size */
|
||||||
|
if(!cfactor_check_geo(c, gc, p, fac))
|
||||||
|
return;
|
||||||
|
|
||||||
|
/* Arrange client and row parents */
|
||||||
|
cfactor_arrange_row(c, gc, p, fac);
|
||||||
|
|
||||||
|
/* Enable split with cfactor_enable_split option */
|
||||||
|
if(conf.cfactor_enable_split
|
||||||
|
&& !(tags[c->screen][c->tag].flags & SplitFlag))
|
||||||
|
{
|
||||||
|
tags[c->screen][c->tag].flags |= SplitFlag;
|
||||||
|
infobar_draw_layout(&infobar[c->screen]);
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Apply a complete factor array to a client
|
||||||
|
* \param c Client pointer
|
||||||
|
* \param fac factor array
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
cfactor_multi_set(Client *c, int fac[4])
|
||||||
|
{
|
||||||
|
if(!c)
|
||||||
|
return;
|
||||||
|
|
||||||
|
cfactor_set(c, Right, fac[Right]);
|
||||||
|
cfactor_set(c, Left, fac[Left]);
|
||||||
|
cfactor_set(c, Top, fac[Top]);
|
||||||
|
cfactor_set(c, Bottom, fac[Bottom]);
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
587
src/client.c
587
src/client.c
File diff suppressed because it is too large
Load Diff
160
src/config.c
160
src/config.c
@@ -36,21 +36,29 @@ const func_name_list_t func_list[] =
|
|||||||
{
|
{
|
||||||
{"spawn", uicb_spawn },
|
{"spawn", uicb_spawn },
|
||||||
{"client_kill", uicb_client_kill },
|
{"client_kill", uicb_client_kill },
|
||||||
{"client_prev", uicb_client_prev },
|
{"client_prev", uicb_client_focus_prev },
|
||||||
{"client_next", uicb_client_next },
|
{"client_next", uicb_client_focus_next },
|
||||||
{"client_swap_next", uicb_client_swap_next },
|
{"client_swap_next", uicb_client_swapsel_next },
|
||||||
{"client_swap_prev", uicb_client_swap_prev },
|
{"client_swap_prev", uicb_client_swapsel_prev },
|
||||||
|
{"client_swap_right", uicb_client_swapsel_Right },
|
||||||
|
{"client_swap_left", uicb_client_swapsel_Left },
|
||||||
|
{"client_swap_top", uicb_client_swapsel_Top },
|
||||||
|
{"client_swap_bottom", uicb_client_swapsel_Bottom },
|
||||||
{"client_screen_next", uicb_client_screen_next },
|
{"client_screen_next", uicb_client_screen_next },
|
||||||
{"client_screen_prev", uicb_client_screen_prev },
|
{"client_screen_prev", uicb_client_screen_prev },
|
||||||
{"client_screen_set", uicb_client_screen_set },
|
{"client_screen_set", uicb_client_screen_set },
|
||||||
{"client_focus_right", uicb_client_focus_right },
|
{"client_focus_right", uicb_client_focus_Right },
|
||||||
{"client_focus_left" , uicb_client_focus_left },
|
{"client_focus_left" , uicb_client_focus_Left },
|
||||||
{"client_focus_top", uicb_client_focus_top },
|
{"client_focus_top", uicb_client_focus_Top },
|
||||||
{"client_focus_bottom", uicb_client_focus_bottom },
|
{"client_focus_bottom", uicb_client_focus_Bottom },
|
||||||
{"client_move", uicb_client_move },
|
{"client_move", uicb_client_move },
|
||||||
{"client_resize", uicb_client_resize },
|
{"client_resize", uicb_client_resize },
|
||||||
{"client_ignore_tag", uicb_client_ignore_tag },
|
{"client_ignore_tag", uicb_client_ignore_tag },
|
||||||
{"client_set_master", uicb_client_set_master },
|
{"client_set_master", uicb_client_set_master },
|
||||||
|
{"client_resize_right", uicb_client_resize_Right },
|
||||||
|
{"client_resize_left", uicb_client_resize_Left },
|
||||||
|
{"client_resize_top", uicb_client_resize_Top },
|
||||||
|
{"client_resize_bottom", uicb_client_resize_Bottom },
|
||||||
{"toggle_max", uicb_togglemax },
|
{"toggle_max", uicb_togglemax },
|
||||||
{"layout_next", uicb_layout_next },
|
{"layout_next", uicb_layout_next },
|
||||||
{"layout_prev", uicb_layout_prev },
|
{"layout_prev", uicb_layout_prev },
|
||||||
@@ -100,6 +108,13 @@ const func_name_list_t func_list[] =
|
|||||||
{"check_clist", uicb_checkclist },
|
{"check_clist", uicb_checkclist },
|
||||||
{"toggle_tagautohide", uicb_toggle_tagautohide },
|
{"toggle_tagautohide", uicb_toggle_tagautohide },
|
||||||
{"toggle_tag_expose", uicb_tag_toggle_expose},
|
{"toggle_tag_expose", uicb_tag_toggle_expose},
|
||||||
|
{"split_toggle", uicb_split_toggle },
|
||||||
|
{"split_move_right", uicb_split_move_Right },
|
||||||
|
{"split_move_left", uicb_split_move_Left },
|
||||||
|
{"split_move_top", uicb_split_move_Top },
|
||||||
|
{"split_move_bottom", uicb_split_move_Bottom },
|
||||||
|
/*{"split_client_vertical" uicb_split_client_vertical },
|
||||||
|
{"split_client_horizontal", uicb_split_client_horizontal }, */
|
||||||
{NULL, NULL}
|
{NULL, NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -151,17 +166,23 @@ mouse_section(MouseBinding mb[], struct conf_sec **sec)
|
|||||||
static void
|
static void
|
||||||
conf_misc_section(void)
|
conf_misc_section(void)
|
||||||
{
|
{
|
||||||
|
bool xft = False;
|
||||||
int pad = 12;
|
int pad = 12;
|
||||||
uint opacity = 255;
|
uint opacity = 255;
|
||||||
struct conf_sec *sec;
|
struct conf_sec *sec;
|
||||||
|
|
||||||
sec = fetch_section_first(NULL, "misc");
|
sec = fetch_section_first(NULL, "misc");
|
||||||
|
|
||||||
|
#ifdef HAVE_XFT
|
||||||
|
xft = True;
|
||||||
|
#endif /* HAVE_XFT */
|
||||||
|
|
||||||
conf.font = fetch_opt_first(sec, "sans-9", "font").str;
|
conf.font = fetch_opt_first(sec, "sans-9", "font").str;
|
||||||
conf.raisefocus = fetch_opt_first(sec, "false", "raisefocus").bool;
|
conf.use_xft = fetch_opt_first(sec, (xft ? "true" : "false"), "use_xft").boolean;
|
||||||
conf.focus_fmouse = fetch_opt_first(sec, "true", "focus_follow_mouse").bool;
|
conf.raisefocus = fetch_opt_first(sec, "false", "raisefocus").boolean;
|
||||||
conf.focus_fmov = fetch_opt_first(sec, "false", "focus_follow_movement").bool;
|
conf.focus_fmouse = fetch_opt_first(sec, "true", "focus_follow_mouse").boolean;
|
||||||
conf.focus_pclick = fetch_opt_first(sec, "true", "focus_pointer_click").bool;
|
conf.focus_fmov = fetch_opt_first(sec, "false", "focus_follow_movement").boolean;
|
||||||
|
conf.focus_pclick = fetch_opt_first(sec, "true", "focus_pointer_click").boolean;
|
||||||
conf.status_timing = fetch_opt_first(sec, "1", "status_timing").num;
|
conf.status_timing = fetch_opt_first(sec, "1", "status_timing").num;
|
||||||
conf.status_path = fetch_opt_first(sec, "", "status_path").str;
|
conf.status_path = fetch_opt_first(sec, "", "status_path").str;
|
||||||
conf.autostart_path = fetch_opt_first(sec, "", "autostart_path").str;
|
conf.autostart_path = fetch_opt_first(sec, "", "autostart_path").str;
|
||||||
@@ -177,7 +198,6 @@ conf_misc_section(void)
|
|||||||
if(pad > 24 || pad < 1)
|
if(pad > 24 || pad < 1)
|
||||||
{
|
{
|
||||||
warnx("configuration : pad value (%d) incorrect.", pad);
|
warnx("configuration : pad value (%d) incorrect.", pad);
|
||||||
|
|
||||||
pad = 12;
|
pad = 12;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -201,7 +221,7 @@ conf_bar_section(void)
|
|||||||
|
|
||||||
bar = fetch_section_first(NULL, "bar");
|
bar = fetch_section_first(NULL, "bar");
|
||||||
|
|
||||||
conf.border.bar = fetch_opt_first(bar, "false", "border").bool;
|
conf.border.bar = fetch_opt_first(bar, "false", "border").boolean;
|
||||||
conf.bars.height = fetch_opt_first(bar, "-1", "height").num;
|
conf.bars.height = fetch_opt_first(bar, "-1", "height").num;
|
||||||
conf.colors.bar = getcolor((barbg = fetch_opt_first(bar, "#000000", "bg").str));
|
conf.colors.bar = getcolor((barbg = fetch_opt_first(bar, "#000000", "bg").str));
|
||||||
conf.colors.text = fetch_opt_first(bar, "#ffffff", "fg").str;
|
conf.colors.text = fetch_opt_first(bar, "#ffffff", "fg").str;
|
||||||
@@ -221,7 +241,7 @@ conf_bar_section(void)
|
|||||||
|
|
||||||
if((systray = fetch_section_first(bar, "systray")))
|
if((systray = fetch_section_first(bar, "systray")))
|
||||||
{
|
{
|
||||||
conf.systray.active = fetch_opt_first(systray, "true", "active").bool;
|
conf.systray.active = fetch_opt_first(systray, "true", "active").boolean;
|
||||||
|
|
||||||
if((conf.systray.screen = fetch_opt_first(systray, "0", "screen").num) < 0
|
if((conf.systray.screen = fetch_opt_first(systray, "0", "screen").num) < 0
|
||||||
|| conf.systray.screen >= sc)
|
|| conf.systray.screen >= sc)
|
||||||
@@ -285,27 +305,27 @@ conf_client_section(void)
|
|||||||
|
|
||||||
sec = fetch_section_first(NULL, "client");
|
sec = fetch_section_first(NULL, "client");
|
||||||
|
|
||||||
conf.client_round = fetch_opt_first(sec, "true", "client_round").bool;
|
conf.client_round = fetch_opt_first(sec, "true", "client_round").boolean;
|
||||||
conf.client_auto_center = fetch_opt_first(sec, "false", "client_auto_center").bool;
|
conf.client_auto_center = fetch_opt_first(sec, "false", "client_auto_center").boolean;
|
||||||
conf.client_tile_raise = fetch_opt_first(sec, "false", "client_tile_raise").bool;
|
conf.client_tile_raise = fetch_opt_first(sec, "false", "client_tile_raise").boolean;
|
||||||
|
|
||||||
if ((conf.client.borderheight = fetch_opt_first(sec, "1", "border_height").num) < 1)
|
if ((conf.client.borderheight = fetch_opt_first(sec, "1", "border_height").num) < 1)
|
||||||
conf.client.borderheight = 1;
|
conf.client.borderheight = 1;
|
||||||
|
|
||||||
conf.client.border_shadow = fetch_opt_first(sec, "false", "border_shadow").bool;
|
conf.client.border_shadow = fetch_opt_first(sec, "false", "border_shadow").boolean;
|
||||||
conf.client.place_at_mouse = fetch_opt_first(sec, "false", "place_at_mouse").bool;
|
conf.client.place_at_mouse = fetch_opt_first(sec, "false", "place_at_mouse").boolean;
|
||||||
conf.client.bordernormal = getcolor(fetch_opt_first(sec, "#000000", "border_normal").str);
|
conf.client.bordernormal = getcolor(fetch_opt_first(sec, "#000000", "border_normal").str);
|
||||||
conf.client.borderfocus = getcolor(fetch_opt_first(sec, "#ffffff", "border_focus").str);
|
conf.client.borderfocus = getcolor(fetch_opt_first(sec, "#ffffff", "border_focus").str);
|
||||||
conf.client.resizecorner_normal = getcolor(fetch_opt_first(sec, "#222222", "resize_corner_normal").str);
|
conf.client.resizecorner_normal = getcolor(fetch_opt_first(sec, "#222222", "resize_corner_normal").str);
|
||||||
conf.client.resizecorner_focus = getcolor(fetch_opt_first(sec, "#DDDDDD", "resize_corner_focus").str);
|
conf.client.resizecorner_focus = getcolor(fetch_opt_first(sec, "#DDDDDD", "resize_corner_focus").str);
|
||||||
conf.client.mod |= char_to_modkey(fetch_opt_first(sec, "Alt", "modifier").str, key_list);
|
conf.client.mod |= char_to_modkey(fetch_opt_first(sec, "Alt", "modifier").str, key_list);
|
||||||
conf.client.set_new_win_master = fetch_opt_first(sec, "true", "set_new_win_master").bool;
|
conf.client.set_new_win_master = fetch_opt_first(sec, "true", "set_new_win_master").boolean;
|
||||||
conf.client.padding = fetch_opt_first(sec, "0", "padding").num;
|
conf.client.padding = fetch_opt_first(sec, "0", "padding").num;
|
||||||
conf.client.autofree = fetch_opt_first(sec, "", "autofree").str;
|
conf.client.autofree = fetch_opt_first(sec, "", "autofree").str;
|
||||||
conf.client.automax = fetch_opt_first(sec, "", "automax").str;
|
conf.client.automax = fetch_opt_first(sec, "", "automax").str;
|
||||||
conf.client.default_open_tag = fetch_opt_first(sec, "0", "default_open_tag").num;
|
conf.client.default_open_tag = fetch_opt_first(sec, "0", "default_open_tag").num;
|
||||||
conf.client.default_open_screen = fetch_opt_first(sec, "-1", "default_open_screen").num;
|
conf.client.default_open_screen = fetch_opt_first(sec, "-1", "default_open_screen").num;
|
||||||
conf.client.new_client_get_mouse = fetch_opt_first(sec, "false", "new_client_get_mouse").bool;
|
conf.client.new_client_get_mouse = fetch_opt_first(sec, "false", "new_client_get_mouse").boolean;
|
||||||
|
|
||||||
conf.colors.client_light_shade = fetch_opt_first(sec, "0.25", "light_shade").fnum;
|
conf.colors.client_light_shade = fetch_opt_first(sec, "0.25", "light_shade").fnum;
|
||||||
conf.colors.client_dark_shade = fetch_opt_first(sec, "-0.25", "dark_shade").fnum;
|
conf.colors.client_dark_shade = fetch_opt_first(sec, "-0.25", "dark_shade").fnum;
|
||||||
@@ -326,7 +346,7 @@ conf_client_section(void)
|
|||||||
conf.titlebar.fg_normal = fetch_opt_first(titlebar, "#ffffff", "fg_normal").str;
|
conf.titlebar.fg_normal = fetch_opt_first(titlebar, "#ffffff", "fg_normal").str;
|
||||||
conf.titlebar.fg_focus = fetch_opt_first(titlebar, "#000000", "fg_focus").str;
|
conf.titlebar.fg_focus = fetch_opt_first(titlebar, "#000000", "fg_focus").str;
|
||||||
|
|
||||||
conf.titlebar.stipple.active = fetch_opt_first(titlebar, "false", "stipple").bool;
|
conf.titlebar.stipple.active = fetch_opt_first(titlebar, "false", "stipple").boolean;
|
||||||
|
|
||||||
if(!strcmp((p = fetch_opt_first(titlebar, "-1", "stipple_normal").str), "-1"))
|
if(!strcmp((p = fetch_opt_first(titlebar, "-1", "stipple_normal").str), "-1"))
|
||||||
conf.titlebar.stipple.colors.normal = getcolor(conf.titlebar.fg_normal);
|
conf.titlebar.stipple.colors.normal = getcolor(conf.titlebar.fg_normal);
|
||||||
@@ -420,11 +440,12 @@ conf_layout_section(void)
|
|||||||
layouts = fetch_section_first(NULL, "layouts");
|
layouts = fetch_section_first(NULL, "layouts");
|
||||||
|
|
||||||
conf.layout_button_width = fetch_opt_first(layouts, "O", "layout_button_width").num;
|
conf.layout_button_width = fetch_opt_first(layouts, "O", "layout_button_width").num;
|
||||||
conf.border.layout = fetch_opt_first(layouts, "false", "border").bool;
|
conf.border.layout = fetch_opt_first(layouts, "false", "border").boolean;
|
||||||
conf.colors.layout_fg = fetch_opt_first(layouts, "#ffffff", "fg").str;
|
conf.colors.layout_fg = fetch_opt_first(layouts, "#ffffff", "fg").str;
|
||||||
conf.colors.layout_bg = getcolor((fetch_opt_first(layouts, "#000000", "bg").str));
|
conf.colors.layout_bg = getcolor((fetch_opt_first(layouts, "#000000", "bg").str));
|
||||||
conf.keep_layout_geo = fetch_opt_first(layouts, "false", "keep_layout_geo").bool;
|
conf.keep_layout_geo = fetch_opt_first(layouts, "false", "keep_layout_geo").boolean;
|
||||||
conf.selected_layout_symbol = fetch_opt_first(layouts, "*", "selected_layout_symbol").str;
|
conf.selected_layout_symbol = fetch_opt_first(layouts, "*", "selected_layout_symbol").str;
|
||||||
|
conf.cfactor_enable_split = fetch_opt_first(layouts, "false", "cfactor_enable_split").boolean;
|
||||||
|
|
||||||
if((tmp = fetch_opt_first(layouts, "menu", "system").str) && !strcmp(tmp, "menu"))
|
if((tmp = fetch_opt_first(layouts, "menu", "system").str) && !strcmp(tmp, "menu"))
|
||||||
conf.layout_system = True;
|
conf.layout_system = True;
|
||||||
@@ -484,25 +505,24 @@ conf_layout_section(void)
|
|||||||
static void
|
static void
|
||||||
conf_tag_section(void)
|
conf_tag_section(void)
|
||||||
{
|
{
|
||||||
int i, j, k, l = 0, m, n, sc, count, bar_pos;
|
int i, j, k, l = 0, n, sc, bar_pos;
|
||||||
char *tmp;
|
char *tmp;
|
||||||
char *position;
|
char *position;
|
||||||
struct conf_sec *sec, *def_tag, **tag, **mouse;
|
struct conf_sec *sec, *def_tag, **tag, **mouse;
|
||||||
struct opt_type *opt;
|
|
||||||
|
|
||||||
sec = fetch_section_first(NULL, "tags");
|
sec = fetch_section_first(NULL, "tags");
|
||||||
|
|
||||||
conf.tag_round = fetch_opt_first(sec, "false", "tag_round").bool;
|
conf.tag_round = fetch_opt_first(sec, "false", "tag_round").boolean;
|
||||||
conf.tag_auto_prev = fetch_opt_first(sec, "true", "tag_auto_prev").bool;
|
conf.tag_auto_prev = fetch_opt_first(sec, "true", "tag_auto_prev").boolean;
|
||||||
conf.colors.tagselfg = fetch_opt_first(sec, "#ffffff", "sel_fg").str;
|
conf.colors.tagselfg = fetch_opt_first(sec, "#ffffff", "sel_fg").str;
|
||||||
conf.colors.tagselbg = getcolor(fetch_opt_first(sec, "#000000", "sel_bg").str);
|
conf.colors.tagselbg = getcolor(fetch_opt_first(sec, "#000000", "sel_bg").str);
|
||||||
conf.colors.tagurfg = fetch_opt_first(sec, "#000000", "urgent_fg").str;
|
conf.colors.tagurfg = fetch_opt_first(sec, "#000000", "urgent_fg").str;
|
||||||
conf.colors.tagurbg = getcolor(fetch_opt_first(sec, "#DD1111", "urgent_bg").str);
|
conf.colors.tagurbg = getcolor(fetch_opt_first(sec, "#DD1111", "urgent_bg").str);
|
||||||
conf.colors.tag_occupied_bg = getcolor(fetch_opt_first(sec, "#222222", "occupied_bg").str);
|
conf.colors.tag_occupied_bg = getcolor(fetch_opt_first(sec, "#222222", "occupied_bg").str);
|
||||||
conf.colors.tag_occupied_fg = fetch_opt_first(sec, conf.colors.text, "occupied_fg").str;
|
conf.colors.tag_occupied_fg = fetch_opt_first(sec, conf.colors.text, "occupied_fg").str;
|
||||||
conf.border.tag = fetch_opt_first(sec, "false", "border").bool;
|
conf.border.tag = fetch_opt_first(sec, "false", "border").boolean;
|
||||||
conf.tagautohide = fetch_opt_first(sec, "false", "autohide").bool;
|
conf.tagautohide = fetch_opt_first(sec, "false", "autohide").boolean;
|
||||||
conf.tagnamecount = fetch_opt_first(sec, "false", "name_count").bool;
|
conf.tagnamecount = fetch_opt_first(sec, "false", "name_count").boolean;
|
||||||
conf.tag_expose_name = fetch_opt_first(sec, "EXPOSE", "expose_name").str;
|
conf.tag_expose_name = fetch_opt_first(sec, "EXPOSE", "expose_name").str;
|
||||||
conf.expose_layout = fetch_opt_first(sec, "tile_grid_vertical", "expose_layout").str;
|
conf.expose_layout = fetch_opt_first(sec, "tile_grid_vertical", "expose_layout").str;
|
||||||
|
|
||||||
@@ -522,13 +542,29 @@ conf_tag_section(void)
|
|||||||
/* If there is no tag in the conf or more than
|
/* If there is no tag in the conf or more than
|
||||||
* MAXTAG (36) print an error and create only one.
|
* MAXTAG (36) print an error and create only one.
|
||||||
*/
|
*/
|
||||||
Tag default_tag = { fetch_opt_first(def_tag, "new tag", "name").str, NULL, 0, 1,
|
Tag default_tag =
|
||||||
fetch_opt_first(def_tag, "0.6", "mwfact").fnum,
|
{
|
||||||
fetch_opt_first(def_tag, "1", "nmaster").num,
|
fetch_opt_first(def_tag, "new tag", "name").str,
|
||||||
False, fetch_opt_first(def_tag, "False", "resizehint").bool,
|
NULL,
|
||||||
False, False, bar_pos, bar_pos,
|
1,
|
||||||
layout_name_to_struct(conf.layout, fetch_opt_first(def_tag, "title_right", "layout").str, conf.nlayout, layout_list),
|
fetch_opt_first(def_tag, "0.6", "mwfact").fnum,
|
||||||
0, NULL, 0, False };
|
fetch_opt_first(def_tag, "1", "nmaster").num,
|
||||||
|
0,
|
||||||
|
bar_pos,
|
||||||
|
bar_pos,
|
||||||
|
layout_name_to_struct(conf.layout, fetch_opt_first(def_tag, "tile", "layout").str, conf.nlayout, layout_list),
|
||||||
|
0,
|
||||||
|
NULL,
|
||||||
|
0
|
||||||
|
};
|
||||||
|
|
||||||
|
FLAGAPPLY(default_tag.flags,
|
||||||
|
fetch_opt_first(def_tag, "false", "resizehint").boolean,
|
||||||
|
ResizeHintFlag);
|
||||||
|
|
||||||
|
FLAGAPPLY(default_tag.flags,
|
||||||
|
fetch_opt_first(def_tag, "false", "split").boolean,
|
||||||
|
(SplitFlag | FirstArrangeFlag));
|
||||||
|
|
||||||
conf.default_tag = default_tag;
|
conf.default_tag = default_tag;
|
||||||
|
|
||||||
@@ -577,9 +613,17 @@ conf_tag_section(void)
|
|||||||
tags[k][conf.ntag[k]].name = fetch_opt_first(tag[i], fetch_opt_first(def_tag, "", "name").str, "name").str;
|
tags[k][conf.ntag[k]].name = fetch_opt_first(tag[i], fetch_opt_first(def_tag, "", "name").str, "name").str;
|
||||||
tags[k][conf.ntag[k]].mwfact = fetch_opt_first(tag[i], fetch_opt_first(def_tag, "0.65", "mwfact").str, "mwfact").fnum;
|
tags[k][conf.ntag[k]].mwfact = fetch_opt_first(tag[i], fetch_opt_first(def_tag, "0.65", "mwfact").str, "mwfact").fnum;
|
||||||
tags[k][conf.ntag[k]].nmaster = fetch_opt_first(tag[i], fetch_opt_first(def_tag, "1", "nmaster").str, "nmaster").num;
|
tags[k][conf.ntag[k]].nmaster = fetch_opt_first(tag[i], fetch_opt_first(def_tag, "1", "nmaster").str, "nmaster").num;
|
||||||
tags[k][conf.ntag[k]].resizehint = fetch_opt_first(tag[i], fetch_opt_first(def_tag, "false", "resizehint").str, "resizehint").bool;
|
FLAGAPPLY(tags[k][conf.ntag[k]].flags,
|
||||||
tags[k][conf.ntag[k]].abovefc = fetch_opt_first(tag[i], "false", "abovefc").bool;
|
fetch_opt_first(tag[i], fetch_opt_first(def_tag, "false", "resizehint").str, "resizehint").boolean,
|
||||||
tags[k][conf.ntag[k]].layers = 1;
|
ResizeHintFlag);
|
||||||
|
|
||||||
|
FLAGAPPLY(tags[k][conf.ntag[k]].flags,
|
||||||
|
fetch_opt_first(tag[i], "false", "abovefc").boolean,
|
||||||
|
AboveFCFlag);
|
||||||
|
|
||||||
|
FLAGAPPLY(tags[k][conf.ntag[k]].flags,
|
||||||
|
fetch_opt_first(tag[i], "false", "split").boolean,
|
||||||
|
(SplitFlag | FirstArrangeFlag));
|
||||||
|
|
||||||
tmp = fetch_opt_first(tag[i], fetch_opt_first(def_tag, "top", "infobar_position").str, "infobar_position").str;
|
tmp = fetch_opt_first(tag[i], fetch_opt_first(def_tag, "top", "infobar_position").str, "infobar_position").str;
|
||||||
|
|
||||||
@@ -591,22 +635,9 @@ conf_tag_section(void)
|
|||||||
tags[k][conf.ntag[k]].barpos = IB_Top;
|
tags[k][conf.ntag[k]].barpos = IB_Top;
|
||||||
|
|
||||||
tags[k][conf.ntag[k]].layout = layout_name_to_struct(conf.layout,
|
tags[k][conf.ntag[k]].layout = layout_name_to_struct(conf.layout,
|
||||||
fetch_opt_first(tag[i], fetch_opt_first(def_tag, "title_right", "layout").str, "layout").str,
|
fetch_opt_first(tag[i], fetch_opt_first(def_tag, "tile", "layout").str, "layout").str,
|
||||||
conf.nlayout,
|
conf.nlayout,
|
||||||
layout_list);
|
layout_list);
|
||||||
|
|
||||||
/* Clients list */
|
|
||||||
opt = fetch_opt(tag[i], "", "clients");
|
|
||||||
|
|
||||||
if ((count = fetch_opt_count(opt)))
|
|
||||||
{
|
|
||||||
tags[k][conf.ntag[k]].nclients = count;
|
|
||||||
tags[k][conf.ntag[k]].clients = xcalloc(count, sizeof(char *));
|
|
||||||
for(m = 0; m < count; ++m)
|
|
||||||
tags[k][conf.ntag[k]].clients[m] = opt[m].str;
|
|
||||||
}
|
|
||||||
|
|
||||||
free(opt);
|
|
||||||
|
|
||||||
/* Multi mouse sections */
|
/* Multi mouse sections */
|
||||||
mouse = fetch_section(tag[i], "mouse");
|
mouse = fetch_section(tag[i], "mouse");
|
||||||
@@ -641,7 +672,8 @@ conf_rule_section(void)
|
|||||||
int i;
|
int i;
|
||||||
struct conf_sec *rules, **rule;
|
struct conf_sec *rules, **rule;
|
||||||
|
|
||||||
rules = fetch_section_first(NULL, "rules");
|
if ((rules = fetch_section_first(NULL, "rules")) == NULL)
|
||||||
|
return;
|
||||||
|
|
||||||
rule = fetch_section(rules, "rule");
|
rule = fetch_section(rules, "rule");
|
||||||
|
|
||||||
@@ -656,10 +688,10 @@ conf_rule_section(void)
|
|||||||
conf.rule[i].role = fetch_opt_first(rule[i], "", "role").str;
|
conf.rule[i].role = fetch_opt_first(rule[i], "", "role").str;
|
||||||
conf.rule[i].screen = fetch_opt_first(rule[i], "-1", "screen").num;
|
conf.rule[i].screen = fetch_opt_first(rule[i], "-1", "screen").num;
|
||||||
conf.rule[i].tag = fetch_opt_first(rule[i], "-1", "tag").num;
|
conf.rule[i].tag = fetch_opt_first(rule[i], "-1", "tag").num;
|
||||||
conf.rule[i].free = fetch_opt_first(rule[i], "false", "free").bool;
|
conf.rule[i].free = fetch_opt_first(rule[i], "false", "free").boolean;
|
||||||
conf.rule[i].max = fetch_opt_first(rule[i], "false", "max").bool;
|
conf.rule[i].max = fetch_opt_first(rule[i], "false", "max").boolean;
|
||||||
conf.rule[i].ignoretags = fetch_opt_first(rule[i], "false", "ignoretags").bool;
|
conf.rule[i].ignoretags = fetch_opt_first(rule[i], "false", "ignoretags").boolean;
|
||||||
conf.rule[i].follow_client = fetch_opt_first(rule[i], "false", "follow_client").bool;
|
conf.rule[i].follow_client = fetch_opt_first(rule[i], "false", "follow_client").boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
free(rule);
|
free(rule);
|
||||||
@@ -687,7 +719,7 @@ conf_menu_section(void)
|
|||||||
|
|
||||||
conf.menu[i].name = fetch_opt_first(set_menu[i], "menu_wname", "name").str;
|
conf.menu[i].name = fetch_opt_first(set_menu[i], "menu_wname", "name").str;
|
||||||
|
|
||||||
if(!(conf.menu[i].place_at_mouse = fetch_opt_first(set_menu[i], "true", "place_at_mouse").bool))
|
if(!(conf.menu[i].place_at_mouse = fetch_opt_first(set_menu[i], "true", "place_at_mouse").boolean))
|
||||||
{
|
{
|
||||||
conf.menu[i].x = fetch_opt_first(set_menu[i], "0", "x").num;
|
conf.menu[i].x = fetch_opt_first(set_menu[i], "0", "x").num;
|
||||||
conf.menu[i].y = fetch_opt_first(set_menu[i], "0", "y").num;
|
conf.menu[i].y = fetch_opt_first(set_menu[i], "0", "y").num;
|
||||||
|
|||||||
183
src/draw.c
183
src/draw.c
@@ -33,20 +33,22 @@
|
|||||||
#include "wmfs.h"
|
#include "wmfs.h"
|
||||||
|
|
||||||
#ifdef HAVE_IMLIB
|
#ifdef HAVE_IMLIB
|
||||||
|
static int sw = 0;
|
||||||
|
|
||||||
/** Draw an image in a drawable
|
/** Draw an image in a drawable
|
||||||
* \param dr Drawable
|
* \param dr Drawable
|
||||||
* \param x X position
|
* \param x X position
|
||||||
* \param y Y position
|
* \param y Y position
|
||||||
* \param name Path of the image
|
* \param name Path of the image
|
||||||
*/
|
*/
|
||||||
static void draw_image(Drawable dr, int x, int y, int w, int h, char *name)
|
static void
|
||||||
|
draw_image(Drawable dr, int x, int y, int w, int h, char *name)
|
||||||
{
|
{
|
||||||
Imlib_Image image;
|
Imlib_Image image;
|
||||||
|
|
||||||
if(!name)
|
if(!dr)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
imlib_set_cache_size(2048 * 1024);
|
|
||||||
imlib_context_set_display(dpy);
|
imlib_context_set_display(dpy);
|
||||||
imlib_context_set_visual(DefaultVisual(dpy, DefaultScreen(dpy)));
|
imlib_context_set_visual(DefaultVisual(dpy, DefaultScreen(dpy)));
|
||||||
imlib_context_set_colormap(DefaultColormap(dpy, DefaultScreen(dpy)));
|
imlib_context_set_colormap(DefaultColormap(dpy, DefaultScreen(dpy)));
|
||||||
@@ -62,23 +64,45 @@ static void draw_image(Drawable dr, int x, int y, int w, int h, char *name)
|
|||||||
h = imlib_image_get_height();
|
h = imlib_image_get_height();
|
||||||
|
|
||||||
if(image)
|
if(image)
|
||||||
{
|
|
||||||
imlib_render_image_on_drawable_at_size(x, y, w, h);
|
imlib_render_image_on_drawable_at_size(x, y, w, h);
|
||||||
imlib_free_image();
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
warnx("Can't draw image: '%s'", name);
|
warnx("Can't draw image: '%s'", name);
|
||||||
|
|
||||||
|
imlib_free_image();
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Check images blocks in str and return properties
|
||||||
|
* --> \i[x;y;w;h;name]\
|
||||||
|
*\param im ImageAttr pointer, image properties
|
||||||
|
*\param str String
|
||||||
|
*\return n Lenght of i
|
||||||
|
*/
|
||||||
|
static int
|
||||||
|
parse_image_block(Drawable dr, char *str)
|
||||||
|
{
|
||||||
|
ImageAttr im;
|
||||||
|
char as;
|
||||||
|
int i, j, k;
|
||||||
|
|
||||||
|
for(i = j = 0; i < (int)strlen(str); ++i, ++j)
|
||||||
|
if(sscanf(&str[i], "\\i[%d;%d;%d;%d;%512[^]]]%c", &im.x, &im.y, &im.w, &im.h, im.name, &as) == 6
|
||||||
|
&& as == '\\')
|
||||||
|
{
|
||||||
|
draw_image(dr, im.x - sw, im.y, im.w, im.h, im.name);
|
||||||
|
|
||||||
|
for(++i, --j; str[i] != as || str[i - 1] != ']'; ++i);
|
||||||
|
}
|
||||||
|
else if(j != i)
|
||||||
|
str[j] = str[i];
|
||||||
|
|
||||||
|
for(sw = 0, k = j; k < i; str[k++] = 0);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
#endif /* HAVE_IMLIB */
|
#endif /* HAVE_IMLIB */
|
||||||
|
|
||||||
void
|
|
||||||
draw_text(Drawable d, int x, int y, char* fg, char *str)
|
|
||||||
{
|
|
||||||
draw_image_ofset_text(d, x, y, fg, str, 0, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Draw a string in a Drawable
|
/** Draw a string in a Drawable
|
||||||
* \param d Drawable
|
* \param d Drawable
|
||||||
* \param x X position
|
* \param x X position
|
||||||
@@ -88,60 +112,61 @@ draw_text(Drawable d, int x, int y, char* fg, char *str)
|
|||||||
* \param str String that will be draw
|
* \param str String that will be draw
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
draw_image_ofset_text(Drawable d, int x, int y, char* fg, char *str, int x_image_ofset, int y_image_ofset)
|
draw_text(Drawable d, int x, int y, char* fg, char *str)
|
||||||
{
|
{
|
||||||
XftColor xftcolor;
|
CHECK(str);
|
||||||
XftDraw *xftd;
|
|
||||||
#ifdef HAVE_IMLIB
|
|
||||||
char *ostr = NULL;
|
|
||||||
int i, ni, sw = 0;
|
|
||||||
ImageAttr im[128];
|
|
||||||
size_t textlen;
|
|
||||||
#else
|
|
||||||
(void)x_image_ofset;
|
|
||||||
(void)y_image_ofset;
|
|
||||||
#endif /* HAVE_IMLIB */
|
|
||||||
|
|
||||||
if(!str)
|
|
||||||
return;
|
|
||||||
|
|
||||||
/* To draw image everywhere we can draw text */
|
/* To draw image everywhere we can draw text */
|
||||||
#ifdef HAVE_IMLIB
|
#ifdef HAVE_IMLIB
|
||||||
|
char *ostr;
|
||||||
ostr = xstrdup(str);
|
size_t textlen = 0;
|
||||||
textlen = strlen(ostr);
|
|
||||||
|
|
||||||
if(strstr(str, "i["))
|
if(strstr(str, "i["))
|
||||||
{
|
{
|
||||||
ni = parse_image_block(im, str);
|
if(d == infobar[conf.systray.screen].bar->dr)
|
||||||
|
|
||||||
if(infobar[conf.systray.screen].bar && d == infobar[conf.systray.screen].bar->dr)
|
|
||||||
sw = systray_get_width();
|
sw = systray_get_width();
|
||||||
|
|
||||||
for(i = 0; i < ni; ++i)
|
ostr = xstrdup(str);
|
||||||
draw_image(d, x_image_ofset + im[i].x - sw, y_image_ofset + im[i].y, im[i].w, im[i].h, im[i].name);
|
textlen = strlen(ostr);
|
||||||
|
parse_image_block(d, str);
|
||||||
}
|
}
|
||||||
#endif /* HAVE_IMLIB */
|
#endif /* HAVE_IMLIB */
|
||||||
|
|
||||||
/* Transform X Drawable -> Xft Drawable */
|
#ifdef HAVE_XFT
|
||||||
xftd = XftDrawCreate(dpy, d, DefaultVisual(dpy, SCREEN), DefaultColormap(dpy, SCREEN));
|
if(conf.use_xft)
|
||||||
|
{
|
||||||
|
XftColor xftcolor;
|
||||||
|
XftDraw *xftd;
|
||||||
|
|
||||||
/* Alloc text color */
|
/* Transform X Drawable -> Xft Drawable */
|
||||||
XftColorAllocName(dpy, DefaultVisual(dpy, SCREEN),
|
xftd = XftDrawCreate(dpy, d, DefaultVisual(dpy, SCREEN), DefaultColormap(dpy, SCREEN));
|
||||||
DefaultColormap(dpy, SCREEN), fg, &xftcolor);
|
|
||||||
|
|
||||||
XftDrawStringUtf8(xftd, &xftcolor, font, x, y, (FcChar8 *)str, strlen(str));
|
/* Alloc text color */
|
||||||
|
XftColorAllocName(dpy, DefaultVisual(dpy, SCREEN),
|
||||||
|
DefaultColormap(dpy, SCREEN), fg, &xftcolor);
|
||||||
|
|
||||||
/* Free the text color and XftDraw */
|
XftDrawStringUtf8(xftd, &xftcolor, font.font, x, y, (FcChar8 *)str, strlen(str));
|
||||||
XftColorFree(dpy, DefaultVisual(dpy, SCREEN), DefaultColormap(dpy, SCREEN), &xftcolor);
|
|
||||||
|
/* Free the text color and XftDraw */
|
||||||
|
XftColorFree(dpy, DefaultVisual(dpy, SCREEN), DefaultColormap(dpy, SCREEN), &xftcolor);
|
||||||
|
|
||||||
|
XftDrawDestroy(xftd);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
#endif /* HAVE_XFT */
|
||||||
|
{
|
||||||
|
/* Use font set */
|
||||||
|
XSetForeground(dpy, gc, getcolor(fg));
|
||||||
|
XmbDrawString(dpy, d, font.fontset, gc, x, y, str, strlen(str));
|
||||||
|
}
|
||||||
|
|
||||||
XftDrawDestroy(xftd);
|
|
||||||
|
|
||||||
#ifdef HAVE_IMLIB
|
#ifdef HAVE_IMLIB
|
||||||
if(strstr(ostr, "i["))
|
if(textlen)
|
||||||
|
{
|
||||||
strncpy(str, ostr, textlen);
|
strncpy(str, ostr, textlen);
|
||||||
|
free(ostr);
|
||||||
free(ostr);
|
}
|
||||||
#endif /* HAVE_IMLIB */
|
#endif /* HAVE_IMLIB */
|
||||||
|
|
||||||
return;
|
return;
|
||||||
@@ -156,12 +181,10 @@ draw_image_ofset_text(Drawable d, int x, int y, char* fg, char *str, int x_image
|
|||||||
* \param color Color of the rectangle
|
* \param color Color of the rectangle
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
draw_rectangle(Drawable dr, int x, int y, uint w, uint h, uint color)
|
draw_rectangle(Drawable dr, int x, int y, int w, int h, uint color)
|
||||||
{
|
{
|
||||||
XRectangle r = { x, y, w, h };
|
|
||||||
|
|
||||||
XSetForeground(dpy, gc, color);
|
XSetForeground(dpy, gc, color);
|
||||||
XFillRectangles(dpy, dr, gc, &r, 1);
|
XFillRectangle(dpy, dr, gc, x, y, (uint)w, (uint)h);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -176,18 +199,12 @@ draw_rectangle(Drawable dr, int x, int y, uint w, uint h, uint color)
|
|||||||
* \param data Array of bytes that will be draw
|
* \param data Array of bytes that will be draw
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
draw_graph(Drawable dr, int x, int y, uint w, uint h, uint color, char *data)
|
draw_graph(Drawable dr, int x, int y, int w, int h, uint color, char *data)
|
||||||
{
|
{
|
||||||
uint i;
|
int i;
|
||||||
|
|
||||||
XSetForeground(dpy, gc, color);
|
|
||||||
|
|
||||||
for(i = 0; i < w; ++i)
|
for(i = 0; i < w; ++i)
|
||||||
{
|
draw_rectangle(dr, x + i, y + h - data[i], 1, data[i], color);
|
||||||
XRectangle r = { (x + i), (y + h - data[i]), 1, data[i] };
|
|
||||||
|
|
||||||
XFillRectangles(dpy, dr, gc, &r, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -199,34 +216,48 @@ draw_graph(Drawable dr, int x, int y, uint w, uint h, uint color, char *data)
|
|||||||
ushort
|
ushort
|
||||||
textw(char *text)
|
textw(char *text)
|
||||||
{
|
{
|
||||||
XGlyphInfo gl;
|
Drawable d = 0;
|
||||||
#ifdef HAVE_IMLIB
|
ushort ret = 0;
|
||||||
char *ostr = NULL;
|
|
||||||
ImageAttr im[128];
|
|
||||||
size_t textlen;
|
|
||||||
#endif /* HAVE_IMLIB */
|
|
||||||
|
|
||||||
if(!text)
|
if(!text)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
|
||||||
#ifdef HAVE_IMLIB
|
#ifdef HAVE_IMLIB
|
||||||
|
char *ostr;
|
||||||
ostr = xstrdup(text);
|
size_t textlen = 0;
|
||||||
textlen = strlen(ostr);
|
|
||||||
|
|
||||||
if(strstr(text, "i["))
|
if(strstr(text, "i["))
|
||||||
parse_image_block(im, text);
|
{
|
||||||
|
ostr = xstrdup(text);
|
||||||
|
textlen = strlen(ostr);
|
||||||
|
parse_image_block(d, text);
|
||||||
|
}
|
||||||
#endif /* HAVE_IMLIB */
|
#endif /* HAVE_IMLIB */
|
||||||
|
|
||||||
XftTextExtentsUtf8(dpy, font, (FcChar8 *)text, strlen(text), &gl);
|
#ifdef HAVE_XFT
|
||||||
|
if(conf.use_xft)
|
||||||
|
{
|
||||||
|
XGlyphInfo gl;
|
||||||
|
|
||||||
|
XftTextExtentsUtf8(dpy, font.font, (FcChar8 *)text, strlen(text), &gl);
|
||||||
|
ret = gl.width + font.de;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
#endif /* HAVE_XFT */
|
||||||
|
{
|
||||||
|
XRectangle r;
|
||||||
|
|
||||||
|
XmbTextExtents(font.fontset, text, strlen(text), NULL, &r);
|
||||||
|
ret = r.width;
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef HAVE_IMLIB
|
#ifdef HAVE_IMLIB
|
||||||
if(strstr(ostr, "i["))
|
if(textlen)
|
||||||
|
{
|
||||||
strncpy(text, ostr, textlen);
|
strncpy(text, ostr, textlen);
|
||||||
|
free(ostr);
|
||||||
free(ostr);
|
}
|
||||||
#endif /* HAVE_IMLIB */
|
#endif /* HAVE_IMLIB */
|
||||||
|
|
||||||
return gl.width + font->descent;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|||||||
259
src/event.c
259
src/event.c
@@ -32,12 +32,14 @@
|
|||||||
|
|
||||||
#include "wmfs.h"
|
#include "wmfs.h"
|
||||||
|
|
||||||
|
#define EVDPY (e->xany.display)
|
||||||
|
|
||||||
/** ButtonPress handle event
|
/** ButtonPress handle event
|
||||||
* \param ev XButtonEvent pointer
|
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
buttonpress(XButtonEvent *ev)
|
buttonpress(XEvent *e)
|
||||||
{
|
{
|
||||||
|
XButtonEvent *ev = &e->xbutton;
|
||||||
Client *c;
|
Client *c;
|
||||||
int i, j, n;
|
int i, j, n;
|
||||||
|
|
||||||
@@ -160,14 +162,14 @@ buttonpress(XButtonEvent *ev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* ClientMessage handle event
|
/* ClientMessage handle event
|
||||||
*\param ev XClientMessageEvent pointer
|
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
clientmessageevent(XClientMessageEvent *ev)
|
clientmessageevent(XEvent *e)
|
||||||
{
|
{
|
||||||
|
XClientMessageEvent *ev = &e->xclient;
|
||||||
Client *c;
|
Client *c;
|
||||||
Systray *sy;
|
Systray *sy;
|
||||||
int s, i, mess_t = 0;
|
int s, mess_t = 0;
|
||||||
Atom rt;
|
Atom rt;
|
||||||
int rf;
|
int rf;
|
||||||
ulong ir, il;
|
ulong ir, il;
|
||||||
@@ -180,9 +182,8 @@ clientmessageevent(XClientMessageEvent *ev)
|
|||||||
|
|
||||||
s = screen_count();
|
s = screen_count();
|
||||||
|
|
||||||
for(i = 0; i < net_last + s; ++i)
|
while(mess_t < net_last + s && net_atom[mess_t] != ev->message_type)
|
||||||
if(net_atom[i] == ev->message_type)
|
++mess_t;
|
||||||
mess_t = i;
|
|
||||||
|
|
||||||
if(ev->window == ROOT)
|
if(ev->window == ROOT)
|
||||||
{
|
{
|
||||||
@@ -204,7 +205,7 @@ clientmessageevent(XClientMessageEvent *ev)
|
|||||||
if((c = client_gb_win(ev->window)))
|
if((c = client_gb_win(ev->window)))
|
||||||
client_focus(c);
|
client_focus(c);
|
||||||
else if((sy = systray_find(ev->data.l[0])))
|
else if((sy = systray_find(ev->data.l[0])))
|
||||||
XSetInputFocus(dpy, sy->win, RevertToNone, CurrentTime);
|
XSetInputFocus(EVDPY, sy->win, RevertToNone, CurrentTime);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if(ev->window == traywin)
|
else if(ev->window == traywin)
|
||||||
@@ -239,34 +240,35 @@ clientmessageevent(XClientMessageEvent *ev)
|
|||||||
if((c = client_gb_win(ev->window)) && ev->data.l[0] != (long)0xFFFFFFFF)
|
if((c = client_gb_win(ev->window)) && ev->data.l[0] != (long)0xFFFFFFFF)
|
||||||
tag_transfert(c, ev->data.l[0]);
|
tag_transfert(c, ev->data.l[0]);
|
||||||
|
|
||||||
/* Manage _WMFS_STATUSTEXT_x */
|
if(ev->data.l[4])
|
||||||
if(mess_t >= wmfs_statustext && ev->data.l[4] == True)
|
|
||||||
{
|
{
|
||||||
if(XGetWindowProperty(dpy, ROOT, net_atom[mess_t], 0, 4096,
|
/* Manage _WMFS_STATUSTEXT_x */
|
||||||
False, net_atom[utf8_string], &rt, &rf, &ir, &il, &ret) == Success)
|
if(mess_t >= wmfs_statustext)
|
||||||
{
|
{
|
||||||
statustext_handle(mess_t - wmfs_statustext, (char*)ret);
|
if(XGetWindowProperty(EVDPY, ROOT, net_atom[mess_t], 0, 4096,
|
||||||
|
False, net_atom[utf8_string], &rt, &rf, &ir, &il, &ret) == Success)
|
||||||
|
{
|
||||||
|
statustext_handle(mess_t - wmfs_statustext, (char*)ret);
|
||||||
|
XFree(ret);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Manage _WMFS_FUNCTION && _WMFS_CMD */
|
||||||
|
if(mess_t == wmfs_function || mess_t == wmfs_cmd)
|
||||||
|
{
|
||||||
|
XGetWindowProperty(EVDPY, ROOT, net_atom[wmfs_function], 0, 4096,
|
||||||
|
False, net_atom[utf8_string], &rt, &rf, &ir, &il, &ret);
|
||||||
|
XGetWindowProperty(EVDPY, ROOT, net_atom[wmfs_cmd], 0, 4096,
|
||||||
|
False, net_atom[utf8_string], &rt, &rf, &ir, &il, &ret_cmd);
|
||||||
|
|
||||||
|
if((func = name_to_func((char*)ret, func_list)))
|
||||||
|
func((uicb_t)ret_cmd);
|
||||||
|
|
||||||
|
XFree(ret_cmd);
|
||||||
XFree(ret);
|
XFree(ret);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Manage _WMFS_FUNCTION && _WMFS_CMD */
|
|
||||||
if((mess_t == wmfs_function && ev->data.l[4] == True)
|
|
||||||
|| (mess_t == wmfs_cmd && ev->data.l[4] == True))
|
|
||||||
{
|
|
||||||
XGetWindowProperty(dpy, ROOT, net_atom[wmfs_function], 0, 4096,
|
|
||||||
False, net_atom[utf8_string], &rt, &rf, &ir, &il, &ret);
|
|
||||||
|
|
||||||
XGetWindowProperty(dpy, ROOT, net_atom[wmfs_cmd], 0, 4096,
|
|
||||||
False, net_atom[utf8_string], &rt, &rf, &ir, &il, &ret_cmd);
|
|
||||||
|
|
||||||
if((func = name_to_func((char*)ret, func_list)))
|
|
||||||
func((uicb_t)ret_cmd);
|
|
||||||
|
|
||||||
XFree(ret_cmd);
|
|
||||||
XFree(ret);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Manage _WMFS_UPDATE_HINTS */
|
/* Manage _WMFS_UPDATE_HINTS */
|
||||||
if(mess_t == wmfs_update_hints)
|
if(mess_t == wmfs_update_hints)
|
||||||
{
|
{
|
||||||
@@ -279,30 +281,26 @@ clientmessageevent(XClientMessageEvent *ev)
|
|||||||
screen_get_sel();
|
screen_get_sel();
|
||||||
}
|
}
|
||||||
|
|
||||||
if(mess_t == wmfs_update_status
|
/* Manage _WMFS_UPDATE_STATUS */
|
||||||
&& estatus)
|
if(mess_t == wmfs_update_status && estatus)
|
||||||
spawn(conf.status_path);
|
spawn(conf.status_path);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** ConfigureRequesthandle events
|
/** ConfigureRequesthandle events
|
||||||
* \param ev XConfigureRequestEvent pointer
|
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
configureevent(XConfigureRequestEvent *ev)
|
configureevent(XEvent *e)
|
||||||
{
|
{
|
||||||
|
XConfigureRequestEvent *ev = &e->xconfigurerequest;
|
||||||
XWindowChanges wc;
|
XWindowChanges wc;
|
||||||
Client *c;
|
Client *c;
|
||||||
|
|
||||||
/* Check part */
|
/* Check part */
|
||||||
if((c = client_gb_win(ev->window))
|
if(((c = client_gb_win(ev->window)) || (c = client_gb_win(ev->window)))
|
||||||
|| (c = client_gb_win(ev->window)))
|
&& (c->flags & (LMaxFlag | MaxFlag | FSSFlag)))
|
||||||
{
|
return;
|
||||||
CHECK(!(c->flags & LMaxFlag));
|
|
||||||
CHECK(!(c->flags & MaxFlag));
|
|
||||||
CHECK(!(c->flags & FSSFlag));
|
|
||||||
}
|
|
||||||
|
|
||||||
if((c = client_gb_win(ev->window)))
|
if((c = client_gb_win(ev->window)))
|
||||||
{
|
{
|
||||||
@@ -315,7 +313,7 @@ configureevent(XConfigureRequestEvent *ev)
|
|||||||
if(ev->value_mask & CWHeight)
|
if(ev->value_mask & CWHeight)
|
||||||
c->geo.height = ev->height;
|
c->geo.height = ev->height;
|
||||||
|
|
||||||
if(c->flags & FreeFlag || !(c->flags & (TileFlag | LMaxFlag)))
|
if(c->flags & FreeFlag || !(c->flags & TileFlag))
|
||||||
client_moveresize(c, c->geo, False);
|
client_moveresize(c, c->geo, False);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -333,18 +331,18 @@ configureevent(XConfigureRequestEvent *ev)
|
|||||||
wc.sibling = ev->above;
|
wc.sibling = ev->above;
|
||||||
wc.stack_mode = ev->detail;
|
wc.stack_mode = ev->detail;
|
||||||
|
|
||||||
XConfigureWindow(dpy, ev->window, ev->value_mask, &wc);
|
XConfigureWindow(EVDPY, ev->window, ev->value_mask, &wc);
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** DestroyNotify handle event
|
/** DestroyNotify handle event
|
||||||
* \param ev XDestroyWindowEvent pointer
|
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
destroynotify(XDestroyWindowEvent *ev)
|
destroynotify(XEvent *e)
|
||||||
{
|
{
|
||||||
|
XDestroyWindowEvent *ev = &e->xdestroywindow;
|
||||||
Client *c;
|
Client *c;
|
||||||
Systray *s;
|
Systray *s;
|
||||||
|
|
||||||
@@ -364,19 +362,24 @@ destroynotify(XDestroyWindowEvent *ev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** EnterNotify handle event
|
/** EnterNotify handle event
|
||||||
* \param ev XCrossingEvent pointer
|
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
enternotify(XCrossingEvent *ev)
|
enternotify(XEvent *e)
|
||||||
{
|
{
|
||||||
|
XCrossingEvent *ev = &e->xcrossing;
|
||||||
Client *c;
|
Client *c;
|
||||||
int n;
|
int n;
|
||||||
|
|
||||||
if((ev->mode != NotifyNormal
|
if((ev->mode != NotifyNormal || ev->detail == NotifyInferior)
|
||||||
|| ev->detail == NotifyInferior)
|
&& ev->window != ROOT)
|
||||||
&& ev->window != ROOT)
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if(tags[selscreen][seltag[selscreen]].flags & IgnoreEnterFlag)
|
||||||
|
{
|
||||||
|
tags[selscreen][seltag[selscreen]].flags &= ~IgnoreEnterFlag;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
/* Don't handle EnterNotify event if it's about systray */
|
/* Don't handle EnterNotify event if it's about systray */
|
||||||
if(systray_find(ev->window) || ev->window == traywin)
|
if(systray_find(ev->window) || ev->window == traywin)
|
||||||
return;
|
return;
|
||||||
@@ -397,11 +400,11 @@ enternotify(XCrossingEvent *ev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** ExposeEvent handle event
|
/** ExposeEvent handle event
|
||||||
* \param ev XExposeEvent pointer
|
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
expose(XExposeEvent *ev)
|
expose(XEvent *e)
|
||||||
{
|
{
|
||||||
|
XExposeEvent *ev = &e->xexpose;
|
||||||
Client *c;
|
Client *c;
|
||||||
int i, sc;
|
int i, sc;
|
||||||
|
|
||||||
@@ -427,28 +430,26 @@ expose(XExposeEvent *ev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** FocusChange handle event
|
/** FocusChange handle event
|
||||||
* \param ev XFocusChangeEvent pointer
|
|
||||||
* \return
|
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
focusin(XFocusChangeEvent *ev)
|
focusin(XEvent *e)
|
||||||
{
|
{
|
||||||
if(sel && ev->window != sel->win)
|
if(sel && e->xfocus.window != sel->win)
|
||||||
client_focus(sel);
|
client_focus(sel);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** KeyPress handle event
|
/** KeyPress handle event
|
||||||
* \param ev XKeyPressedEvent pointer
|
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
keypress(XKeyPressedEvent *ev)
|
keypress(XEvent *e)
|
||||||
{
|
{
|
||||||
int i;
|
XKeyPressedEvent *ev = &e->xkey;
|
||||||
KeySym keysym;
|
KeySym keysym;
|
||||||
|
int i;
|
||||||
|
|
||||||
keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
|
keysym = XKeycodeToKeysym(EVDPY, (KeyCode)ev->keycode, 0);
|
||||||
for(i = 0; i < conf.nkeybind; ++i)
|
for(i = 0; i < conf.nkeybind; ++i)
|
||||||
if(keysym == keys[i].keysym
|
if(keysym == keys[i].keysym
|
||||||
&& (keys[i].mod & ~(numlockmask | LockMask))
|
&& (keys[i].mod & ~(numlockmask | LockMask))
|
||||||
@@ -460,11 +461,11 @@ keypress(XKeyPressedEvent *ev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** MappingNotify handle event
|
/** MappingNotify handle event
|
||||||
* \param ev XMappingEvent pointer
|
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
mappingnotify(XMappingEvent *ev)
|
mappingnotify(XEvent *e)
|
||||||
{
|
{
|
||||||
|
XMappingEvent *ev = &e->xmapping;
|
||||||
XRefreshKeyboardMapping(ev);
|
XRefreshKeyboardMapping(ev);
|
||||||
|
|
||||||
if(ev->request == MappingKeyboard)
|
if(ev->request == MappingKeyboard)
|
||||||
@@ -474,11 +475,11 @@ mappingnotify(XMappingEvent *ev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** MapNotify handle event
|
/** MapNotify handle event
|
||||||
* \param ev XMapEvent pointer
|
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
mapnotify(XMapEvent *ev)
|
mapnotify(XEvent *e)
|
||||||
{
|
{
|
||||||
|
XMapEvent *ev = &e->xmap;
|
||||||
Client *c;
|
Client *c;
|
||||||
Systray *s;
|
Systray *s;
|
||||||
|
|
||||||
@@ -497,15 +498,15 @@ mapnotify(XMapEvent *ev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** MapRequest handle event
|
/** MapRequest handle event
|
||||||
* \param ev XMapRequestEvent pointer
|
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
maprequest(XMapRequestEvent *ev)
|
maprequest(XEvent *e)
|
||||||
{
|
{
|
||||||
|
XMapRequestEvent *ev = &e->xmaprequest;
|
||||||
XWindowAttributes at;
|
XWindowAttributes at;
|
||||||
Systray *s;
|
Systray *s;
|
||||||
|
|
||||||
CHECK(XGetWindowAttributes(dpy, ev->window, &at));
|
CHECK(XGetWindowAttributes(EVDPY, ev->window, &at));
|
||||||
CHECK(!at.override_redirect);
|
CHECK(!at.override_redirect);
|
||||||
|
|
||||||
if((s = systray_find(ev->window)))
|
if((s = systray_find(ev->window)))
|
||||||
@@ -520,11 +521,11 @@ maprequest(XMapRequestEvent *ev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** PropertyNotify handle event
|
/** PropertyNotify handle event
|
||||||
* \param ev XPropertyEvent pointer
|
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
propertynotify(XPropertyEvent *ev)
|
propertynotify(XEvent *e)
|
||||||
{
|
{
|
||||||
|
XPropertyEvent *ev = &e->xproperty;
|
||||||
Client *c;
|
Client *c;
|
||||||
Systray *s;
|
Systray *s;
|
||||||
Window trans;
|
Window trans;
|
||||||
@@ -544,17 +545,15 @@ propertynotify(XPropertyEvent *ev)
|
|||||||
switch(ev->atom)
|
switch(ev->atom)
|
||||||
{
|
{
|
||||||
case XA_WM_TRANSIENT_FOR:
|
case XA_WM_TRANSIENT_FOR:
|
||||||
XGetTransientForHint(dpy, c->win, &trans);
|
XGetTransientForHint(EVDPY, c->win, &trans);
|
||||||
if((c->flags & TileFlag || c->flags & MaxFlag))
|
if((c->flags & (TileFlag | MaxFlag)) && client_gb_win(trans))
|
||||||
if(((c->flags & HintFlag && (client_gb_win(trans) != NULL)))
|
arrange(c->screen, True);
|
||||||
|| (!(c->flags & HintFlag && (client_gb_win(trans) != NULL))))
|
|
||||||
arrange(c->screen, True);
|
|
||||||
break;
|
break;
|
||||||
case XA_WM_NORMAL_HINTS:
|
case XA_WM_NORMAL_HINTS:
|
||||||
client_size_hints(c);
|
client_size_hints(c);
|
||||||
break;
|
break;
|
||||||
case XA_WM_HINTS:
|
case XA_WM_HINTS:
|
||||||
if((h = XGetWMHints(dpy, c->win)) && (h->flags & XUrgencyHint) && c != sel)
|
if((h = XGetWMHints(EVDPY, c->win)) && (h->flags & XUrgencyHint) && c != sel)
|
||||||
{
|
{
|
||||||
client_urgent(c, True);
|
client_urgent(c, True);
|
||||||
XFree(h);
|
XFree(h);
|
||||||
@@ -574,10 +573,9 @@ propertynotify(XPropertyEvent *ev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** XReparentEvent handle event
|
/** XReparentEvent handle event
|
||||||
* \param ev XReparentEvent pointer
|
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
reparentnotify(XReparentEvent *ev)
|
reparentnotify(XEvent *ev)
|
||||||
{
|
{
|
||||||
(void)ev;
|
(void)ev;
|
||||||
|
|
||||||
@@ -585,13 +583,12 @@ reparentnotify(XReparentEvent *ev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** SelectionClearEvent handle event
|
/** SelectionClearEvent handle event
|
||||||
* \param ev XSelectionClearEvent pointer
|
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
selectionclearevent(XSelectionClearEvent *ev)
|
selectionclearevent(XEvent *ev)
|
||||||
{
|
{
|
||||||
/* Getting selection if lost it */
|
/* Getting selection if lost it */
|
||||||
if(ev->window == traywin)
|
if(ev->xselectionclear.window == traywin)
|
||||||
systray_acquire();
|
systray_acquire();
|
||||||
|
|
||||||
systray_update();
|
systray_update();
|
||||||
@@ -600,11 +597,11 @@ selectionclearevent(XSelectionClearEvent *ev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** UnmapNotify handle event
|
/** UnmapNotify handle event
|
||||||
* \param ev XUnmapEvent pointer
|
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
unmapnotify(XUnmapEvent *ev)
|
unmapnotify(XEvent *e)
|
||||||
{
|
{
|
||||||
|
XUnmapEvent *ev = &e->xunmap;
|
||||||
Client *c;
|
Client *c;
|
||||||
Systray *s;
|
Systray *s;
|
||||||
|
|
||||||
@@ -626,23 +623,41 @@ unmapnotify(XUnmapEvent *ev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** XMotionNotify handle event
|
/** XMotionNotify handle event
|
||||||
* \param ev XMotionEvent pointer
|
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
motionnotify(XMotionEvent *ev)
|
motionnotify(XEvent *e)
|
||||||
{
|
{
|
||||||
|
XMotionEvent *ev = &e->xmotion;
|
||||||
Client *c;
|
Client *c;
|
||||||
|
|
||||||
if(!conf.focus_fmouse || !conf.focus_fmov)
|
if(!conf.focus_fmouse || !conf.focus_fmov)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if((c = client_gb_win(ev->subwindow)))
|
if((c = client_gb_win(ev->subwindow)))
|
||||||
if (c != sel)
|
if(c != sel)
|
||||||
client_focus(c);
|
client_focus(c);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** XRandr handle event
|
||||||
|
*/
|
||||||
|
#ifdef HAVE_XRANDR
|
||||||
|
void
|
||||||
|
xrandrevent(XEvent *e)
|
||||||
|
{
|
||||||
|
/* Update xrandr configuration */
|
||||||
|
if(!XRRUpdateConfiguration(e))
|
||||||
|
return;
|
||||||
|
|
||||||
|
/* Reload WMFS to update the screen(s) geometry changement */
|
||||||
|
quit();
|
||||||
|
for(; argv_global[0] && argv_global[0] == ' '; ++argv_global);
|
||||||
|
execvp(argv_global, all_argv);
|
||||||
|
|
||||||
|
}
|
||||||
|
#endif /* HAVE_XRANDR */
|
||||||
|
|
||||||
/** Key grabbing function
|
/** Key grabbing function
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
@@ -664,49 +679,45 @@ grabkeys(void)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Event handle function: execute every function
|
/** Make event handle function pointer array
|
||||||
* handle by event
|
*/
|
||||||
* \param ev Event
|
|
||||||
*/
|
|
||||||
void
|
void
|
||||||
getevent(XEvent ev)
|
event_make_array(void)
|
||||||
{
|
{
|
||||||
|
int i = LASTEvent;
|
||||||
switch(ev.type)
|
|
||||||
{
|
|
||||||
case ButtonPress: buttonpress(&ev.xbutton); break;
|
|
||||||
case ClientMessage: clientmessageevent(&ev.xclient); break;
|
|
||||||
case ConfigureRequest: configureevent(&ev.xconfigurerequest); break;
|
|
||||||
case DestroyNotify: destroynotify(&ev.xdestroywindow); break;
|
|
||||||
case EnterNotify: enternotify(&ev.xcrossing); break;
|
|
||||||
case Expose: expose(&ev.xexpose); break;
|
|
||||||
case FocusIn: focusin(&ev.xfocus); break;
|
|
||||||
case KeyPress: keypress(&ev.xkey); break;
|
|
||||||
case MapNotify: mapnotify(&ev.xmap); break;
|
|
||||||
case MapRequest: maprequest(&ev.xmaprequest); break;
|
|
||||||
case MappingNotify: mappingnotify(&ev.xmapping); break;
|
|
||||||
case MotionNotify: motionnotify(&ev.xmotion); break;
|
|
||||||
case PropertyNotify: propertynotify(&ev.xproperty); break;
|
|
||||||
case ReparentNotify: reparentnotify(&ev.xreparent); break;
|
|
||||||
case SelectionClear: selectionclearevent(&ev.xselectionclear); break;
|
|
||||||
case UnmapNotify: unmapnotify(&ev.xunmap); break;
|
|
||||||
default:
|
|
||||||
|
|
||||||
#ifdef HAVE_XRANDR
|
#ifdef HAVE_XRANDR
|
||||||
/* Check Xrandr event */
|
i = xrandr_event + RRScreenChangeNotify;
|
||||||
if(ev.type == xrandr_event)
|
#endif /* HAVE_XRANDR */
|
||||||
{
|
|
||||||
/* Update xrandr configuration */
|
event_handle = xcalloc((nevent = i + 1), sizeof(event_handle));
|
||||||
XRRUpdateConfiguration(&ev);
|
|
||||||
|
/* Fill array with non-used function (do nothing) */
|
||||||
/* Reload WMFS to update the screen(s) geometry changement */
|
while(i--)
|
||||||
quit();
|
event_handle[i] = reparentnotify;
|
||||||
for(; argv_global[0] && argv_global[0] == ' '; ++argv_global);
|
|
||||||
execvp(argv_global, all_argv);
|
event_handle[ButtonPress] = buttonpress;
|
||||||
}
|
event_handle[ClientMessage] = clientmessageevent;
|
||||||
|
event_handle[ConfigureRequest] = configureevent;
|
||||||
|
event_handle[DestroyNotify] = destroynotify;
|
||||||
|
event_handle[EnterNotify] = enternotify;
|
||||||
|
event_handle[Expose] = expose;
|
||||||
|
event_handle[FocusIn] = focusin;
|
||||||
|
event_handle[KeyPress] = keypress;
|
||||||
|
event_handle[MapNotify] = mapnotify;
|
||||||
|
event_handle[MapRequest] = maprequest;
|
||||||
|
event_handle[MappingNotify] = mappingnotify;
|
||||||
|
event_handle[MotionNotify] = motionnotify;
|
||||||
|
event_handle[PropertyNotify] = propertynotify;
|
||||||
|
event_handle[ReparentNotify] = reparentnotify;
|
||||||
|
event_handle[SelectionClear] = selectionclearevent;
|
||||||
|
event_handle[UnmapNotify] = unmapnotify;
|
||||||
|
|
||||||
|
#ifdef HAVE_XRANDR
|
||||||
|
event_handle[xrandr_event + RRScreenChangeNotify] = xrandrevent;
|
||||||
#endif /* HAVE_XRANDR */
|
#endif /* HAVE_XRANDR */
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ void
|
|||||||
ewmh_init_hints(void)
|
ewmh_init_hints(void)
|
||||||
{
|
{
|
||||||
int i = 1, s, j, showing_desk = 0;
|
int i = 1, s, j, showing_desk = 0;
|
||||||
char root_name[] = WMFS_VERSION;
|
char rootn[] = "wmfs-"WMFS_VERSION;
|
||||||
char class[] = "wmfs", st[64];
|
char class[] = "wmfs", st[64];
|
||||||
long pid = (long)getpid();
|
long pid = (long)getpid();
|
||||||
char systray_atom[48];
|
char systray_atom[48];
|
||||||
@@ -126,7 +126,7 @@ ewmh_init_hints(void)
|
|||||||
PropModeReplace, (uchar*)&ROOT, 1);
|
PropModeReplace, (uchar*)&ROOT, 1);
|
||||||
|
|
||||||
XChangeProperty(dpy, ROOT, net_atom[net_wm_name], net_atom[utf8_string], 8,
|
XChangeProperty(dpy, ROOT, net_atom[net_wm_name], net_atom[utf8_string], 8,
|
||||||
PropModeReplace, (uchar*)&root_name, strlen(root_name));
|
PropModeReplace, (uchar*)&rootn, strlen(rootn));
|
||||||
|
|
||||||
XChangeProperty(dpy, ROOT, ATOM("WM_CLASS"), XA_STRING, 8,
|
XChangeProperty(dpy, ROOT, ATOM("WM_CLASS"), XA_STRING, 8,
|
||||||
PropModeReplace, (uchar*)&class, strlen(class));
|
PropModeReplace, (uchar*)&class, strlen(class));
|
||||||
@@ -423,7 +423,7 @@ ewmh_manage_window_type(Client *c)
|
|||||||
c->flags &= ~(TileFlag | MaxFlag | LMaxFlag);
|
c->flags &= ~(TileFlag | MaxFlag | LMaxFlag);
|
||||||
client_moveresize(c, c->ogeo, True);
|
client_moveresize(c, c->ogeo, True);
|
||||||
client_focus(c);
|
client_focus(c);
|
||||||
tags[selscreen][seltag[selscreen]].layout.func(selscreen);
|
layout_func(selscreen, seltag[selscreen]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
XFree(data);
|
XFree(data);
|
||||||
|
|||||||
28
src/frame.c
28
src/frame.c
@@ -87,8 +87,8 @@ frame_create(Client *c)
|
|||||||
for(i = 0; i < conf.titlebar.nbutton; ++i)
|
for(i = 0; i < conf.titlebar.nbutton; ++i)
|
||||||
{
|
{
|
||||||
CWIN(c->button[i], c->titlebar->win,
|
CWIN(c->button[i], c->titlebar->win,
|
||||||
(c->button_last_x = (BORDH + (BUTTONWH * i) + (4 * i))),
|
(c->button_last_x = (BORDH + (BUTTONWH * i) + (i << 2))),
|
||||||
((BUTTONWH - 1) / 2), BUTTONWH, BUTTONWH,
|
((BUTTONWH - 1) >> 1), BUTTONWH, BUTTONWH,
|
||||||
1, CWEventMask|CWOverrideRedirect|CWBackPixmap,
|
1, CWEventMask|CWOverrideRedirect|CWBackPixmap,
|
||||||
c->colors.frame, &at);
|
c->colors.frame, &at);
|
||||||
|
|
||||||
@@ -158,7 +158,7 @@ frame_delete(Client *c)
|
|||||||
* \param geo Coordinate info for move the frame
|
* \param geo Coordinate info for move the frame
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
frame_moveresize(Client *c, XRectangle geo)
|
frame_moveresize(Client *c, Geo geo)
|
||||||
{
|
{
|
||||||
CHECK(c);
|
CHECK(c);
|
||||||
|
|
||||||
@@ -198,7 +198,7 @@ frame_moveresize(Client *c, XRectangle geo)
|
|||||||
*\param c Client pointer
|
*\param c Client pointer
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
frame_update_color(Client *c, Bool focused)
|
frame_update_color(Client *c, bool focused)
|
||||||
{
|
{
|
||||||
CHECK(c);
|
CHECK(c);
|
||||||
|
|
||||||
@@ -209,7 +209,7 @@ frame_update_color(Client *c, Bool focused)
|
|||||||
c->colors.fg = conf.titlebar.fg_normal;
|
c->colors.fg = conf.titlebar.fg_normal;
|
||||||
c->colors.resizecorner = conf.client.resizecorner_normal;
|
c->colors.resizecorner = conf.client.resizecorner_normal;
|
||||||
|
|
||||||
if(TBARH - BORDH && c->titlebar->stipple)
|
if(TBARH - BORDH)
|
||||||
c->titlebar->stipple_color = conf.titlebar.stipple.colors.normal;
|
c->titlebar->stipple_color = conf.titlebar.stipple.colors.normal;
|
||||||
}
|
}
|
||||||
/* Focused */
|
/* Focused */
|
||||||
@@ -219,7 +219,7 @@ frame_update_color(Client *c, Bool focused)
|
|||||||
c->colors.fg = conf.titlebar.fg_focus;
|
c->colors.fg = conf.titlebar.fg_focus;
|
||||||
c->colors.resizecorner = conf.client.resizecorner_focus;
|
c->colors.resizecorner = conf.client.resizecorner_focus;
|
||||||
|
|
||||||
if(TBARH - BORDH && c->titlebar->stipple)
|
if(TBARH - BORDH)
|
||||||
c->titlebar->stipple_color = conf.titlebar.stipple.colors.focus;
|
c->titlebar->stipple_color = conf.titlebar.stipple.colors.focus;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -254,8 +254,8 @@ frame_update(Client *c)
|
|||||||
if(conf.titlebar.nbutton && BUTTONWH >= 1)
|
if(conf.titlebar.nbutton && BUTTONWH >= 1)
|
||||||
{
|
{
|
||||||
if(conf.titlebar.stipple.active)
|
if(conf.titlebar.stipple.active)
|
||||||
draw_rectangle(c->titlebar->dr, 0, 0, c->button_last_x + TBARH - (TBARH / 4),
|
draw_rectangle(c->titlebar->dr, 0, 0, c->button_last_x + TBARH - (TBARH >> 2),
|
||||||
TBARH + BORDH * 2, c->colors.frame);
|
TBARH + (BORDH << 2), c->colors.frame);
|
||||||
|
|
||||||
for(i = 0; i < conf.titlebar.nbutton; ++i)
|
for(i = 0; i < conf.titlebar.nbutton; ++i)
|
||||||
{
|
{
|
||||||
@@ -265,8 +265,8 @@ frame_update(Client *c)
|
|||||||
if((!conf.titlebar.button[i].flags)
|
if((!conf.titlebar.button[i].flags)
|
||||||
|| ((conf.titlebar.button[i].flags & FreeFlag)
|
|| ((conf.titlebar.button[i].flags & FreeFlag)
|
||||||
&& ((c->flags & FreeFlag) || !(c->flags & (TileFlag | LMaxFlag))))
|
&& ((c->flags & FreeFlag) || !(c->flags & (TileFlag | LMaxFlag))))
|
||||||
|| ((conf.titlebar.button[i].flags & MaxFlag)
|
|| ((conf.titlebar.button[i].flags & MaxFlag)
|
||||||
&& ((c->flags & MaxFlag) || (c->flags & LMaxFlag)))
|
&& ((c->flags & MaxFlag) || (c->flags & LMaxFlag)))
|
||||||
|| ((conf.titlebar.button[i].flags & TileFlag) && (c->flags & TileFlag)))
|
|| ((conf.titlebar.button[i].flags & TileFlag) && (c->flags & TileFlag)))
|
||||||
{
|
{
|
||||||
|
|
||||||
@@ -285,8 +285,6 @@ frame_update(Client *c)
|
|||||||
XSetWindowBorder(dpy, c->button[i], c->colors.frame);
|
XSetWindowBorder(dpy, c->button[i], c->colors.frame);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
barwin_refresh(c->titlebar);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
XSetWindowBackground(dpy, c->frame, c->colors.frame);
|
XSetWindowBackground(dpy, c->frame, c->colors.frame);
|
||||||
@@ -312,9 +310,9 @@ frame_update(Client *c)
|
|||||||
|
|
||||||
if(TBARH - BORDH)
|
if(TBARH - BORDH)
|
||||||
barwin_draw_text(c->titlebar,
|
barwin_draw_text(c->titlebar,
|
||||||
(c->frame_geo.width / 2) - (textw(c->title) / 2),
|
(c->frame_geo.width >> 1) - (textw(c->title) >> 1),
|
||||||
((font->height - font->descent) + (TBARH - font->height) / 2),
|
((font.height - font.de) + ((TBARH - font.height) >> 1)),
|
||||||
c->title);
|
c->title);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
203
src/getinfo.c
203
src/getinfo.c
@@ -1,203 +0,0 @@
|
|||||||
/*
|
|
||||||
* getinfo.c
|
|
||||||
* Copyright © 2008, 2009 Martin Duquesnoy <xorg62@gmail.com>
|
|
||||||
* All rights reserved.
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without
|
|
||||||
* modification, are permitted provided that the following conditions are
|
|
||||||
* met:
|
|
||||||
*
|
|
||||||
* * Redistributions of source code must retain the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer.
|
|
||||||
* * Redistributions in binary form must reproduce the above
|
|
||||||
* copyright notice, this list of conditions and the following disclaimer
|
|
||||||
* in the documentation and/or other materials provided with the
|
|
||||||
* distribution.
|
|
||||||
* * Neither the name of the nor the names of its
|
|
||||||
* contributors may be used to endorse or promote products derived from
|
|
||||||
* this software without specific prior written permission.
|
|
||||||
*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "wmfs.h"
|
|
||||||
|
|
||||||
/* Global variables for each XGetWindowProperty
|
|
||||||
* of each getinfo functions.
|
|
||||||
*/
|
|
||||||
Atom rt;
|
|
||||||
int rf;
|
|
||||||
ulong ir, il;
|
|
||||||
uchar *ret;
|
|
||||||
|
|
||||||
/** Get information about tag (current, list, names)
|
|
||||||
*/
|
|
||||||
static void
|
|
||||||
getinfo_tag(void)
|
|
||||||
{
|
|
||||||
int tag = 0;
|
|
||||||
char *tag_name = NULL;
|
|
||||||
char *tag_list = NULL;
|
|
||||||
|
|
||||||
|
|
||||||
if(XGetWindowProperty(dpy, ROOT, ATOM("_NET_CURRENT_DESKTOP"), 0L, 4096,
|
|
||||||
False, XA_CARDINAL, &rt, &rf, &ir, &il, &ret) == Success && ret)
|
|
||||||
{
|
|
||||||
tag = (int)*ret + 1;
|
|
||||||
XFree(ret);
|
|
||||||
}
|
|
||||||
|
|
||||||
if(XGetWindowProperty(dpy, ROOT, ATOM("_WMFS_CURRENT_TAG"), 0L, 4096,
|
|
||||||
False, ATOM("UTF8_STRING"), &rt, &rf, &ir, &il, &ret) == Success && ret)
|
|
||||||
{
|
|
||||||
tag_name = xstrdup((char*)ret);
|
|
||||||
XFree(ret);
|
|
||||||
}
|
|
||||||
|
|
||||||
if(XGetWindowProperty(dpy, ROOT, ATOM("_WMFS_TAG_LIST"), 0L, 4096,
|
|
||||||
False, ATOM("UTF8_STRING"), &rt, &rf, &ir, &il, &ret) == Success && ret)
|
|
||||||
{
|
|
||||||
tag_list = xstrdup((char*)ret);
|
|
||||||
XFree(ret);
|
|
||||||
}
|
|
||||||
|
|
||||||
printf("Current tag: %d - %s\n", tag, tag_name);
|
|
||||||
printf("Tag list: %s\n", tag_list);
|
|
||||||
|
|
||||||
free(tag_name);
|
|
||||||
free(tag_list);
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Get information about screens
|
|
||||||
*/
|
|
||||||
static void
|
|
||||||
getinfo_screen(void)
|
|
||||||
{
|
|
||||||
int screen = 1;
|
|
||||||
int screen_num = 1;
|
|
||||||
|
|
||||||
if(XGetWindowProperty(dpy, ROOT, ATOM("_WMFS_CURRENT_SCREEN"), 0L, 4096,
|
|
||||||
False, XA_CARDINAL, &rt, &rf, &ir, &il, &ret) == Success && ret)
|
|
||||||
{
|
|
||||||
screen = (int)*ret + 1;
|
|
||||||
XFree(ret);
|
|
||||||
}
|
|
||||||
if(XGetWindowProperty(dpy, ROOT, ATOM("_WMFS_SCREEN_COUNT"), 0L, 4096,
|
|
||||||
False, XA_CARDINAL, &rt, &rf, &ir, &il, &ret) == Success && ret)
|
|
||||||
{
|
|
||||||
screen_num = (int)*ret;
|
|
||||||
XFree(ret);
|
|
||||||
}
|
|
||||||
|
|
||||||
printf("Current screen: %d\nScreen number: %d\n", screen, screen_num);
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Get current layout name
|
|
||||||
*/
|
|
||||||
static void
|
|
||||||
getinfo_layout(void)
|
|
||||||
{
|
|
||||||
char *layout = NULL;
|
|
||||||
|
|
||||||
if(XGetWindowProperty(dpy, ROOT, ATOM("_WMFS_CURRENT_LAYOUT"), 0L, 4096,
|
|
||||||
False, ATOM("UTF8_STRING"), &rt, &rf, &ir, &il, &ret) == Success && ret)
|
|
||||||
{
|
|
||||||
layout = xstrdup((char*)ret);
|
|
||||||
XFree(ret);
|
|
||||||
}
|
|
||||||
|
|
||||||
printf("Current layout: %s\n", layout);
|
|
||||||
|
|
||||||
free(layout);
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Get information about current mwfact
|
|
||||||
*/
|
|
||||||
static void
|
|
||||||
getinfo_mwfact(void)
|
|
||||||
{
|
|
||||||
char *mwfact = NULL;
|
|
||||||
|
|
||||||
if(XGetWindowProperty(dpy, ROOT, ATOM("_WMFS_MWFACT"), 0L, 4096,
|
|
||||||
False, XA_STRING, &rt, &rf, &ir, &il, &ret) == Success && ret)
|
|
||||||
{
|
|
||||||
mwfact = xstrdup((char*)ret);
|
|
||||||
XFree(ret);
|
|
||||||
}
|
|
||||||
|
|
||||||
printf("Current mwfact: %s\n", mwfact);
|
|
||||||
|
|
||||||
free(mwfact);
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Get information about current nmaster
|
|
||||||
*/
|
|
||||||
static void
|
|
||||||
getinfo_nmaster(void)
|
|
||||||
{
|
|
||||||
int nmaster = 1;
|
|
||||||
|
|
||||||
if(XGetWindowProperty(dpy, ROOT, ATOM("_WMFS_NMASTER"), 0L, 4096,
|
|
||||||
False, XA_CARDINAL, &rt, &rf, &ir, &il, &ret) == Success && ret)
|
|
||||||
{
|
|
||||||
nmaster = (int)*ret;
|
|
||||||
XFree(ret);
|
|
||||||
}
|
|
||||||
|
|
||||||
printf("Current nmaster: %d\n", nmaster);
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Get information about wmfs
|
|
||||||
*\param info Type of information in a string
|
|
||||||
*/
|
|
||||||
void
|
|
||||||
getinfo(char *info)
|
|
||||||
{
|
|
||||||
if(!check_wmfs_running())
|
|
||||||
return;
|
|
||||||
|
|
||||||
ewmh_send_message(ROOT, ROOT, "_WMFS_UPDATE_HINTS", 0, 0, 0, 0, True);
|
|
||||||
|
|
||||||
if(!strcmp(info, "tag"))
|
|
||||||
getinfo_tag();
|
|
||||||
else if(!strcmp(info, "screen"))
|
|
||||||
getinfo_screen();
|
|
||||||
else if(!strcmp(info, "layout"))
|
|
||||||
getinfo_layout();
|
|
||||||
else if(!strcmp(info, "mwfact"))
|
|
||||||
getinfo_mwfact();
|
|
||||||
else if(!strcmp(info, "nmaster"))
|
|
||||||
getinfo_nmaster();
|
|
||||||
else if(!strcmp(info, "help"))
|
|
||||||
printf("Argument list for wmfs -g options:\n"
|
|
||||||
" tag Show current tag number and name, and tag list.\n"
|
|
||||||
" screen Show current screen and screens number.\n"
|
|
||||||
" layout Show current layout name.\n"
|
|
||||||
" mwfact Show mwfact of current tag.\n"
|
|
||||||
" nmaster Show nmaster of current tag.\n");
|
|
||||||
else
|
|
||||||
warnx("Unknow info argument '%s'\nTry 'wmfs -g help'", info);
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
216
src/infobar.c
216
src/infobar.c
@@ -32,7 +32,9 @@
|
|||||||
|
|
||||||
#include "wmfs.h"
|
#include "wmfs.h"
|
||||||
|
|
||||||
/** Init the Infobar
|
#define SPLIT_IND_S (3 + conf.border.layout)
|
||||||
|
|
||||||
|
/** Init the InfoBar
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
infobar_init(void)
|
infobar_init(void)
|
||||||
@@ -48,13 +50,14 @@ infobar_init(void)
|
|||||||
{
|
{
|
||||||
j = 0;
|
j = 0;
|
||||||
infobar[sc].geo.height = INFOBARH;
|
infobar[sc].geo.height = INFOBARH;
|
||||||
|
infobar[sc].screen = sc;
|
||||||
|
|
||||||
switch(tags[sc][seltag[sc]].barpos)
|
switch(tags[sc][seltag[sc]].barpos)
|
||||||
{
|
{
|
||||||
case IB_Hide:
|
case IB_Hide:
|
||||||
sgeo[sc].y = spgeo[sc].y + TBARH;
|
sgeo[sc].y = spgeo[sc].y + TBARH;
|
||||||
sgeo[sc].height += INFOBARH;
|
sgeo[sc].height += INFOBARH;
|
||||||
infobar[sc].geo.y = -(infobar[sc].geo.height) * 2;
|
infobar[sc].geo.y = (-(infobar[sc].geo.height) << 2);
|
||||||
break;
|
break;
|
||||||
case IB_Bottom:
|
case IB_Bottom:
|
||||||
sgeo[sc].y = TBARH;
|
sgeo[sc].y = TBARH;
|
||||||
@@ -94,7 +97,7 @@ infobar_init(void)
|
|||||||
|
|
||||||
/* Create layout switch barwindow */
|
/* Create layout switch barwindow */
|
||||||
infobar[sc].layout_button = barwin_create(infobar[sc].bar->win,
|
infobar[sc].layout_button = barwin_create(infobar[sc].bar->win,
|
||||||
((conf.layout_placement) ? 0 : (j + PAD / 2)), 0,
|
((conf.layout_placement) ? 0 : (j + (PAD >> 1))), 0,
|
||||||
((conf.layout_button_width > 0) ? (uint)conf.layout_button_width : (textw(tags[sc][seltag[sc]].layout.symbol) + PAD)),
|
((conf.layout_button_width > 0) ? (uint)conf.layout_button_width : (textw(tags[sc][seltag[sc]].layout.symbol) + PAD)),
|
||||||
infobar[sc].geo.height,
|
infobar[sc].geo.height,
|
||||||
conf.colors.layout_bg, conf.colors.layout_fg,
|
conf.colors.layout_bg, conf.colors.layout_fg,
|
||||||
@@ -104,8 +107,8 @@ infobar_init(void)
|
|||||||
if(conf.bars.selbar)
|
if(conf.bars.selbar)
|
||||||
infobar[sc].selbar = barwin_create(infobar[sc].bar->win,
|
infobar[sc].selbar = barwin_create(infobar[sc].bar->win,
|
||||||
((conf.layout_placement)
|
((conf.layout_placement)
|
||||||
? (j + PAD / 2)
|
? (j + (PAD >> 1))
|
||||||
: infobar[sc].layout_button->geo.x + infobar[sc].layout_button->geo.width + PAD / 2), 1,
|
: infobar[sc].layout_button->geo.x + infobar[sc].layout_button->geo.width + (PAD >> 1)), 1,
|
||||||
(sel) ? textw(sel->title) + PAD : 1,
|
(sel) ? textw(sel->title) + PAD : 1,
|
||||||
infobar[sc].geo.height - 2,
|
infobar[sc].geo.height - 2,
|
||||||
conf.selbar.bg, conf.selbar.fg, False, False, False);
|
conf.selbar.bg, conf.selbar.fg, False, False, False);
|
||||||
@@ -127,43 +130,57 @@ infobar_init(void)
|
|||||||
barwin_refresh(infobar[sc].bar);
|
barwin_refresh(infobar[sc].bar);
|
||||||
|
|
||||||
/* Default statustext is set here */
|
/* Default statustext is set here */
|
||||||
infobar[sc].statustext = xstrdup(WMFS_VERSION);
|
infobar[sc].statustext = xstrdup("wmfs"WMFS_VERSION);
|
||||||
|
|
||||||
infobar_draw(sc);
|
infobar_draw(&infobar[sc]);
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Draw the layout button in the InfoBar
|
/** Draw the layout button in the InfoBar
|
||||||
*\param sc Screen number
|
*\param i InfoBar pointer
|
||||||
*/
|
*/
|
||||||
static void
|
void
|
||||||
infobar_draw_layout(int sc)
|
infobar_draw_layout(InfoBar *i)
|
||||||
{
|
{
|
||||||
if(!conf.layout_placement)
|
int w, sc = i->screen;
|
||||||
barwin_move(infobar[sc].layout_button, infobar[sc].tags_board->geo.width + PAD / 2, 0);
|
|
||||||
|
|
||||||
barwin_resize(infobar[sc].layout_button, ((conf.layout_button_width > 0) ? (uint)conf.layout_button_width : (textw(tags[sc][seltag[sc]].layout.symbol) + PAD)), infobar[sc].geo.height);
|
if(!conf.layout_placement)
|
||||||
barwin_refresh_color(infobar[sc].layout_button);
|
barwin_move(i->layout_button, i->tags_board->geo.width + (PAD >> 1), 0);
|
||||||
|
|
||||||
|
w = (conf.layout_button_width > 0)
|
||||||
|
? conf.layout_button_width
|
||||||
|
: textw(tags[sc][seltag[sc]].layout.symbol) + PAD;
|
||||||
|
|
||||||
|
barwin_resize(i->layout_button, w, i->geo.height);
|
||||||
|
barwin_refresh_color(i->layout_button);
|
||||||
|
|
||||||
|
/* Split mode indicator; little rectangle at bottom-right */
|
||||||
|
if(tags[sc][seltag[sc]].flags & SplitFlag)
|
||||||
|
draw_rectangle(i->layout_button->dr,
|
||||||
|
w - SPLIT_IND_S,
|
||||||
|
i->geo.height - SPLIT_IND_S,
|
||||||
|
SPLIT_IND_S, SPLIT_IND_S,
|
||||||
|
getcolor(i->layout_button->fg));
|
||||||
|
|
||||||
if(tags[sc][seltag[sc]].layout.symbol)
|
if(tags[sc][seltag[sc]].layout.symbol)
|
||||||
barwin_draw_text(infobar[sc].layout_button, PAD / 2, FHINFOBAR, tags[sc][seltag[sc]].layout.symbol);
|
barwin_draw_text(i->layout_button, (PAD >> 1), FHINFOBAR, tags[sc][seltag[sc]].layout.symbol);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Draw the Infobar
|
/** Draw the InfoBar
|
||||||
*\param sc Screen number
|
*\param i InfoBar pointer
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
infobar_draw(int sc)
|
infobar_draw(InfoBar *i)
|
||||||
{
|
{
|
||||||
infobar_draw_taglist(sc);
|
infobar_draw_taglist(i);
|
||||||
infobar_draw_layout(sc);
|
infobar_draw_layout(i);
|
||||||
infobar_draw_selbar(sc);
|
infobar_draw_selbar(i);
|
||||||
barwin_refresh_color(infobar[sc].bar);
|
barwin_refresh_color(i->bar);
|
||||||
statustext_handle(sc, infobar[sc].statustext);
|
statustext_handle(i->screen, i->statustext);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -172,23 +189,24 @@ infobar_draw(int sc)
|
|||||||
*\param sc Screen Number
|
*\param sc Screen Number
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
infobar_draw_selbar(int sc)
|
infobar_draw_selbar(InfoBar *i)
|
||||||
{
|
{
|
||||||
char *str = NULL;
|
char *str = NULL;
|
||||||
|
int s, sc = i->screen;
|
||||||
|
|
||||||
if(!conf.bars.selbar)
|
if(!conf.bars.selbar)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if(!sel || (sel && sel->screen != sc))
|
if(!sel || (sel && sel->screen != sc))
|
||||||
{
|
{
|
||||||
barwin_unmap(infobar[sc].selbar);
|
barwin_unmap(i->selbar);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else if(sel && !infobar[sc].selbar->mapped)
|
else if(sel)
|
||||||
barwin_map(infobar[sc].selbar);
|
barwin_map(i->selbar);
|
||||||
|
|
||||||
if(conf.selbar.maxlength >= 0 && sel)
|
/* Truncate string if too long */
|
||||||
|
if(conf.selbar.maxlength >= 0 && sel && sel->title)
|
||||||
{
|
{
|
||||||
str = xcalloc(conf.selbar.maxlength + 4, sizeof(char));
|
str = xcalloc(conf.selbar.maxlength + 4, sizeof(char));
|
||||||
strncpy(str, sel->title, conf.selbar.maxlength);
|
strncpy(str, sel->title, conf.selbar.maxlength);
|
||||||
@@ -197,17 +215,18 @@ infobar_draw_selbar(int sc)
|
|||||||
strcat(str, "...");
|
strcat(str, "...");
|
||||||
}
|
}
|
||||||
|
|
||||||
barwin_resize(infobar[sc].selbar, textw(str ? str : sel->title) + PAD, infobar[sc].geo.height - 2);
|
if((s = (textw(str ? str : sel->title) + PAD)) > i->selbar->geo.width)
|
||||||
|
barwin_resize(i->selbar, s, i->geo.height - 2);
|
||||||
|
|
||||||
barwin_move(infobar[sc].selbar,
|
barwin_move(i->selbar,
|
||||||
((conf.layout_placement)
|
((conf.layout_placement)
|
||||||
? (infobar[sc].tags_board->geo.x + infobar[sc].tags_board->geo.width + PAD / 2)
|
? (i->tags_board->geo.x + i->tags_board->geo.width + (PAD >> 1))
|
||||||
: (infobar[sc].layout_button->geo.x + infobar[sc].layout_button->geo.width + PAD / 2)), 1);
|
: (i->layout_button->geo.x + i->layout_button->geo.width + (PAD >> 1))), 1);
|
||||||
|
|
||||||
barwin_refresh_color(infobar[sc].selbar);
|
barwin_refresh_color(i->selbar);
|
||||||
barwin_draw_text(infobar[sc].selbar, PAD / 2, FHINFOBAR - 1, ((str) ? str : sel->title));
|
barwin_draw_text(i->selbar, (PAD >> 1), FHINFOBAR - 1, ((str) ? str : sel->title));
|
||||||
|
|
||||||
barwin_refresh(infobar[sc].selbar);
|
barwin_refresh(i->selbar);
|
||||||
|
|
||||||
free(str);
|
free(str);
|
||||||
|
|
||||||
@@ -215,108 +234,98 @@ infobar_draw_selbar(int sc)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Draw the taglist in the InfoBar
|
/** Draw the taglist in the InfoBar
|
||||||
*\param sc Screen number
|
*\param i InfoBar pointer
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
infobar_draw_taglist(int sc)
|
infobar_draw_taglist(InfoBar *i)
|
||||||
{
|
{
|
||||||
int i, x;
|
int j, x, sc = i->screen;
|
||||||
Client *c = NULL;
|
Client *c = NULL;
|
||||||
Bool is_occupied[MAXTAG + 1];
|
uint occupied = 0;
|
||||||
|
|
||||||
if(conf.layout_placement)
|
if(conf.layout_placement)
|
||||||
barwin_move(infobar[sc].tags_board, ((conf.layout_button_width > 0) ? (uint)conf.layout_button_width : (textw(tags[sc][seltag[sc]].layout.symbol) + PAD)) + PAD / 2, 0);
|
barwin_move(i->tags_board,
|
||||||
|
((conf.layout_button_width > 0)
|
||||||
for(i = 0; i < MAXTAG; i++)
|
? (uint)conf.layout_button_width
|
||||||
is_occupied[i] = False;
|
: (textw(tags[sc][seltag[sc]].layout.symbol) + PAD)) + (PAD >> 1), 0);
|
||||||
|
|
||||||
for(c = clients; c; c = c->next)
|
for(c = clients; c; c = c->next)
|
||||||
if(c->screen == sc && c->tag != MAXTAG + 1)
|
if(c->screen == sc)
|
||||||
is_occupied[c->tag] = True;
|
occupied |= TagFlag(c->tag);
|
||||||
|
|
||||||
for(i = 1, x = 0; i < conf.ntag[sc] + 1; ++i)
|
for(j = 1, x = 0; j < conf.ntag[sc] + 1; ++j)
|
||||||
{
|
{
|
||||||
/* Autohide tag feature */
|
/* Autohide tag feature */
|
||||||
if(conf.tagautohide)
|
if(conf.tagautohide)
|
||||||
{
|
{
|
||||||
if(!is_occupied[i] && i != seltag[sc])
|
if(!(occupied & TagFlag(j)) && j != seltag[sc])
|
||||||
{
|
{
|
||||||
barwin_unmap(infobar[sc].tags[i]);
|
barwin_unmap(i->tags[j]);
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!infobar[sc].tags[i]->mapped)
|
barwin_map(i->tags[j]);
|
||||||
barwin_map(infobar[sc].tags[i]);
|
barwin_move(i->tags[j], x, 0);
|
||||||
|
barwin_resize(i->tags_board, (x += i->tags[j]->geo.width), i->geo.height);
|
||||||
barwin_move(infobar[sc].tags[i], x, 0);
|
|
||||||
|
|
||||||
x += infobar[sc].tags[i]->geo.width;
|
|
||||||
|
|
||||||
barwin_resize(infobar[sc].tags_board, x, infobar[sc].geo.height);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
infobar[sc].tags[i]->bg = tags[sc][i].urgent
|
if(tags[sc][j].flags & TagUrgentFlag)
|
||||||
? conf.colors.tagurbg
|
{
|
||||||
: ((i == seltag[sc] || tags[sc][seltag[sc]].tagad & TagFlag(i))
|
i->tags[j]->bg = conf.colors.tagurbg;
|
||||||
? conf.colors.tagselbg
|
i->tags[j]->fg = conf.colors.tagurfg;
|
||||||
: (is_occupied[i]
|
}
|
||||||
? conf.colors.tag_occupied_bg
|
else if(j == seltag[sc] || tags[sc][seltag[sc]].tagad & TagFlag(j))
|
||||||
: conf.colors.bar));
|
{
|
||||||
|
i->tags[j]->bg = conf.colors.tagselbg;
|
||||||
|
i->tags[j]->fg = conf.colors.tagselfg;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
i->tags[j]->bg = ((occupied & TagFlag(j)) ? conf.colors.tag_occupied_bg : conf.colors.bar);
|
||||||
|
i->tags[j]->fg = ((occupied & TagFlag(j)) ? conf.colors.tag_occupied_fg : conf.colors.text);
|
||||||
|
}
|
||||||
|
|
||||||
infobar[sc].tags[i]->fg = tags[sc][i].urgent
|
barwin_color_set(i->tags[j], i->tags[j]->bg, i->tags[j]->fg);
|
||||||
? conf.colors.tagurfg
|
barwin_refresh_color(i->tags[j]);
|
||||||
: ((i == seltag[sc] || tags[sc][seltag[sc]].tagad & TagFlag(i))
|
|
||||||
? conf.colors.tagselfg
|
|
||||||
: (is_occupied[i]
|
|
||||||
? conf.colors.tag_occupied_fg
|
|
||||||
: conf.colors.text));
|
|
||||||
|
|
||||||
barwin_color_set(infobar[sc].tags[i], infobar[sc].tags[i]->bg, infobar[sc].tags[i]->fg);
|
if(tags[sc][j].name)
|
||||||
barwin_refresh_color(infobar[sc].tags[i]);
|
barwin_draw_text(i->tags[j], (PAD >> 1), FHINFOBAR, tags[sc][j].name);
|
||||||
|
|
||||||
if(tags[sc][i].name)
|
|
||||||
barwin_draw_text(infobar[sc].tags[i], PAD / 2, FHINFOBAR, tags[sc][i].name);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Update taglist geo
|
/** Update taglist geo
|
||||||
*\param sc Screen number
|
*\param i InfoBar pointer
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
infobar_update_taglist(int sc)
|
infobar_update_taglist(InfoBar *i)
|
||||||
{
|
{
|
||||||
int i, j;
|
int t, j, sc = i->screen;
|
||||||
|
|
||||||
for(i = 1, j = 0; i < conf.ntag[sc] + 1; ++i)
|
for(t = 1, j = 0; t < conf.ntag[sc] + 1; ++t)
|
||||||
{
|
{
|
||||||
/* If the tag i does not exist yet (graphically) or need full update */
|
/* If the tag t does not exist yet (graphically) or need full update */
|
||||||
if(!infobar[sc].tags[i] || infobar[sc].need_update)
|
if(!i->tags[t] || i->need_update)
|
||||||
{
|
{
|
||||||
infobar[sc].tags[i] = barwin_create(infobar[sc].tags_board->win, j, 0,
|
i->tags[t] = barwin_create(i->tags_board->win, j, 0,
|
||||||
textw(tags[sc][i].name) + PAD,
|
textw(tags[sc][t].name) + PAD,
|
||||||
infobar[sc].geo.height,
|
i->geo.height,
|
||||||
conf.colors.bar, conf.colors.text, False, False, conf.border.tag);
|
conf.colors.bar, conf.colors.text, False, False, conf.border.tag);
|
||||||
|
|
||||||
barwin_map(infobar[sc].tags[i]);
|
barwin_map(i->tags[t]);
|
||||||
barwin_map_subwin(infobar[sc].tags[i]);
|
barwin_map_subwin(i->tags[t]);
|
||||||
|
barwin_resize(i->tags_board, (j += textw(tags[sc][t].name) + PAD), i->geo.height);
|
||||||
j += textw(tags[sc][i].name) + PAD;
|
|
||||||
|
|
||||||
barwin_resize(infobar[sc].tags_board, j, infobar[sc].geo.height);
|
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
barwin_move(infobar[sc].tags[i], j, 0);
|
barwin_move(i->tags[t], j, 0);
|
||||||
j += textw(tags[sc][i].name) + PAD;
|
barwin_resize(i->tags[t], textw(tags[sc][t].name) + PAD, i->geo.height);
|
||||||
barwin_resize(infobar[sc].tags[i], textw(tags[sc][i].name) + PAD, infobar[sc].geo.height);
|
barwin_resize(i->tags_board, (j += textw(tags[sc][t].name) + PAD), i->geo.height);
|
||||||
barwin_resize(infobar[sc].tags_board, j, infobar[sc].geo.height);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
infobar[sc].need_update = False;
|
i->need_update = False;
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -362,7 +371,7 @@ infobar_set_position(int pos)
|
|||||||
case IB_Hide:
|
case IB_Hide:
|
||||||
sgeo[selscreen].y = spgeo[selscreen].y + TBARH;
|
sgeo[selscreen].y = spgeo[selscreen].y + TBARH;
|
||||||
sgeo[selscreen].height = spgeo[selscreen].height - TBARH;
|
sgeo[selscreen].height = spgeo[selscreen].height - TBARH;
|
||||||
infobar[selscreen].geo.y = -(infobar[selscreen].geo.height) * 2;
|
infobar[selscreen].geo.y = (-(infobar[selscreen].geo.height) << 1);
|
||||||
break;
|
break;
|
||||||
case IB_Bottom:
|
case IB_Bottom:
|
||||||
sgeo[selscreen].y = spgeo[selscreen].y + TBARH;
|
sgeo[selscreen].y = spgeo[selscreen].y + TBARH;
|
||||||
@@ -380,7 +389,7 @@ infobar_set_position(int pos)
|
|||||||
tags[selscreen][seltag[selscreen]].barpos = pos;
|
tags[selscreen][seltag[selscreen]].barpos = pos;
|
||||||
|
|
||||||
barwin_move(infobar[selscreen].bar, sgeo[selscreen].x - BORDH, infobar[selscreen].geo.y);
|
barwin_move(infobar[selscreen].bar, sgeo[selscreen].x - BORDH, infobar[selscreen].geo.y);
|
||||||
infobar_draw(selscreen);
|
infobar_draw(&infobar[selscreen]);
|
||||||
arrange(selscreen, True);
|
arrange(selscreen, True);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
@@ -415,8 +424,7 @@ uicb_infobar_toggledisplay(uicb_t cmd)
|
|||||||
|
|
||||||
new_pos = (tags[selscreen][seltag[selscreen]].barpos
|
new_pos = (tags[selscreen][seltag[selscreen]].barpos
|
||||||
? 0 : (tags[selscreen][seltag[selscreen]].prev_barpos
|
? 0 : (tags[selscreen][seltag[selscreen]].prev_barpos
|
||||||
? tags[selscreen][seltag[selscreen]].prev_barpos : 2
|
? tags[selscreen][seltag[selscreen]].prev_barpos : 2));
|
||||||
));
|
|
||||||
|
|
||||||
tags[selscreen][seltag[selscreen]].prev_barpos = tags[selscreen][seltag[selscreen]].barpos;
|
tags[selscreen][seltag[selscreen]].prev_barpos = tags[selscreen][seltag[selscreen]].barpos;
|
||||||
tags[selscreen][seltag[selscreen]].barpos = new_pos;
|
tags[selscreen][seltag[selscreen]].barpos = new_pos;
|
||||||
@@ -442,9 +450,7 @@ uicb_toggle_tagautohide(uicb_t cmd)
|
|||||||
{
|
{
|
||||||
for(i = 1, x = 0; i < conf.ntag[selscreen] + 1; ++i)
|
for(i = 1, x = 0; i < conf.ntag[selscreen] + 1; ++i)
|
||||||
{
|
{
|
||||||
if(!infobar[selscreen].tags[i]->mapped)
|
barwin_map(infobar[selscreen].tags[i]);
|
||||||
barwin_map(infobar[selscreen].tags[i]);
|
|
||||||
|
|
||||||
barwin_move(infobar[selscreen].tags[i], x, 0);
|
barwin_move(infobar[selscreen].tags[i], x, 0);
|
||||||
x += infobar[selscreen].tags[i]->geo.width;
|
x += infobar[selscreen].tags[i]->geo.width;
|
||||||
}
|
}
|
||||||
@@ -452,7 +458,7 @@ uicb_toggle_tagautohide(uicb_t cmd)
|
|||||||
barwin_resize(infobar[selscreen].tags_board, x, infobar[selscreen].geo.height);
|
barwin_resize(infobar[selscreen].tags_board, x, infobar[selscreen].geo.height);
|
||||||
}
|
}
|
||||||
|
|
||||||
infobar_draw(selscreen);
|
infobar_draw(&infobar[selscreen]);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
49
src/init.c
49
src/init.c
@@ -60,12 +60,50 @@ const func_name_list_t layout_list[] =
|
|||||||
static void
|
static void
|
||||||
init_font(void)
|
init_font(void)
|
||||||
{
|
{
|
||||||
font = XftFontOpenName(dpy, SCREEN, conf.font);
|
#ifdef HAVE_XFT
|
||||||
|
if(conf.use_xft)
|
||||||
if(!font)
|
|
||||||
{
|
{
|
||||||
warnx("WMFS Error: Cannot initialize font");
|
if(!(font.font = XftFontOpenName(dpy, SCREEN, conf.font)))
|
||||||
font = XftFontOpenName(dpy, SCREEN, "sans-10");
|
{
|
||||||
|
warnx("WMFS Error: Cannot initialize Xft font");
|
||||||
|
font.font = XftFontOpenName(dpy, SCREEN, "sans-10");
|
||||||
|
}
|
||||||
|
|
||||||
|
font.de = font.font->descent;
|
||||||
|
font.as = font.font->ascent;
|
||||||
|
font.height = font.font->height;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
#endif /* HAVE_XFT */
|
||||||
|
{
|
||||||
|
char **misschar, **names, *defstring;
|
||||||
|
int d;
|
||||||
|
XFontStruct **xfs = NULL;
|
||||||
|
|
||||||
|
/* locale support */
|
||||||
|
setlocale(LC_CTYPE, "");
|
||||||
|
|
||||||
|
if(!conf.font)
|
||||||
|
conf.font = xstrdup("fixed");
|
||||||
|
|
||||||
|
/* Using Font Set */
|
||||||
|
if(!(font.fontset = XCreateFontSet(dpy, conf.font, &misschar, &d, &defstring)))
|
||||||
|
{
|
||||||
|
warnx("Can't load font '%s'", conf.font);
|
||||||
|
font.fontset = XCreateFontSet(dpy, "fixed", &misschar, &d, &defstring);
|
||||||
|
}
|
||||||
|
|
||||||
|
XExtentsOfFontSet(font.fontset);
|
||||||
|
XFontsOfFontSet(font.fontset, &xfs, &names);
|
||||||
|
|
||||||
|
font.as = xfs[0]->max_bounds.ascent;
|
||||||
|
font.de = xfs[0]->max_bounds.descent;
|
||||||
|
font.width = xfs[0]->max_bounds.width;
|
||||||
|
|
||||||
|
font.height = font.as + font.de;
|
||||||
|
|
||||||
|
if(misschar)
|
||||||
|
XFreeStringList(misschar);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Set font in _WMFS_FONT for eventual status tools */
|
/* Set font in _WMFS_FONT for eventual status tools */
|
||||||
@@ -209,6 +247,7 @@ init(void)
|
|||||||
init_key();
|
init_key();
|
||||||
init_root();
|
init_root();
|
||||||
screen_init_geo();
|
screen_init_geo();
|
||||||
|
event_make_array();
|
||||||
infobar_init();
|
infobar_init();
|
||||||
systray_acquire();
|
systray_acquire();
|
||||||
init_status();
|
init_status();
|
||||||
|
|||||||
@@ -182,9 +182,9 @@ static void
|
|||||||
launcher_execute(Launcher *launcher)
|
launcher_execute(Launcher *launcher)
|
||||||
{
|
{
|
||||||
BarWindow *bw;
|
BarWindow *bw;
|
||||||
Bool found;
|
bool found;
|
||||||
Bool lastwastab = False;
|
bool lastwastab = False;
|
||||||
Bool my_guitar_gently_wheeps = True;
|
bool my_guitar_gently_wheeps = True;
|
||||||
char tmp[32] = { 0 };
|
char tmp[32] = { 0 };
|
||||||
char buf[512] = { 0 };
|
char buf[512] = { 0 };
|
||||||
char tmpbuf[512] = { 0 };
|
char tmpbuf[512] = { 0 };
|
||||||
@@ -354,14 +354,15 @@ launcher_execute(Launcher *launcher)
|
|||||||
barwin_draw_text(bw, 1 + textw(launcher->prompt) + textw(" "), FHINFOBAR - 1, buf);
|
barwin_draw_text(bw, 1 + textw(launcher->prompt) + textw(" "), FHINFOBAR - 1, buf);
|
||||||
barwin_refresh(bw);
|
barwin_refresh(bw);
|
||||||
}
|
}
|
||||||
else
|
else if(ev.type < nevent && ev.type > 0)
|
||||||
getevent(ev);
|
HANDLE_EVENT(&ev);
|
||||||
|
|
||||||
XNextEvent(dpy, &ev);
|
XNextEvent(dpy, &ev);
|
||||||
}
|
}
|
||||||
|
|
||||||
barwin_unmap(bw);
|
barwin_unmap(bw);
|
||||||
barwin_delete(bw);
|
barwin_delete(bw);
|
||||||
infobar_draw(selscreen);
|
infobar_draw(&infobar[selscreen]);
|
||||||
|
|
||||||
XUngrabKeyboard(dpy, CurrentTime);
|
XUngrabKeyboard(dpy, CurrentTime);
|
||||||
|
|
||||||
|
|||||||
271
src/layout.c
271
src/layout.c
@@ -35,7 +35,7 @@
|
|||||||
/** Arrange All
|
/** Arrange All
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
arrange(int screen, Bool update_layout)
|
arrange(int screen, bool update_layout)
|
||||||
{
|
{
|
||||||
Client *c;
|
Client *c;
|
||||||
|
|
||||||
@@ -54,9 +54,26 @@ arrange(int screen, Bool update_layout)
|
|||||||
if(tags[screen][seltag[screen]].layout.func)
|
if(tags[screen][seltag[screen]].layout.func)
|
||||||
{
|
{
|
||||||
if(update_layout)
|
if(update_layout)
|
||||||
tags[screen][seltag[screen]].layout.func(screen);
|
layout_func(screen, seltag[screen]);
|
||||||
|
|
||||||
infobar_draw(screen);
|
infobar_draw(&infobar[screen]);
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Apply layout function
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
layout_func(int screen, int tag)
|
||||||
|
{
|
||||||
|
if((tags[screen][tag].flags & SplitFlag)
|
||||||
|
&& !(tags[screen][tag].flags & FirstArrangeFlag))
|
||||||
|
split_apply_current(screen, tag);
|
||||||
|
else
|
||||||
|
{
|
||||||
|
tags[screen][tag].layout.func(screen);
|
||||||
|
tags[screen][tag].flags &= ~FirstArrangeFlag;
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
@@ -72,8 +89,8 @@ freelayout(int screen)
|
|||||||
|
|
||||||
for(c = clients; c; c = c->next)
|
for(c = clients; c; c = c->next)
|
||||||
if(!ishide(c, selscreen)
|
if(!ishide(c, selscreen)
|
||||||
&& c->screen == screen_get_sel()
|
&& c->screen == screen
|
||||||
&& !(c->flags & MaxFlag))
|
&& !(c->flags & MaxFlag))
|
||||||
{
|
{
|
||||||
client_moveresize(c, c->free_geo, True);
|
client_moveresize(c, c->free_geo, True);
|
||||||
c->flags &= ~(TileFlag | LMaxFlag);
|
c->flags &= ~(TileFlag | LMaxFlag);
|
||||||
@@ -85,10 +102,10 @@ freelayout(int screen)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Layout switching function
|
/** Layout switching function
|
||||||
* \param b Bool True : next False : previous
|
* \param b bool True : next False : previous
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
layoutswitch(Bool b)
|
layoutswitch(bool b)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
Client *c;
|
Client *c;
|
||||||
@@ -116,8 +133,10 @@ layoutswitch(Bool b)
|
|||||||
}
|
}
|
||||||
|
|
||||||
ewmh_update_current_tag_prop();
|
ewmh_update_current_tag_prop();
|
||||||
tags[selscreen][seltag[selscreen]].layout.func(selscreen);
|
tags[selscreen][seltag[selscreen]].flags |= CleanFactFlag;
|
||||||
infobar_draw(selscreen);
|
tags[selscreen][seltag[selscreen]].flags &= ~SplitFlag;
|
||||||
|
layout_func(selscreen, seltag[selscreen]);
|
||||||
|
infobar_draw_layout(&infobar[selscreen]);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -151,15 +170,12 @@ uicb_layout_prev(uicb_t cmd)
|
|||||||
* \param c Client pointer
|
* \param c Client pointer
|
||||||
* \return a client pointer
|
* \return a client pointer
|
||||||
*/
|
*/
|
||||||
static Client*
|
Client*
|
||||||
tiled_client(int screen, Client *c)
|
tiled_client(int screen, Client *c)
|
||||||
{
|
{
|
||||||
for(;c && ((c->flags & MaxFlag)
|
for(;c && (c->flags & (MaxFlag | FreeFlag | FSSFlag | AboveFlag)
|
||||||
|| (c->flags & FreeFlag)
|
|| c->screen != screen
|
||||||
|| (c->flags & FSSFlag)
|
|| ishide(c, screen)); c = c->next);
|
||||||
|| (c->flags & AboveFlag)
|
|
||||||
|| c->screen != screen
|
|
||||||
|| ishide(c, screen)); c = c->next);
|
|
||||||
|
|
||||||
if(c)
|
if(c)
|
||||||
c->flags |= FLayFlag;
|
c->flags |= FLayFlag;
|
||||||
@@ -204,7 +220,7 @@ uicb_set_mwfact(uicb_t cmd)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
tags[selscreen][seltag[selscreen]].mwfact += c;
|
tags[selscreen][seltag[selscreen]].mwfact += c;
|
||||||
tags[selscreen][seltag[selscreen]].layout.func(selscreen);
|
layout_func(selscreen, seltag[selscreen]);
|
||||||
|
|
||||||
ewmh_update_current_tag_prop();
|
ewmh_update_current_tag_prop();
|
||||||
|
|
||||||
@@ -229,7 +245,8 @@ uicb_set_nmaster(uicb_t cmd)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
tags[selscreen][seltag[selscreen]].nmaster += n;
|
tags[selscreen][seltag[selscreen]].nmaster += n;
|
||||||
tags[selscreen][seltag[selscreen]].layout.func(selscreen);
|
tags[selscreen][seltag[selscreen]].flags |= CleanFactFlag;
|
||||||
|
layout_func(selscreen, seltag[selscreen]);
|
||||||
|
|
||||||
ewmh_update_current_tag_prop();
|
ewmh_update_current_tag_prop();
|
||||||
|
|
||||||
@@ -239,17 +256,17 @@ uicb_set_nmaster(uicb_t cmd)
|
|||||||
/** Grid layout function
|
/** Grid layout function
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
grid(int screen, Bool horizontal)
|
grid(int screen, bool horizontal)
|
||||||
{
|
{
|
||||||
Client *c;
|
Client *c;
|
||||||
XRectangle sg = sgeo[screen];
|
Geo sg = sgeo[screen];
|
||||||
XRectangle cgeo = {sg.x, sg.y, 0, 0};
|
Geo cgeo = {sg.x, sg.y, 0, 0};
|
||||||
unsigned int i, n, temp, cols, rows, cpcols = 0;
|
unsigned int i, n, temp, cols, rows, cpcols = 0;
|
||||||
|
|
||||||
for(n = 0, c = tiled_client(screen, clients); c; c = tiled_client(screen, c->next), ++n);
|
for(n = 0, c = tiled_client(screen, clients); c; c = tiled_client(screen, c->next), ++n);
|
||||||
CHECK(n);
|
CHECK((tags[screen][seltag[screen]].nclients = n));
|
||||||
|
|
||||||
for(rows = 0; rows <= n / 2; ++rows)
|
for(rows = 0; rows <= (n >> 1); ++rows)
|
||||||
if(rows * rows >= n)
|
if(rows * rows >= n)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@@ -270,7 +287,10 @@ grid(int screen, Bool horizontal)
|
|||||||
c->flags &= ~(MaxFlag | LMaxFlag);
|
c->flags &= ~(MaxFlag | LMaxFlag);
|
||||||
c->flags |= TileFlag;
|
c->flags |= TileFlag;
|
||||||
++cpcols;
|
++cpcols;
|
||||||
cgeo.width = (sg.width / cols) - (BORDH * 2);
|
|
||||||
|
cfactor_clean(c);
|
||||||
|
|
||||||
|
cgeo.width = (sg.width / cols) - (BORDH << 1);
|
||||||
cgeo.height = (sg.height / rows) - BORDH;
|
cgeo.height = (sg.height / rows) - BORDH;
|
||||||
|
|
||||||
/* Last row's and last client remainder */
|
/* Last row's and last client remainder */
|
||||||
@@ -279,22 +299,23 @@ grid(int screen, Bool horizontal)
|
|||||||
|
|
||||||
/* Last column's client remainder */
|
/* Last column's client remainder */
|
||||||
if(i >= rows * (cols - 1))
|
if(i >= rows * (cols - 1))
|
||||||
cgeo.width = sg.width - (cgeo.x - (sg.x - (BORDH * 2)));
|
cgeo.width = sg.width - (cgeo.x - (sg.x - (BORDH << 1)));
|
||||||
|
|
||||||
/* Resize */
|
/* Resize */
|
||||||
client_moveresize(c, cgeo, tags[screen][seltag[screen]].resizehint);
|
client_moveresize(c, (c->pgeo = cgeo), (tags[screen][seltag[screen]].flags & ResizeHintFlag));
|
||||||
|
|
||||||
/* Set all the other size with current client info */
|
/* Set all the other size with current client info */
|
||||||
cgeo.y = c->geo.y + c->geo.height + BORDH + TBARH;
|
cgeo.y = c->pgeo.y + c->pgeo.height + BORDH + TBARH;
|
||||||
|
|
||||||
if(cpcols + 1 > rows)
|
if(cpcols + 1 > rows)
|
||||||
{
|
{
|
||||||
cpcols = 0;
|
cpcols = 0;
|
||||||
cgeo.x = c->geo.x + c->geo.width + (BORDH * 2);
|
cgeo.x = c->pgeo.x + c->pgeo.width + (BORDH << 1);
|
||||||
cgeo.y = sg.y;
|
cgeo.y = sg.y;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tags[screen][seltag[screen]].flags &= ~CleanFactFlag;
|
||||||
ewmh_update_current_tag_prop();
|
ewmh_update_current_tag_prop();
|
||||||
|
|
||||||
return;
|
return;
|
||||||
@@ -307,13 +328,13 @@ static void
|
|||||||
multi_tile(int screen, Position type)
|
multi_tile(int screen, Position type)
|
||||||
{
|
{
|
||||||
Client *c;
|
Client *c;
|
||||||
XRectangle sg = sgeo[screen];
|
Geo sg = sgeo[screen];
|
||||||
XRectangle mastergeo = {sg.x, sg.y, 0, 0};
|
Geo mastergeo = {sg.x, sg.y, 0, 0};
|
||||||
XRectangle cgeo = {sg.x, sg.y, 0, 0};
|
Geo cgeo = {sg.x, sg.y, 0, 0};
|
||||||
uint i, n, tilesize = 0, mwfact, nmaster = tags[screen][seltag[screen]].nmaster;
|
uint i, n, tilesize = 0, mwfact, nmaster = tags[screen][seltag[screen]].nmaster;
|
||||||
|
|
||||||
for(n = 0, c = tiled_client(screen, clients); c; c = tiled_client(screen, c->next), ++n);
|
for(n = 0, c = tiled_client(screen, clients); c; c = tiled_client(screen, c->next), ++n);
|
||||||
CHECK(n);
|
CHECK((tags[screen][seltag[screen]].nclients = n));
|
||||||
|
|
||||||
/* FIX NMASTER */
|
/* FIX NMASTER */
|
||||||
nmaster = (n < nmaster) ? n : nmaster;
|
nmaster = (n < nmaster) ? n : nmaster;
|
||||||
@@ -324,28 +345,27 @@ multi_tile(int screen, Position type)
|
|||||||
: tags[screen][seltag[screen]].mwfact * sg.width;
|
: tags[screen][seltag[screen]].mwfact * sg.width;
|
||||||
|
|
||||||
/* MASTER SIZE */
|
/* MASTER SIZE */
|
||||||
if(type == Top || type == Bottom)
|
if(LDIR(type))
|
||||||
{
|
{
|
||||||
if(type == Top)
|
if(type == Left)
|
||||||
mastergeo.y = (n <= nmaster) ? (uint)sg.y : sg.y + (sg.height - mwfact) - BORDH;
|
mastergeo.x = (n <= nmaster) ? (uint)sg.x : (sg.x + sg.width) - mwfact - (BORDH << 1);
|
||||||
mastergeo.width = (sg.width / nmaster) - (BORDH * 4);
|
mastergeo.width = (n <= nmaster) ? (uint)(sg.width - (BORDH << 1)) : mwfact;
|
||||||
mastergeo.height = (n <= nmaster) ? (uint)(sg.height - BORDH) : mwfact;
|
mastergeo.height = (sg.height / nmaster) - BORDH;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if(type == Left)
|
if(type == Top)
|
||||||
mastergeo.x = (n <= nmaster) ? (uint)sg.x : (sg.x + sg.width) - mwfact - (BORDH * 2);
|
mastergeo.y = (n <= nmaster) ? (uint)sg.y : sg.y + (sg.height - mwfact) - BORDH;
|
||||||
mastergeo.width = (n <= nmaster) ? (uint)(sg.width - (BORDH * 2)) : mwfact;
|
mastergeo.width = (sg.width / nmaster) - (BORDH << 2);
|
||||||
mastergeo.height = (sg.height / nmaster) - BORDH;
|
mastergeo.height = (n <= nmaster) ? (uint)(sg.height - BORDH) : mwfact;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TILED SIZE */
|
/* TILED SIZE */
|
||||||
if(n > nmaster)
|
if(n > nmaster)
|
||||||
{
|
{
|
||||||
if(type == Top || type == Bottom)
|
if(LDIR(type))
|
||||||
tilesize = sg.width / (n - nmaster) - (BORDH * 4);
|
tilesize = sg.height / (n - nmaster) - ((BORDH << 1) + TBARH);
|
||||||
else
|
else
|
||||||
tilesize = sg.height / (n - nmaster) - ((BORDH * 2) + TBARH);
|
tilesize = sg.width / (n - nmaster) - (BORDH << 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -355,19 +375,21 @@ multi_tile(int screen, Position type)
|
|||||||
c->flags &= ~(MaxFlag | LMaxFlag);
|
c->flags &= ~(MaxFlag | LMaxFlag);
|
||||||
c->flags |= TileFlag;
|
c->flags |= TileFlag;
|
||||||
|
|
||||||
|
cfactor_clean(c);
|
||||||
|
|
||||||
/* MASTER */
|
/* MASTER */
|
||||||
if(i < nmaster)
|
if(i < nmaster)
|
||||||
{
|
{
|
||||||
cgeo.width = mastergeo.width;
|
cgeo.width = mastergeo.width;
|
||||||
cgeo.height = mastergeo.height;
|
cgeo.height = mastergeo.height;
|
||||||
|
|
||||||
if(type == Top || type == Bottom)
|
if(LDIR(type))
|
||||||
cgeo.y = mastergeo.y;
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
cgeo.x = mastergeo.x;
|
cgeo.x = mastergeo.x;
|
||||||
cgeo.height -= (TBARH + BORDH);
|
cgeo.height -= (TBARH + BORDH);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
cgeo.y = mastergeo.y;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TILED */
|
/* TILED */
|
||||||
@@ -388,42 +410,43 @@ multi_tile(int screen, Position type)
|
|||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
case Right:
|
case Right:
|
||||||
cgeo.x += mastergeo.width + (BORDH * 2);
|
cgeo.x += mastergeo.width + (BORDH << 1);
|
||||||
cgeo.y = sg.y;
|
cgeo.y = sg.y;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(type == Top || type == Bottom)
|
if(LDIR(type))
|
||||||
{
|
{
|
||||||
cgeo.width = tilesize;
|
cgeo.width = sg.width - mastergeo.width - (BORDH << 2);
|
||||||
cgeo.height = sg.height - mastergeo.height - TBARH - (BORDH * 2);
|
cgeo.height = tilesize;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
cgeo.width = sg.width - mastergeo.width - (BORDH * 4);
|
cgeo.width = tilesize;
|
||||||
cgeo.height = tilesize;
|
cgeo.height = sg.height - mastergeo.height - TBARH - (BORDH << 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* REMAINDER */
|
/* REMAINDER */
|
||||||
if(i + 1 == n || i + 1 == (n < nmaster ? n : nmaster))
|
if(i + 1 == n || i + 1 == (n < nmaster ? n : nmaster))
|
||||||
{
|
{
|
||||||
if(type == Top || type == Bottom)
|
if(LDIR(type))
|
||||||
cgeo.width = sg.width - (cgeo.x - (sg.x - (BORDH * 2)));
|
|
||||||
else
|
|
||||||
cgeo.height = (sg.y + sg.height) - cgeo.y - BORDH;
|
cgeo.height = (sg.y + sg.height) - cgeo.y - BORDH;
|
||||||
|
else
|
||||||
|
cgeo.width = sg.width - (cgeo.x - (sg.x - (BORDH << 1)));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Magic instant */
|
/* Magic instant */
|
||||||
client_moveresize(c, cgeo, tags[screen][seltag[screen]].resizehint);
|
client_moveresize(c, (c->pgeo = cgeo), (tags[screen][seltag[screen]].flags & ResizeHintFlag));
|
||||||
|
|
||||||
/* Set the position of the next client */
|
/* Set the position of the next client */
|
||||||
if(type == Top || type == Bottom)
|
if(LDIR(type))
|
||||||
cgeo.x = c->geo.x + c->geo.width + (BORDH * 2);
|
cgeo.y = c->pgeo.y + c->pgeo.height + BORDH + TBARH;
|
||||||
else
|
else
|
||||||
cgeo.y = c->geo.y + c->geo.height + BORDH + TBARH;
|
cgeo.x = c->pgeo.x + c->pgeo.width + (BORDH << 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tags[screen][seltag[screen]].flags &= ~CleanFactFlag;
|
||||||
ewmh_update_current_tag_prop();
|
ewmh_update_current_tag_prop();
|
||||||
|
|
||||||
return;
|
return;
|
||||||
@@ -434,28 +457,28 @@ multi_tile(int screen, Position type)
|
|||||||
* \param horizont To specify the mirror mode (vertical/horizontal)
|
* \param horizont To specify the mirror mode (vertical/horizontal)
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
mirror(int screen, Bool horizontal)
|
mirror(int screen, bool horizontal)
|
||||||
{
|
{
|
||||||
Client *c;
|
Client *c;
|
||||||
XRectangle sg = sgeo[screen];
|
Geo sg = sgeo[screen];
|
||||||
XRectangle mastergeo = {sg.x, sg.y, sg.width, sg.height};
|
Geo mastergeo = {sg.x, sg.y, sg.width, sg.height};
|
||||||
XRectangle cgeo = {sg.x, sg.y , sg.width, sg.height};
|
Geo cgeo = {sg.x, sg.y , sg.width, sg.height};
|
||||||
XRectangle nextg[2];
|
Geo nextg[2];
|
||||||
uint i, n, tilesize = 0, mwfact;
|
uint i, n, tilesize = 0, mwfact;
|
||||||
uint nmaster = tags[screen][seltag[screen]].nmaster;
|
uint nmaster = tags[screen][seltag[screen]].nmaster;
|
||||||
int pa, imp;
|
int pa, imp;
|
||||||
Bool isp = 0;
|
bool isp = False;
|
||||||
|
|
||||||
memset(nextg, 0, sizeof(nextg));
|
memset(nextg, 0, sizeof(nextg));
|
||||||
|
|
||||||
for(n = 0, c = tiled_client(screen, clients); c; c = tiled_client(screen, c->next), ++n);
|
for(n = 0, c = tiled_client(screen, clients); c; c = tiled_client(screen, c->next), ++n);
|
||||||
CHECK(n);
|
CHECK((tags[screen][seltag[screen]].nclients = n));
|
||||||
|
|
||||||
/* Fix nmaster */
|
/* Fix nmaster */
|
||||||
nmaster = (n < nmaster) ? n : nmaster;
|
nmaster = (n < nmaster) ? n : nmaster;
|
||||||
|
|
||||||
imp = ((n - (nmaster - 1)) / 2);
|
imp = ((n - (nmaster - 1)) >> 1);
|
||||||
pa = ((n - (nmaster - 1)) / 2) - (((n - (nmaster - 1)) % 2) ? 0 : 1);
|
pa = ((n - (nmaster - 1)) >> 1) - (((n - (nmaster - 1)) & 1) ? 0 : 1);
|
||||||
|
|
||||||
/* Set mwfact */
|
/* Set mwfact */
|
||||||
if(tags[screen][seltag[screen]].mwfact < 0.55)
|
if(tags[screen][seltag[screen]].mwfact < 0.55)
|
||||||
@@ -466,26 +489,26 @@ mirror(int screen, Bool horizontal)
|
|||||||
/* Master size */
|
/* Master size */
|
||||||
if(horizontal)
|
if(horizontal)
|
||||||
{
|
{
|
||||||
mastergeo.width = (sg.width / nmaster) - (BORDH * 2);
|
mastergeo.width = (sg.width / nmaster) - (BORDH << 1);
|
||||||
mastergeo.height -= BORDH;
|
mastergeo.height -= BORDH;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
mastergeo.width -= BORDH * 2;
|
mastergeo.width -= (BORDH << 1);
|
||||||
mastergeo.height = (sg.height / nmaster) - (TBARH + (BORDH * 2));
|
mastergeo.height = (sg.height / nmaster) - (TBARH + (BORDH << 1));
|
||||||
}
|
}
|
||||||
|
|
||||||
if(n == nmaster + 1)
|
if(n == nmaster + 1)
|
||||||
{
|
{
|
||||||
if(horizontal)
|
if(horizontal)
|
||||||
{
|
{
|
||||||
mastergeo.height = mwfact - ((BORDH * 2) + TBARH);
|
mastergeo.height = mwfact - ((BORDH << 1) + TBARH);
|
||||||
tilesize = (sg.height - mastergeo.height) - ((BORDH * 2) + TBARH);
|
tilesize = (sg.height - mastergeo.height) - ((BORDH << 1) + TBARH);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
mastergeo.width = mwfact - (BORDH * 3);
|
mastergeo.width = mwfact - (BORDH * 3);
|
||||||
tilesize = (sg.width - mastergeo.width) - (BORDH * 4);
|
tilesize = (sg.width - mastergeo.width) - (BORDH << 2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(n > nmaster + 1)
|
if(n > nmaster + 1)
|
||||||
@@ -493,13 +516,13 @@ mirror(int screen, Bool horizontal)
|
|||||||
if(horizontal)
|
if(horizontal)
|
||||||
{
|
{
|
||||||
mastergeo.y = (sg.y + (sg.height - mwfact)) + TBARH + BORDH;
|
mastergeo.y = (sg.y + (sg.height - mwfact)) + TBARH + BORDH;
|
||||||
mastergeo.height = (2 * mwfact - sg.height) - ((BORDH * 3) + (TBARH * 2));
|
mastergeo.height = ((mwfact << 1) - sg.height) - ((BORDH * 3) + (TBARH << 1));
|
||||||
tilesize = (mwfact - mastergeo.height) - ((BORDH * 3) + (TBARH * 2));
|
tilesize = (mwfact - mastergeo.height) - ((BORDH * 3) + (TBARH << 1));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
mastergeo.x = (sg.x + (sg.width - mwfact)) + BORDH;
|
mastergeo.x = (sg.x + (sg.width - mwfact)) + BORDH;
|
||||||
mastergeo.width = ((2 * mwfact - sg.width) - (BORDH * 4));
|
mastergeo.width = ((mwfact << 1) - sg.width) - (BORDH << 2);
|
||||||
tilesize = (mwfact - mastergeo.width) - (BORDH * 5);
|
tilesize = (mwfact - mastergeo.width) - (BORDH * 5);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -510,6 +533,8 @@ mirror(int screen, Bool horizontal)
|
|||||||
c->flags &= ~(MaxFlag | LMaxFlag);
|
c->flags &= ~(MaxFlag | LMaxFlag);
|
||||||
c->flags |= TileFlag;
|
c->flags |= TileFlag;
|
||||||
|
|
||||||
|
cfactor_clean(c);
|
||||||
|
|
||||||
if(i < nmaster)
|
if(i < nmaster)
|
||||||
{
|
{
|
||||||
cgeo = mastergeo;
|
cgeo = mastergeo;
|
||||||
@@ -518,7 +543,7 @@ mirror(int screen, Bool horizontal)
|
|||||||
if(i + 1 == nmaster)
|
if(i + 1 == nmaster)
|
||||||
{
|
{
|
||||||
if(horizontal)
|
if(horizontal)
|
||||||
cgeo.width = (sg.x + sg.width) - (cgeo.x + (BORDH * 2));
|
cgeo.width = (sg.x + sg.width) - (cgeo.x + (BORDH << 1));
|
||||||
else
|
else
|
||||||
cgeo.height = (sg.y + sg.height) - (cgeo.y + BORDH);
|
cgeo.height = (sg.y + sg.height) - (cgeo.y + BORDH);
|
||||||
}
|
}
|
||||||
@@ -530,19 +555,19 @@ mirror(int screen, Bool horizontal)
|
|||||||
else
|
else
|
||||||
cgeo.width = tilesize;
|
cgeo.width = tilesize;
|
||||||
|
|
||||||
if((i + nmaster) % 2)
|
if((i + nmaster) & 1)
|
||||||
{
|
{
|
||||||
isp = 1;
|
isp = 1;
|
||||||
|
|
||||||
if(horizontal)
|
if(horizontal)
|
||||||
{
|
{
|
||||||
cgeo.y = sg.y;
|
cgeo.y = sg.y;
|
||||||
cgeo.width = (sg.width / pa) - (BORDH * 2);
|
cgeo.width = (sg.width / pa) - (BORDH << 1);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
cgeo.x = sg.x;
|
cgeo.x = sg.x;
|
||||||
cgeo.height = (sg.height / pa) - (TBARH + (BORDH * 2));
|
cgeo.height = (sg.height / pa) - (TBARH + (BORDH << 1));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -552,12 +577,12 @@ mirror(int screen, Bool horizontal)
|
|||||||
if(horizontal)
|
if(horizontal)
|
||||||
{
|
{
|
||||||
cgeo.y = (sg.y + mwfact) - BORDH;
|
cgeo.y = (sg.y + mwfact) - BORDH;
|
||||||
cgeo.width = (sg.width / imp) - (BORDH * 2);
|
cgeo.width = (sg.width / imp) - (BORDH << 1);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
cgeo.x = (sg.x + mwfact) - BORDH;
|
cgeo.x = (sg.x + mwfact) - BORDH;
|
||||||
cgeo.height = (sg.height / imp) - (TBARH + (BORDH * 2));
|
cgeo.height = (sg.height / imp) - (TBARH + (BORDH << 1));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -565,16 +590,16 @@ mirror(int screen, Bool horizontal)
|
|||||||
if(i + 1 == n || i + 1 == n - 1)
|
if(i + 1 == n || i + 1 == n - 1)
|
||||||
{
|
{
|
||||||
if(horizontal)
|
if(horizontal)
|
||||||
cgeo.width = (sg.x + sg.width) - (cgeo.x + (BORDH * 2));
|
cgeo.width = (sg.x + sg.width) - (cgeo.x + (BORDH << 1));
|
||||||
else
|
else
|
||||||
cgeo.height = (sg.y + sg.height) - (cgeo.y + BORDH);
|
cgeo.height = (sg.y + sg.height) - (cgeo.y + BORDH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
client_moveresize(c, cgeo, tags[screen][seltag[screen]].resizehint);
|
client_moveresize(c, (c->pgeo = cgeo), (tags[screen][seltag[screen]].flags & ResizeHintFlag));
|
||||||
|
|
||||||
if(i >= nmaster)
|
if(i >= nmaster)
|
||||||
nextg[!isp] = c->geo;
|
nextg[!isp] = c->pgeo;
|
||||||
|
|
||||||
/* Next y/x position */
|
/* Next y/x position */
|
||||||
if(i >= nmaster - 1)
|
if(i >= nmaster - 1)
|
||||||
@@ -584,7 +609,7 @@ mirror(int screen, Bool horizontal)
|
|||||||
if(i == nmaster || i == nmaster - 1)
|
if(i == nmaster || i == nmaster - 1)
|
||||||
cgeo.x = sg.x;
|
cgeo.x = sg.x;
|
||||||
else
|
else
|
||||||
cgeo.x = nextg[isp].x + nextg[isp].width + BORDH * 2;
|
cgeo.x = nextg[isp].x + nextg[isp].width + (BORDH << 1);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -597,13 +622,14 @@ mirror(int screen, Bool horizontal)
|
|||||||
else if (i <= nmaster - 1)
|
else if (i <= nmaster - 1)
|
||||||
{
|
{
|
||||||
if(horizontal)
|
if(horizontal)
|
||||||
mastergeo.x = c->geo.x + c->geo.width + BORDH * 2;
|
mastergeo.x = cgeo.x + cgeo.width + (BORDH << 1);
|
||||||
else
|
else
|
||||||
mastergeo.y = c->geo.y + c->geo.height + BORDH + TBARH;
|
mastergeo.y = cgeo.y + cgeo.height + BORDH + TBARH;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tags[screen][seltag[screen]].flags &= ~CleanFactFlag;
|
||||||
ewmh_update_current_tag_prop();
|
ewmh_update_current_tag_prop();
|
||||||
|
|
||||||
return;
|
return;
|
||||||
@@ -689,10 +715,6 @@ grid_vertical(int screen)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Put the selected client to the master postion
|
|
||||||
* \param cmd uicb_t type unused
|
|
||||||
*/
|
|
||||||
|
|
||||||
/** Toggle the selected client to free
|
/** Toggle the selected client to free
|
||||||
* \param cmd uicb_t type unused
|
* \param cmd uicb_t type unused
|
||||||
*/
|
*/
|
||||||
@@ -706,8 +728,9 @@ uicb_togglefree(uicb_t cmd)
|
|||||||
|
|
||||||
sel->flags ^= FreeFlag;
|
sel->flags ^= FreeFlag;
|
||||||
|
|
||||||
if((sel->flags & FreeFlag))
|
if(sel->flags & FreeFlag)
|
||||||
{
|
{
|
||||||
|
split_set_current(NULL, sel);
|
||||||
sel->flags &= ~(TileFlag | MaxFlag | LMaxFlag);
|
sel->flags &= ~(TileFlag | MaxFlag | LMaxFlag);
|
||||||
client_moveresize(sel, sel->free_geo, True);
|
client_moveresize(sel, sel->free_geo, True);
|
||||||
client_raise(sel);
|
client_raise(sel);
|
||||||
@@ -716,11 +739,13 @@ uicb_togglefree(uicb_t cmd)
|
|||||||
{
|
{
|
||||||
sel->free_geo = sel->geo;
|
sel->free_geo = sel->geo;
|
||||||
sel->ogeo = sel->geo;
|
sel->ogeo = sel->geo;
|
||||||
|
split_set_current(sel, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
client_update_attributes(sel);
|
client_update_attributes(sel);
|
||||||
|
|
||||||
tags[selscreen][seltag[selscreen]].layout.func(selscreen);
|
tags[selscreen][seltag[selscreen]].flags |= CleanFactFlag;
|
||||||
|
layout_func(selscreen, seltag[selscreen]);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -733,26 +758,31 @@ uicb_togglemax(uicb_t cmd)
|
|||||||
{
|
{
|
||||||
(void)cmd;
|
(void)cmd;
|
||||||
|
|
||||||
if(!sel || ishide(sel, selscreen)
|
if(!sel || ishide(sel, selscreen) || (sel->flags & (HintFlag | FSSFlag)))
|
||||||
|| (sel->flags & HintFlag)|| (sel->flags & FSSFlag))
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if(!(sel->flags & MaxFlag))
|
sel->flags ^= MaxFlag;
|
||||||
|
|
||||||
|
if(sel->flags & MaxFlag)
|
||||||
{
|
{
|
||||||
sel->ogeo = sel->geo;
|
sel->ogeo = sel->geo;
|
||||||
sel->free_geo = sel->geo;
|
sel->free_geo = sel->geo;
|
||||||
sel->flags &= ~(TileFlag | FreeFlag);
|
sel->flags &= ~(TileFlag | FreeFlag);
|
||||||
|
|
||||||
|
split_set_current(NULL, sel);
|
||||||
client_maximize(sel);
|
client_maximize(sel);
|
||||||
XRaiseWindow(dpy, sel->frame);
|
XRaiseWindow(dpy, sel->frame);
|
||||||
sel->flags |= MaxFlag;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
sel->geo = sel->ogeo;
|
sel->geo = sel->ogeo;
|
||||||
|
|
||||||
client_moveresize(sel, sel->geo, True);
|
client_moveresize(sel, sel->geo, True);
|
||||||
sel->flags &= ~MaxFlag;
|
|
||||||
tags[selscreen][seltag[selscreen]].layout.func(selscreen);
|
tags[selscreen][seltag[selscreen]].flags |= CleanFactFlag;
|
||||||
|
|
||||||
|
split_set_current(sel, NULL);
|
||||||
|
layout_func(selscreen, seltag[selscreen]);
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
@@ -764,12 +794,15 @@ uicb_togglemax(uicb_t cmd)
|
|||||||
void
|
void
|
||||||
uicb_toggle_resizehint(uicb_t cmd)
|
uicb_toggle_resizehint(uicb_t cmd)
|
||||||
{
|
{
|
||||||
|
Client *c;
|
||||||
|
|
||||||
screen_get_sel();
|
screen_get_sel();
|
||||||
(void)cmd;
|
(void)cmd;
|
||||||
|
|
||||||
tags[selscreen][seltag[selscreen]].resizehint = !tags[selscreen][seltag[selscreen]].resizehint;
|
tags[selscreen][seltag[selscreen]].flags ^= ResizeHintFlag;
|
||||||
|
|
||||||
tags[selscreen][seltag[selscreen]].layout.func(selscreen);
|
for(c = tiled_client(selscreen, clients); c; c = tiled_client(selscreen, c->next))
|
||||||
|
client_moveresize(c, c->geo, (tags[selscreen][seltag[selscreen]].flags & ResizeHintFlag));
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -785,7 +818,9 @@ uicb_toggle_abovefc(uicb_t cmd)
|
|||||||
|
|
||||||
screen_get_sel();
|
screen_get_sel();
|
||||||
|
|
||||||
if(!(tags[selscreen][seltag[selscreen]].abovefc = !tags[selscreen][seltag[selscreen]].abovefc))
|
tags[selscreen][seltag[selscreen]].flags ^= AboveFCFlag;
|
||||||
|
|
||||||
|
if(!(tags[selscreen][seltag[selscreen]].flags & AboveFCFlag))
|
||||||
{
|
{
|
||||||
for(c = clients; c; c = c->next)
|
for(c = clients; c; c = c->next)
|
||||||
if(c->flags & AboveFlag
|
if(c->flags & AboveFlag
|
||||||
@@ -796,7 +831,8 @@ uicb_toggle_abovefc(uicb_t cmd)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
tags[selscreen][seltag[selscreen]].layout.func(selscreen);
|
tags[selscreen][seltag[selscreen]].flags |= CleanFactFlag;
|
||||||
|
layout_func(selscreen, seltag[selscreen]);
|
||||||
}
|
}
|
||||||
|
|
||||||
client_focus(sel);
|
client_focus(sel);
|
||||||
@@ -823,6 +859,8 @@ uicb_set_layout(uicb_t cmd)
|
|||||||
if(layout_list[i].func == conf.layout[j].func)
|
if(layout_list[i].func == conf.layout[j].func)
|
||||||
tags[selscreen][seltag[selscreen]].layout = conf.layout[j];
|
tags[selscreen][seltag[selscreen]].layout = conf.layout[j];
|
||||||
|
|
||||||
|
tags[selscreen][seltag[selscreen]].flags |= CleanFactFlag;
|
||||||
|
tags[selscreen][seltag[selscreen]].flags &= ~SplitFlag;
|
||||||
arrange(selscreen, True);
|
arrange(selscreen, True);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
@@ -836,8 +874,7 @@ layout_set_client_master(Client *c)
|
|||||||
{
|
{
|
||||||
screen_get_sel();
|
screen_get_sel();
|
||||||
|
|
||||||
if(!c || (c->flags & HintFlag) || !(c->flags & TileFlag)
|
if(!c || (c->flags & (HintFlag | FSSFlag)) || !(c->flags & TileFlag))
|
||||||
|| (c->flags & FSSFlag))
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if(c == tiled_client(selscreen, clients))
|
if(c == tiled_client(selscreen, clients))
|
||||||
@@ -846,7 +883,8 @@ layout_set_client_master(Client *c)
|
|||||||
client_detach(c);
|
client_detach(c);
|
||||||
client_attach(c);
|
client_attach(c);
|
||||||
|
|
||||||
tags[selscreen][seltag[selscreen]].layout.func(selscreen);
|
tags[selscreen][seltag[selscreen]].flags |= CleanFactFlag;
|
||||||
|
layout_func(selscreen, seltag[selscreen]);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -854,7 +892,7 @@ layout_set_client_master(Client *c)
|
|||||||
/** Check the selected client is max
|
/** Check the selected client is max
|
||||||
* \param cmd uicb_t type unused
|
* \param cmd uicb_t type unused
|
||||||
*/
|
*/
|
||||||
Bool
|
bool
|
||||||
uicb_checkmax(uicb_t cmd)
|
uicb_checkmax(uicb_t cmd)
|
||||||
{
|
{
|
||||||
(void)cmd;
|
(void)cmd;
|
||||||
@@ -871,7 +909,7 @@ uicb_checkmax(uicb_t cmd)
|
|||||||
/** Check the selected client is free
|
/** Check the selected client is free
|
||||||
* \param cmd uicb_t type unused
|
* \param cmd uicb_t type unused
|
||||||
*/
|
*/
|
||||||
Bool
|
bool
|
||||||
uicb_checkfree(uicb_t cmd)
|
uicb_checkfree(uicb_t cmd)
|
||||||
{
|
{
|
||||||
(void)cmd;
|
(void)cmd;
|
||||||
@@ -888,12 +926,13 @@ uicb_checkfree(uicb_t cmd)
|
|||||||
/** Check layout type
|
/** Check layout type
|
||||||
* \param cmd uicb_t type layout type
|
* \param cmd uicb_t type layout type
|
||||||
*/
|
*/
|
||||||
Bool
|
bool
|
||||||
uicb_checklayout(uicb_t cmd)
|
uicb_checklayout(uicb_t cmd)
|
||||||
{
|
{
|
||||||
screen_get_sel();
|
screen_get_sel();
|
||||||
|
char *type = tags[selscreen][seltag[selscreen]].layout.type;
|
||||||
|
|
||||||
if(!strcmp(cmd, tags[selscreen][seltag[selscreen]].layout.type))
|
if(type && !strcmp(cmd, type))
|
||||||
return True;
|
return True;
|
||||||
|
|
||||||
return False;
|
return False;
|
||||||
|
|||||||
20
src/menu.c
20
src/menu.c
@@ -44,7 +44,7 @@ menu_get_longer_string(MenuItem *mi, int nitem)
|
|||||||
return l;
|
return l;
|
||||||
}
|
}
|
||||||
|
|
||||||
static Bool
|
static bool
|
||||||
menu_get_checkstring_needed(MenuItem *mi, int nitem)
|
menu_get_checkstring_needed(MenuItem *mi, int nitem)
|
||||||
{
|
{
|
||||||
(void)mi;
|
(void)mi;
|
||||||
@@ -71,11 +71,11 @@ menu_draw_item_name(Menu *menu, int item, BarWindow *winitem[], int chcklen)
|
|||||||
x = (width - (chcklen + PAD / 3)) / 2 - textw(menu->item[item].name) / 2 + chcklen + PAD / 3;
|
x = (width - (chcklen + PAD / 3)) / 2 - textw(menu->item[item].name) / 2 + chcklen + PAD / 3;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
barwin_draw_image_ofset_text(winitem[item], x, FHINFOBAR, menu->item[item].name, chcklen + PAD / 2, 0);
|
barwin_draw_text(winitem[item], x, FHINFOBAR, menu->item[item].name);
|
||||||
|
|
||||||
if(menu->item[item].check)
|
if(menu->item[item].check)
|
||||||
if(menu->item[item].check(menu->item[item].cmd))
|
if(menu->item[item].check(menu->item[item].cmd))
|
||||||
barwin_draw_image_ofset_text(winitem[item], PAD / 3, FHINFOBAR, conf.selected_layout_symbol, PAD / 3, 0);
|
barwin_draw_text(winitem[item], PAD / 3, FHINFOBAR, conf.selected_layout_symbol);
|
||||||
|
|
||||||
if(menu->item[item].submenu)
|
if(menu->item[item].submenu)
|
||||||
barwin_draw_text(winitem[item], width + PAD * 2, FHINFOBAR, ">");
|
barwin_draw_text(winitem[item], width + PAD * 2, FHINFOBAR, ">");
|
||||||
@@ -83,7 +83,7 @@ menu_draw_item_name(Menu *menu, int item, BarWindow *winitem[], int chcklen)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
static Bool
|
static bool
|
||||||
menu_activate_item(Menu *menu, int i)
|
menu_activate_item(Menu *menu, int i)
|
||||||
{
|
{
|
||||||
int j, x, y;
|
int j, x, y;
|
||||||
@@ -143,12 +143,12 @@ menu_focus_item(Menu *menu, int item, BarWindow *winitem[])
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
static Bool
|
static bool
|
||||||
menu_manage_event(XEvent *ev, Menu *menu, BarWindow *winitem[])
|
menu_manage_event(XEvent *ev, Menu *menu, BarWindow *winitem[])
|
||||||
{
|
{
|
||||||
int i, c = 0;
|
int i, c = 0;
|
||||||
KeySym ks;
|
KeySym ks = 0;
|
||||||
Bool quit = False;
|
bool quit = False;
|
||||||
char acc = 0;
|
char acc = 0;
|
||||||
|
|
||||||
switch(ev->type)
|
switch(ev->type)
|
||||||
@@ -221,9 +221,11 @@ menu_manage_event(XEvent *ev, Menu *menu, BarWindow *winitem[])
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
getevent(*ev);
|
if(ev->type < nevent && ev->type > 0)
|
||||||
|
HANDLE_EVENT(ev);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
XNextEvent(dpy, ev);
|
XNextEvent(dpy, ev);
|
||||||
|
|
||||||
return quit;
|
return quit;
|
||||||
@@ -347,6 +349,8 @@ menu_draw(Menu menu, int x, int y)
|
|||||||
|
|
||||||
XGrabKeyboard(dpy, ROOT, True, GrabModeAsync, GrabModeAsync, CurrentTime);
|
XGrabKeyboard(dpy, ROOT, True, GrabModeAsync, GrabModeAsync, CurrentTime);
|
||||||
|
|
||||||
|
XNextEvent(dpy, &ev);
|
||||||
|
|
||||||
while(!menu_manage_event(&ev, &menu, item));
|
while(!menu_manage_event(&ev, &menu, item));
|
||||||
|
|
||||||
XUngrabKeyboard(dpy, CurrentTime);
|
XUngrabKeyboard(dpy, CurrentTime);
|
||||||
|
|||||||
93
src/mouse.c
93
src/mouse.c
@@ -32,20 +32,33 @@
|
|||||||
|
|
||||||
#include "wmfs.h"
|
#include "wmfs.h"
|
||||||
|
|
||||||
|
Window prevwin;
|
||||||
|
|
||||||
/** Draw the border when a client in dragging/resizing with mouse
|
/** Draw the border when a client in dragging/resizing with mouse
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
mouse_dragborder(XRectangle geo, GC g)
|
mouse_dragborder(Geo geo, GC g)
|
||||||
{
|
{
|
||||||
XDrawRectangle(dpy, ROOT, g,
|
XDrawRectangle(dpy, ROOT, g,
|
||||||
geo.x - BORDH / 2,
|
geo.x - (BORDH >> 1),
|
||||||
geo.y - (TBARH - (BORDH / 2)),
|
geo.y - (TBARH - (BORDH >> 1)),
|
||||||
geo.width + BORDH,
|
geo.width + BORDH,
|
||||||
geo.height + TBARH);
|
geo.height + TBARH);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void
|
||||||
|
mouse_cfactor_border(Client *c, int f[4], GC g)
|
||||||
|
{
|
||||||
|
int e;
|
||||||
|
|
||||||
|
mouse_dragborder(cfactor_geo(c->wrgeo, f, &e), g);
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
/** Move a client in tile grid with the mouse
|
/** Move a client in tile grid with the mouse
|
||||||
*\param c Client double pointer
|
*\param c Client double pointer
|
||||||
*/
|
*/
|
||||||
@@ -56,13 +69,13 @@ mouse_move_tile_client(Client **c)
|
|||||||
Window w;
|
Window w;
|
||||||
int d;
|
int d;
|
||||||
|
|
||||||
if(!((*c)->flags & TileFlag) && !((*c)->flags & LMaxFlag))
|
if(!((*c)->flags & (TileFlag | LMaxFlag)))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
XQueryPointer(dpy, ROOT, &w, &w, &d, &d, &d, &d, (uint*)&d);
|
XQueryPointer(dpy, ROOT, &w, &w, &d, &d, &d, &d, (uint*)&d);
|
||||||
|
|
||||||
if(((sc = client_gb_win(w)) || (sc = client_gb_frame(w)) || (sc = client_gb_titlebar(w)))
|
if(((sc = client_gb_win(w)) || (sc = client_gb_frame(w)) || (sc = client_gb_titlebar(w)))
|
||||||
&& (*c)->win != sc->win && !((*c)->flags & HideFlag) && !(sc->flags & HideFlag))
|
&& (*c)->win != sc->win && !((*c)->flags & HideFlag) && !(sc->flags & HideFlag) && (sc->flags & TileFlag))
|
||||||
{
|
{
|
||||||
client_swap(sc, *c);
|
client_swap(sc, *c);
|
||||||
client_focus(sc);
|
client_focus(sc);
|
||||||
@@ -82,28 +95,28 @@ mouse_move_tag_client(Client *c)
|
|||||||
Window w;
|
Window w;
|
||||||
int i, d, s;
|
int i, d, s;
|
||||||
|
|
||||||
if(!(c->flags & TileFlag) && !(c->flags & LMaxFlag))
|
if(!(c->flags & (TileFlag | LMaxFlag)))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
s = c->screen;
|
s = c->screen;
|
||||||
|
|
||||||
XQueryPointer(dpy, infobar[selscreen].tags_board->win, &w, &w, &d, &d, &d, &d, (uint*)&d);
|
XQueryPointer(dpy, infobar[selscreen].tags_board->win, &w, &w, &d, &d, &d, &d, (uint*)&d);
|
||||||
|
|
||||||
|
if(w == prevwin)
|
||||||
|
return;
|
||||||
|
|
||||||
|
prevwin = w;
|
||||||
|
|
||||||
for(i = 1; i < conf.ntag[selscreen] + 1; ++i)
|
for(i = 1; i < conf.ntag[selscreen] + 1; ++i)
|
||||||
if(infobar[selscreen].tags[i]->win == w
|
if(infobar[selscreen].tags[i]->win == w
|
||||||
&& tags[selscreen][i].layout.func != freelayout)
|
&& tags[selscreen][i].layout.func != freelayout)
|
||||||
{
|
{
|
||||||
c->screen = selscreen;
|
tag_transfert(c, i);
|
||||||
c->tag = i;
|
|
||||||
tags[c->screen][c->tag].request_update = True;
|
|
||||||
arrange(s, True);
|
|
||||||
|
|
||||||
if(s != c->screen)
|
if(s != c->screen)
|
||||||
arrange(c->screen, True);
|
arrange(c->screen, True);
|
||||||
}
|
}
|
||||||
|
|
||||||
client_focus_next(c);
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -117,12 +130,12 @@ mouse_move(Client *c)
|
|||||||
int dint;
|
int dint;
|
||||||
uint duint;
|
uint duint;
|
||||||
Window dw;
|
Window dw;
|
||||||
XRectangle geo = c->geo;
|
Geo geo = c->geo;
|
||||||
XGCValues xgc;
|
XGCValues xgc;
|
||||||
GC gci;
|
GC gci;
|
||||||
XEvent ev;
|
XEvent ev;
|
||||||
|
|
||||||
if((c->flags & MaxFlag) || (c->flags & FSSFlag))
|
if(c->flags & (MaxFlag | FSSFlag))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
ocx = c->geo.x;
|
ocx = c->geo.x;
|
||||||
@@ -171,14 +184,13 @@ mouse_move(Client *c)
|
|||||||
mouse_dragborder(geo, gci);
|
mouse_dragborder(geo, gci);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if(ev.type == MapRequest
|
else if((ev.type == MapRequest || ev.type == ConfigureRequest))
|
||||||
|| ev.type == ConfigureRequest)
|
HANDLE_EVENT(&ev);
|
||||||
getevent(ev);
|
|
||||||
}
|
}
|
||||||
while(ev.type != ButtonRelease);
|
while(ev.type != ButtonRelease);
|
||||||
|
|
||||||
/* One time again to delete all the trace on the window */
|
/* One time again to delete all the trace on the window */
|
||||||
if(!(c->flags & TileFlag) && !(c->flags & LMaxFlag))
|
if(!(c->flags & (TileFlag | LMaxFlag)))
|
||||||
{
|
{
|
||||||
mouse_dragborder(geo, gci);
|
mouse_dragborder(geo, gci);
|
||||||
client_moveresize(c, geo, False);
|
client_moveresize(c, geo, False);
|
||||||
@@ -199,23 +211,21 @@ mouse_move(Client *c)
|
|||||||
void
|
void
|
||||||
mouse_resize(Client *c)
|
mouse_resize(Client *c)
|
||||||
{
|
{
|
||||||
XRectangle geo = c->geo, ogeo = c->geo;
|
Geo geo = c->geo, ogeo = c->geo;
|
||||||
Position pos = Right;
|
Position pos = Right;
|
||||||
XEvent ev;
|
XEvent ev;
|
||||||
Window w;
|
Window w;
|
||||||
int d, u, omx, omy;
|
int d, u, omx, omy;
|
||||||
XGCValues xgc;
|
XGCValues xgc;
|
||||||
GC gci;
|
GC gci;
|
||||||
float mwf = tags[selscreen][seltag[selscreen]].mwfact;
|
int f[4] = { 0 };
|
||||||
|
|
||||||
if((c->flags & MaxFlag)
|
if(c->flags & (MaxFlag | LMaxFlag | FSSFlag))
|
||||||
|| (c->flags & LMaxFlag)
|
|
||||||
|| (c->flags & FSSFlag))
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
XQueryPointer(dpy, ROOT, &w, &w, &omx, &omy, &d, &d, (uint *)&u);
|
XQueryPointer(dpy, ROOT, &w, &w, &omx, &omy, &d, &d, (uint *)&u);
|
||||||
|
|
||||||
if((omx - c->geo.x) < (c->geo.width / 2))
|
if((omx - c->geo.x) < (c->geo.width >> 1))
|
||||||
pos = Left;
|
pos = Left;
|
||||||
|
|
||||||
if(XGrabPointer(dpy, ROOT, False, MouseMask, GrabModeAsync, GrabModeAsync, None,
|
if(XGrabPointer(dpy, ROOT, False, MouseMask, GrabModeAsync, GrabModeAsync, None,
|
||||||
@@ -240,6 +250,8 @@ mouse_resize(Client *c)
|
|||||||
XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, 0, c->geo.height);
|
XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, 0, c->geo.height);
|
||||||
mouse_dragborder(c->geo, gci);
|
mouse_dragborder(c->geo, gci);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
mouse_cfactor_border(c, f, gci);
|
||||||
|
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
@@ -247,24 +259,22 @@ mouse_resize(Client *c)
|
|||||||
|
|
||||||
if(ev.type == MotionNotify)
|
if(ev.type == MotionNotify)
|
||||||
{
|
{
|
||||||
/* To resize MWFACT in tile mode */
|
/* To resize client in tile mode with cfactor */
|
||||||
if((c->flags & TileFlag)
|
if(c->flags & TileFlag)
|
||||||
&& tags[selscreen][seltag[selscreen]].layout.func != grid_vertical
|
|
||||||
&& tags[selscreen][seltag[selscreen]].layout.func != grid_horizontal)
|
|
||||||
{
|
{
|
||||||
if(tags[selscreen][seltag[selscreen]].layout.func == tile)
|
mouse_cfactor_border(c, f, gci);
|
||||||
mwf += (ROUND(ev.xmotion.x_root) - omx) / (sgeo[c->screen].width);
|
|
||||||
else if(tags[selscreen][seltag[selscreen]].layout.func == tile_left)
|
if(omx >= c->frame_geo.x + (c->frame_geo.width >> 1))
|
||||||
mwf -= (ROUND(ev.xmotion.x_root) - omx) / (sgeo[c->screen].width);
|
f[Right] = ev.xmotion.x_root - omx;
|
||||||
else if(tags[selscreen][seltag[selscreen]].layout.func == tile_top)
|
|
||||||
mwf -= (ROUND(ev.xmotion.y_root) - omy) / (sgeo[c->screen].height);
|
|
||||||
else
|
else
|
||||||
mwf += (ROUND(ev.xmotion.y_root) - omy) / (sgeo[c->screen].height);
|
f[Left] = omx - ev.xmotion.x_root;
|
||||||
|
|
||||||
omx = ROUND(ev.xmotion.x_root);
|
if(omy >= c->frame_geo.y + (c->frame_geo.height >> 1))
|
||||||
omy = ROUND(ev.xmotion.y_root);
|
f[Bottom] = ev.xmotion.y_root - omy;
|
||||||
|
else
|
||||||
|
f[Top] = omy - ev.xmotion.y_root;
|
||||||
|
|
||||||
tags[selscreen][seltag[selscreen]].mwfact = (mwf < 0.05) ? 0.05 : ((mwf > 0.95) ? 0.95 : mwf);
|
mouse_cfactor_border(c, f, gci);
|
||||||
}
|
}
|
||||||
/* Free mode */
|
/* Free mode */
|
||||||
else if(!(c->flags & TileFlag))
|
else if(!(c->flags & TileFlag))
|
||||||
@@ -303,7 +313,10 @@ mouse_resize(Client *c)
|
|||||||
XUngrabServer(dpy);
|
XUngrabServer(dpy);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
tags[selscreen][seltag[selscreen]].layout.func(c->screen);
|
{
|
||||||
|
mouse_cfactor_border(c, f, gci);
|
||||||
|
cfactor_multi_set(c, f);
|
||||||
|
}
|
||||||
|
|
||||||
client_update_attributes(c);
|
client_update_attributes(c);
|
||||||
XUngrabPointer(dpy, CurrentTime);
|
XUngrabPointer(dpy, CurrentTime);
|
||||||
@@ -317,7 +330,7 @@ mouse_resize(Client *c)
|
|||||||
* \param focused For know if c is or not focused
|
* \param focused For know if c is or not focused
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
mouse_grabbuttons(Client *c, Bool focused)
|
mouse_grabbuttons(Client *c, bool focused)
|
||||||
{
|
{
|
||||||
size_t i;
|
size_t i;
|
||||||
uint but[] = {Button1, Button2, Button3, Button4, Button5};
|
uint but[] = {Button1, Button2, Button3, Button4, Button5};
|
||||||
|
|||||||
@@ -70,8 +70,8 @@ struct keyword {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct state {
|
struct state {
|
||||||
bool_t quote;
|
bool quote;
|
||||||
bool_t comment;
|
bool comment;
|
||||||
char quote_char;
|
char quote_char;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -162,7 +162,7 @@ parse_keywords(const char *filename)
|
|||||||
char path[PATH_MAX];
|
char path[PATH_MAX];
|
||||||
size_t i, j;
|
size_t i, j;
|
||||||
int line;
|
int line;
|
||||||
bool_t error = False;
|
bool error = False;
|
||||||
|
|
||||||
|
|
||||||
if ((fd = open(filename, O_RDONLY)) == -1 || stat(filename, &st) == -1) {
|
if ((fd = open(filename, O_RDONLY)) == -1 || stat(filename, &st) == -1) {
|
||||||
@@ -376,6 +376,9 @@ include(struct keyword *head)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (filename != head->name)
|
||||||
|
free(filename);
|
||||||
|
|
||||||
head = head->next;
|
head = head->next;
|
||||||
|
|
||||||
if (kw) {
|
if (kw) {
|
||||||
|
|||||||
10
src/parse.h
10
src/parse.h
@@ -23,17 +23,11 @@
|
|||||||
#define INCLUDE_CMD "@include"
|
#define INCLUDE_CMD "@include"
|
||||||
#define PARSE_MAX_LIST 32
|
#define PARSE_MAX_LIST 32
|
||||||
|
|
||||||
#if defined(Bool)
|
|
||||||
#define bool_t Bool
|
|
||||||
#else
|
|
||||||
typedef enum { False, True } bool_t;
|
|
||||||
#endif /* Bool */
|
|
||||||
|
|
||||||
struct conf_opt {
|
struct conf_opt {
|
||||||
char *name;
|
char *name;
|
||||||
char *val[PARSE_MAX_LIST];
|
char *val[PARSE_MAX_LIST];
|
||||||
size_t nval;
|
size_t nval;
|
||||||
bool_t used;
|
bool used;
|
||||||
int line;
|
int line;
|
||||||
char *filename;
|
char *filename;
|
||||||
SLIST_ENTRY(conf_opt) entry;
|
SLIST_ENTRY(conf_opt) entry;
|
||||||
@@ -51,7 +45,7 @@ struct conf_sec {
|
|||||||
struct opt_type {
|
struct opt_type {
|
||||||
long int num;
|
long int num;
|
||||||
float fnum;
|
float fnum;
|
||||||
bool_t bool;
|
bool boolean;
|
||||||
char *str;
|
char *str;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -40,9 +40,9 @@ string_to_opt(char *s)
|
|||||||
|
|
||||||
if (!strcmp(s, "true") || !strcmp(s, "True") ||
|
if (!strcmp(s, "true") || !strcmp(s, "True") ||
|
||||||
!strcmp(s, "TRUE") || !strcmp(s, "1"))
|
!strcmp(s, "TRUE") || !strcmp(s, "1"))
|
||||||
ret.bool = True;
|
ret.boolean = True;
|
||||||
else
|
else
|
||||||
ret.bool = False;
|
ret.boolean = False;
|
||||||
|
|
||||||
ret.str = s;
|
ret.str = s;
|
||||||
|
|
||||||
|
|||||||
20
src/screen.c
20
src/screen.c
@@ -57,13 +57,13 @@ screen_count(void)
|
|||||||
|
|
||||||
/** Get screen geometry by number
|
/** Get screen geometry by number
|
||||||
*\param s Screen number
|
*\param s Screen number
|
||||||
*\return XRectangle struct
|
*\return Geo struct
|
||||||
*/
|
*/
|
||||||
XRectangle
|
Geo
|
||||||
screen_get_geo(int s)
|
screen_get_geo(int s)
|
||||||
{
|
{
|
||||||
int barpos = tags[selscreen][seltag[selscreen]].barpos;
|
int barpos = tags[selscreen][seltag[selscreen]].barpos;
|
||||||
XRectangle geo;
|
Geo geo;
|
||||||
|
|
||||||
geo.x = BORDH;
|
geo.x = BORDH;
|
||||||
if(barpos == IB_Hide || barpos == IB_Bottom)
|
if(barpos == IB_Hide || barpos == IB_Bottom)
|
||||||
@@ -106,14 +106,14 @@ screen_get_geo(int s)
|
|||||||
int
|
int
|
||||||
screen_get_with_geo(int x, int y)
|
screen_get_with_geo(int x, int y)
|
||||||
{
|
{
|
||||||
int i, r = 0;
|
int i;
|
||||||
|
|
||||||
for(i = 0; i < screen_count(); ++i)
|
for(i = 0; i < screen_count(); ++i)
|
||||||
if((x >= spgeo[i].x && x < spgeo[i].x + spgeo[i].width)
|
if((x >= spgeo[i].x && x < spgeo[i].x + spgeo[i].width)
|
||||||
&& y >= spgeo[i].y && y < spgeo[i].y + spgeo[i].height)
|
&& y >= spgeo[i].y && y < spgeo[i].y + spgeo[i].height)
|
||||||
r = i;
|
return i;
|
||||||
|
|
||||||
return r;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Set the selected screen
|
/** Set the selected screen
|
||||||
@@ -130,8 +130,8 @@ screen_set_sel(int screen)
|
|||||||
|
|
||||||
client_focus(NULL);
|
client_focus(NULL);
|
||||||
XWarpPointer(dpy, None, ROOT, 0, 0, 0, 0,
|
XWarpPointer(dpy, None, ROOT, 0, 0, 0, 0,
|
||||||
sgeo[screen].x + sgeo[screen].width / 2,
|
sgeo[screen].x + (sgeo[screen].width >> 1),
|
||||||
sgeo[screen].y + sgeo[screen].height / 2);
|
sgeo[screen].y + (sgeo[screen].height >> 1));
|
||||||
|
|
||||||
selscreen = screen;
|
selscreen = screen;
|
||||||
|
|
||||||
@@ -179,8 +179,8 @@ screen_init_geo(void)
|
|||||||
int i;
|
int i;
|
||||||
int s = screen_count();
|
int s = screen_count();
|
||||||
|
|
||||||
sgeo = xcalloc(s, sizeof(XRectangle));
|
sgeo = xcalloc(s, sizeof(Geo));
|
||||||
spgeo = xcalloc(s, sizeof(XRectangle));
|
spgeo = xcalloc(s, sizeof(Geo));
|
||||||
|
|
||||||
for(i = 0; i < s; ++i)
|
for(i = 0; i < s; ++i)
|
||||||
sgeo[i] = screen_get_geo(i);
|
sgeo[i] = screen_get_geo(i);
|
||||||
|
|||||||
373
src/split.c
Normal file
373
src/split.c
Normal file
@@ -0,0 +1,373 @@
|
|||||||
|
/*
|
||||||
|
* split.c
|
||||||
|
* Copyright © 2011 Martin Duquesnoy <xorg62@gmail.com>
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are
|
||||||
|
* met:
|
||||||
|
*
|
||||||
|
* * Redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer.
|
||||||
|
* * Redistributions in binary form must reproduce the above
|
||||||
|
* copyright notice, this list of conditions and the following disclaimer
|
||||||
|
* in the documentation and/or other materials provided with the
|
||||||
|
* distribution.
|
||||||
|
* * Neither the name of the nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from
|
||||||
|
* this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||||
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "wmfs.h"
|
||||||
|
|
||||||
|
#define SPLIT_CHECK_ROW(g1, g2, p) \
|
||||||
|
(LDIR(p) \
|
||||||
|
? (g1.y >= g2.y && (g1.y + g1.height) <= (g2.y + g2.height)) \
|
||||||
|
: (g1.x >= g2.x && (g1.x + g1.width) <= (g2.x + g2.width))) \
|
||||||
|
|
||||||
|
#define SPLIT_MOVE_DIR(d) \
|
||||||
|
void \
|
||||||
|
uicb_split_move_##d(uicb_t cmd) \
|
||||||
|
{ \
|
||||||
|
CHECK(sel); \
|
||||||
|
split_move_dir(sel, d); \
|
||||||
|
}
|
||||||
|
|
||||||
|
/* uicb_split_move_dir() */
|
||||||
|
SPLIT_MOVE_DIR(Right);
|
||||||
|
SPLIT_MOVE_DIR(Left);
|
||||||
|
SPLIT_MOVE_DIR(Top);
|
||||||
|
SPLIT_MOVE_DIR(Bottom);
|
||||||
|
|
||||||
|
/** Arrange size of parent client of last closed client
|
||||||
|
*/
|
||||||
|
static void
|
||||||
|
_split_arrange_size(Geo g, Geo *cg, Position p)
|
||||||
|
{
|
||||||
|
if(LDIR(p))
|
||||||
|
cg->width += FRAMEW(g.width);
|
||||||
|
else
|
||||||
|
cg->height += FRAMEH(g.height);
|
||||||
|
|
||||||
|
if(p == Right)
|
||||||
|
cg->x -= FRAMEW(g.width);
|
||||||
|
|
||||||
|
if(p == Bottom)
|
||||||
|
cg->y -= FRAMEH(g.height);
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Set layout current clients to split/unsplit
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
split_set_current(Client *nc, Client *ghost)
|
||||||
|
{
|
||||||
|
if(nc && (tags[nc->screen][nc->tag].flags & SplitFlag))
|
||||||
|
{
|
||||||
|
tags[nc->screen][nc->tag].layout.nc = nc;
|
||||||
|
tags[nc->screen][nc->tag].layout.flags |= IntegrationFlag;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(ghost && (tags[ghost->screen][ghost->tag].flags & SplitFlag))
|
||||||
|
{
|
||||||
|
tags[ghost->screen][ghost->tag].layout.ghost = *ghost;
|
||||||
|
tags[ghost->screen][ghost->tag].layout.flags |= ArrangeFlag;
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Apply current operation about split
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
split_apply_current(int screen, int tag)
|
||||||
|
{
|
||||||
|
/* Integrate in split mode */
|
||||||
|
if(tags[screen][tag].layout.flags & IntegrationFlag)
|
||||||
|
{
|
||||||
|
split_client_integrate(tags[screen][tag].layout.nc, sel, screen, tag);
|
||||||
|
tags[screen][tag].layout.flags &= ~IntegrationFlag;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Remove from split mode */
|
||||||
|
if(tags[screen][tag].layout.flags & ArrangeFlag)
|
||||||
|
{
|
||||||
|
split_arrange_closed(&tags[screen][tag].layout.ghost);
|
||||||
|
tags[screen][tag].layout.flags &= ~ArrangeFlag;
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Check if row direction is available to resize from it
|
||||||
|
*\param c Client pointer
|
||||||
|
*\param g Client pointer
|
||||||
|
*\param p Position
|
||||||
|
*\return True if available
|
||||||
|
*/
|
||||||
|
static bool
|
||||||
|
_split_check_row_dir(Client *c, Client *g, Position p)
|
||||||
|
{
|
||||||
|
int s, cs;
|
||||||
|
Geo cgeo;
|
||||||
|
Client *cc;
|
||||||
|
|
||||||
|
cs = (LDIR(p) ? g->frame_geo.height : g->frame_geo.width);
|
||||||
|
|
||||||
|
for(s = 0, cgeo = c->frame_geo, cc = tiled_client(c->screen, clients);
|
||||||
|
cc; cc = tiled_client(c->screen, cc->next))
|
||||||
|
if(CFACTOR_PARENTROW(cgeo, cc->frame_geo, RPOS(p))
|
||||||
|
&& SPLIT_CHECK_ROW(cc->frame_geo, g->frame_geo, p))
|
||||||
|
{
|
||||||
|
s += (LDIR(p) ? cc->frame_geo.height : cc->frame_geo.width);
|
||||||
|
|
||||||
|
if(s == cs)
|
||||||
|
return True;
|
||||||
|
if(s > cs)
|
||||||
|
return False;
|
||||||
|
}
|
||||||
|
|
||||||
|
return False;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Arrange clients after a client close
|
||||||
|
*\param ghost Ghost client
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
split_arrange_closed(Client *ghost)
|
||||||
|
{
|
||||||
|
Position p;
|
||||||
|
bool b = False;
|
||||||
|
Geo cgeo;
|
||||||
|
Client *c, *cc;
|
||||||
|
int screen = ghost->screen;
|
||||||
|
int tag = (ghost->tag ? ghost->tag : seltag[screen]);
|
||||||
|
|
||||||
|
/* Use ghost client properties to fix holes in tile
|
||||||
|
* .--. ~ ~
|
||||||
|
* /xx \ ~ ~
|
||||||
|
* ~~\O _ (____ ~
|
||||||
|
* __.| .--'-==~ ~
|
||||||
|
* '---\ '. ~ , ~
|
||||||
|
* '. '-.___.-'/ ~
|
||||||
|
* '-.__ _.' ~
|
||||||
|
* ````` ~
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Search for single parent for easy resize
|
||||||
|
* Example case:
|
||||||
|
* ___________ ___________
|
||||||
|
* | | B | -> -> | | |
|
||||||
|
* | A |_____| -> Close -> | A | B |
|
||||||
|
* | | C | -> C -> | |v v v|
|
||||||
|
* |_____|_____| -> -> |_____|_____|
|
||||||
|
*/
|
||||||
|
for(p = Right; p < Center; ++p)
|
||||||
|
if((c = client_get_next_with_direction(ghost, p)))
|
||||||
|
if(CFACTOR_CHECK2(ghost->frame_geo, c->frame_geo, p))
|
||||||
|
{
|
||||||
|
_split_arrange_size(ghost->wrgeo, &c->wrgeo, p);
|
||||||
|
cfactor_clean(c);
|
||||||
|
client_moveresize(c, (c->pgeo = c->wrgeo), (tags[screen][tag].flags & ResizeHintFlag));
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Check row parents for full resize
|
||||||
|
* Example case:
|
||||||
|
* ___________ ___________
|
||||||
|
* | | B | -> -> | << B |
|
||||||
|
* | A |_____| -> Close -> |___________|
|
||||||
|
* | | C | -> A -> | << C |
|
||||||
|
* |_____|_____| -> -> |___________|
|
||||||
|
*/
|
||||||
|
for(p = Right; p < Center && !b; ++p)
|
||||||
|
if((c = client_get_next_with_direction(ghost, p)) && _split_check_row_dir(c, ghost, p))
|
||||||
|
{
|
||||||
|
for(cgeo = c->frame_geo, cc = tiled_client(c->screen, clients);
|
||||||
|
cc; cc = tiled_client(c->screen, cc->next))
|
||||||
|
if(CFACTOR_PARENTROW(cgeo, cc->frame_geo, RPOS(p))
|
||||||
|
&& SPLIT_CHECK_ROW(cc->frame_geo, ghost->frame_geo, p))
|
||||||
|
{
|
||||||
|
_split_arrange_size(ghost->wrgeo, &cc->wrgeo, p);
|
||||||
|
cfactor_clean(cc);
|
||||||
|
client_moveresize(cc, (cc->pgeo = cc->wrgeo), (tags[screen][tag].flags & ResizeHintFlag));
|
||||||
|
b = True;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Split client hor or vert to insert another client in the new area
|
||||||
|
*\param c Client pointer
|
||||||
|
*\param p True = Vertical, False = Horizontal
|
||||||
|
*\return sgeo Geo of future integrated client
|
||||||
|
*/
|
||||||
|
Geo
|
||||||
|
split_client(Client *c, bool p)
|
||||||
|
{
|
||||||
|
Geo geo, sgeo;
|
||||||
|
|
||||||
|
if(!c || !(c->flags & TileFlag))
|
||||||
|
return c->wrgeo;
|
||||||
|
|
||||||
|
cfactor_clean(c);
|
||||||
|
|
||||||
|
c->flags &= ~(MaxFlag | LMaxFlag);
|
||||||
|
c->flags |= TileFlag;
|
||||||
|
|
||||||
|
/* Use geometry without resizehint applied on it */
|
||||||
|
geo = sgeo = c->wrgeo;
|
||||||
|
|
||||||
|
/* Vertical */
|
||||||
|
if(p)
|
||||||
|
{
|
||||||
|
geo.width >>= 1;
|
||||||
|
sgeo.x = FRAMEW(geo.x + geo.width);
|
||||||
|
sgeo.width = (sgeo.width >> 1) - (BORDH << 1);
|
||||||
|
|
||||||
|
/* Remainder */
|
||||||
|
sgeo.width += (c->wrgeo.x + c->wrgeo.width) - (sgeo.x + sgeo.width);
|
||||||
|
}
|
||||||
|
/* Horizontal */
|
||||||
|
else
|
||||||
|
{
|
||||||
|
geo.height = (geo.height >> 1) - TBARH;
|
||||||
|
sgeo.y = FRAMEH(geo.y + geo.height);
|
||||||
|
sgeo.height = (sgeo.height >> 1) - BORDH;
|
||||||
|
|
||||||
|
/* Remainder */
|
||||||
|
sgeo.height += (c->wrgeo.y + c->wrgeo.height) - (sgeo.y + sgeo.height);
|
||||||
|
}
|
||||||
|
|
||||||
|
client_moveresize(c, (c->pgeo = geo), (tags[c->screen][c->tag].flags & ResizeHintFlag));
|
||||||
|
|
||||||
|
return sgeo;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Apply new attributes to splitted client
|
||||||
|
*\param c Client pointer
|
||||||
|
*\param geo New geo
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
split_client_fill(Client *c, Geo geo)
|
||||||
|
{
|
||||||
|
if(!c)
|
||||||
|
return;
|
||||||
|
|
||||||
|
c->flags &= ~(MaxFlag | LMaxFlag);
|
||||||
|
c->flags |= TileFlag;
|
||||||
|
|
||||||
|
cfactor_clean(c);
|
||||||
|
client_moveresize(c, (c->pgeo = geo), (tags[c->screen][c->tag].flags & ResizeHintFlag));
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Integrate client in tag
|
||||||
|
*\param c Client pointer (integrate)
|
||||||
|
*\param sc Splitted client pointer
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
split_client_integrate(Client *c, Client *sc, int screen, int tag)
|
||||||
|
{
|
||||||
|
bool b = True;
|
||||||
|
Geo g;
|
||||||
|
|
||||||
|
if(!c || c->flags & FreeFlag || !(tags[screen][tag].flags & SplitFlag))
|
||||||
|
return;
|
||||||
|
|
||||||
|
/* Can't integrate in sc */
|
||||||
|
if(!sc || sc == c || !(sc->flags & TileFlag)
|
||||||
|
|| sc->screen != screen || sc->tag != tag)
|
||||||
|
{
|
||||||
|
/* Looking for first client on wanted tag */
|
||||||
|
for(b = False, sc = clients; sc; sc = sc->next)
|
||||||
|
if(sc != c && sc->screen == screen && sc->tag == tag
|
||||||
|
&& (sc->flags & TileFlag))
|
||||||
|
{
|
||||||
|
b = True;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* No client on wanted tag to integrate */
|
||||||
|
if(!b)
|
||||||
|
{
|
||||||
|
/* client_maximize check position of client
|
||||||
|
* to maximize it; so in case of transfert one client
|
||||||
|
* on a tag from another screen, we need it.
|
||||||
|
*/
|
||||||
|
c->geo.x = sgeo[screen].x;
|
||||||
|
c->geo.y = sgeo[screen].y;
|
||||||
|
|
||||||
|
client_maximize(c);
|
||||||
|
c->flags |= TileFlag;
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
g = split_client(sc, (sc->frame_geo.height < sc->frame_geo.width));
|
||||||
|
split_client_fill(c, g);
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Move splitted client by re-arranging it in next by direction client
|
||||||
|
* Integrate c in next client by direction
|
||||||
|
* Example case, direction = left:
|
||||||
|
* ___________ ___________
|
||||||
|
* | | B | -> | A | |
|
||||||
|
* | A |_____| -> |_____| B |
|
||||||
|
* | |< C | -> | C |v v v|
|
||||||
|
* |_____|_____| -> |_____|_____|
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
split_move_dir(Client *c, Position p)
|
||||||
|
{
|
||||||
|
Client *sc;
|
||||||
|
|
||||||
|
if(!c || !(tags[c->screen][c->tag].flags & SplitFlag))
|
||||||
|
return;
|
||||||
|
|
||||||
|
if((sc = client_get_next_with_direction(c, p)))
|
||||||
|
{
|
||||||
|
split_arrange_closed(c);
|
||||||
|
split_client_integrate(c, sc, sc->screen, sc->tag);
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Toggle split mode
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
uicb_split_toggle(uicb_t cmd)
|
||||||
|
{
|
||||||
|
(void)cmd;
|
||||||
|
|
||||||
|
tags[selscreen][seltag[selscreen]].flags ^= SplitFlag;
|
||||||
|
|
||||||
|
layout_func(selscreen, seltag[selscreen]);
|
||||||
|
infobar_draw_layout(&infobar[selscreen]);
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
213
src/status.c
213
src/status.c
@@ -32,119 +32,127 @@
|
|||||||
|
|
||||||
#include "wmfs.h"
|
#include "wmfs.h"
|
||||||
|
|
||||||
/** Check rectangles blocks in str and return properties
|
/* Systray width */
|
||||||
|
static int sw = 0;
|
||||||
|
|
||||||
|
/** Check rectangles blocks in str and draw it
|
||||||
* --> \b[x;y;width;height;#color]\
|
* --> \b[x;y;width;height;#color]\
|
||||||
*\param r StatusRec pointer, rectangles properties
|
*\param ib Infobar pointer
|
||||||
*\param str String
|
*\param str String
|
||||||
*\return n Length of r
|
|
||||||
*/
|
*/
|
||||||
static int
|
static void
|
||||||
statustext_rectangle(StatusRec *r, char *str)
|
statustext_rectangle(InfoBar *ib, char *str)
|
||||||
{
|
{
|
||||||
|
StatusRec r;
|
||||||
char as;
|
char as;
|
||||||
int n, i, j, k;
|
int i, j, k;
|
||||||
|
|
||||||
for(i = j = n = 0; i < (int)strlen(str); ++i, ++j)
|
for(i = j = 0; i < (int)strlen(str); ++i, ++j)
|
||||||
if(sscanf(&str[i], "\\b[%d;%d;%d;%d;#%x]%c", &r[n].x, &r[n].y, &r[n].w, &r[n].h, &r[n].color, &as) == 6
|
if(sscanf(&str[i], "\\b[%d;%d;%d;%d;#%x]%c", &r.x, &r.y, &r.w, &r.h, &r.color, &as) == 6
|
||||||
&& as == '\\')
|
|
||||||
for(++n, ++i, --j; str[i] != as || str[i - 1] != ']'; ++i);
|
|
||||||
else if(j != i)
|
|
||||||
str[j] = str[i];
|
|
||||||
|
|
||||||
for(k = j; k < i; str[k++] = 0);
|
|
||||||
|
|
||||||
return n;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Check graphs blocks in str and return properties
|
|
||||||
* --> \g[x;y;width;height;#color;data]\
|
|
||||||
*\param g StatusGraph pointer, graphs properties
|
|
||||||
*\param str String
|
|
||||||
*\return n Length of g
|
|
||||||
*/
|
|
||||||
static int
|
|
||||||
statustext_graph(StatusGraph *g, char *str)
|
|
||||||
{
|
|
||||||
char as, c, *p;
|
|
||||||
int n, i, j, k, m, w;
|
|
||||||
|
|
||||||
for(i = j = n = 0; i < (int)strlen(str); ++i, ++j)
|
|
||||||
if(sscanf(&str[i], "\\g[%d;%d;%d;%d;#%x;%512[^]]]%c",
|
|
||||||
&g[n].x, &g[n].y, &g[n].w, &g[n].h, &g[n].color, g[n].data, &as) == 7
|
|
||||||
&& as == '\\')
|
&& as == '\\')
|
||||||
{
|
{
|
||||||
/* data is a list of numbers separated by ';' */
|
draw_rectangle(ib->bar->dr, r.x - sw, r.y, r.w, r.h, r.color);
|
||||||
w = g[n].w;
|
|
||||||
p = strtok(g[n].data, ";");
|
|
||||||
m = 0;
|
|
||||||
|
|
||||||
while(p && m < w)
|
for(++i, --j; str[i] != as || str[i - 1] != ']'; ++i);
|
||||||
{
|
|
||||||
c = atoi(p);
|
|
||||||
/* height limits */
|
|
||||||
if(c < 0)
|
|
||||||
c = 0;
|
|
||||||
if(c > (char)g[n].h)
|
|
||||||
c = g[n].h;
|
|
||||||
g[n].data[m] = c;
|
|
||||||
p = strtok(NULL, ";");
|
|
||||||
++m;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* width limits */
|
|
||||||
for(; m < w; ++m)
|
|
||||||
g[n].data[m] = 0;
|
|
||||||
/* data is a array[w] of bytes now */
|
|
||||||
|
|
||||||
for(++n, ++i, --j; str[i] != as || str[i - 1] != ']'; ++i);
|
|
||||||
}
|
}
|
||||||
else if(j != i)
|
else if(j != i)
|
||||||
str[j] = str[i];
|
str[j] = str[i];
|
||||||
|
|
||||||
for(k = j; k < i; str[k++] = 0);
|
for(k = j; k < i; str[k++] = '\0');
|
||||||
|
|
||||||
return n;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Check text blocks in str and return properties
|
/** Check graphs blocks in str and draw it
|
||||||
* --> \s[x;y;#color;text]\
|
* --> \g[x;y;width;height;#color;data]\
|
||||||
*\param s StatusText pointer, text properties
|
*\param ib Infobar pointer
|
||||||
*\param str String
|
*\param str String
|
||||||
*\return n Length of s
|
|
||||||
*/
|
*/
|
||||||
static int
|
static void
|
||||||
statustext_text(StatusText *s, char *str)
|
statustext_graph(InfoBar *ib, char *str)
|
||||||
{
|
{
|
||||||
char as;
|
StatusGraph g;
|
||||||
int n, i, j, k;
|
char as, c, *p;
|
||||||
|
int i, j, k, m, w;
|
||||||
|
|
||||||
for(i = j = n = 0; i < (int)strlen(str); ++i, ++j)
|
for(i = j = 0; i < (int)strlen(str); ++i, ++j)
|
||||||
if(sscanf(&str[i], "\\s[%d;%d;%7[^;];%512[^]]]%c", &s[n].x, &s[n].y, s[n].color, s[n].text, &as) == 5
|
if(sscanf(&str[i], "\\g[%d;%d;%d;%d;#%x;%512[^]]]%c",
|
||||||
|
&g.x, &g.y, &g.w, &g.h, &g.color, g.data, &as) == 7
|
||||||
&& as == '\\')
|
&& as == '\\')
|
||||||
for(++n, ++i, --j; str[i] != as || str[i - 1] != ']'; ++i);
|
{
|
||||||
|
/* data is a list of numbers separated by ';' */
|
||||||
|
w = g.w;
|
||||||
|
p = strtok(g.data, ";");
|
||||||
|
m = 0;
|
||||||
|
|
||||||
|
for(c = atoi(p); p && m < w; ++m)
|
||||||
|
{
|
||||||
|
/* height limits */
|
||||||
|
if(c < 0)
|
||||||
|
c = 0;
|
||||||
|
if(c > (char)g.h)
|
||||||
|
c = g.h;
|
||||||
|
g.data[m] = c;
|
||||||
|
p = strtok(NULL, ";");
|
||||||
|
}
|
||||||
|
|
||||||
|
/* width limits */
|
||||||
|
for(; m < w; g.data[m++] = 0);
|
||||||
|
|
||||||
|
/* data is a array[w] of bytes now */
|
||||||
|
draw_graph(ib->bar->dr, g.x - sw, g.y, g.w, g.h, g.color, g.data);
|
||||||
|
|
||||||
|
for(++i, --j; str[i] != as || str[i - 1] != ']'; ++i);
|
||||||
|
}
|
||||||
else if(j != i)
|
else if(j != i)
|
||||||
str[j] = str[i];
|
str[j] = str[i];
|
||||||
|
|
||||||
for(k = j; k < i; str[k++] = 0);
|
for(k = j; k < i; str[k++] = '\0');
|
||||||
|
|
||||||
return n;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Check text blocks in str and draw it
|
||||||
|
* --> \s[x;y;#color;text]\
|
||||||
|
*\param ib Infobar pointer
|
||||||
|
*\param str String
|
||||||
|
*/
|
||||||
|
static void
|
||||||
|
statustext_text(InfoBar *ib, char *str)
|
||||||
|
{
|
||||||
|
StatusText s;
|
||||||
|
char as;
|
||||||
|
int i, j, k;
|
||||||
|
|
||||||
|
for(i = j = 0; i < (int)strlen(str); ++i, ++j)
|
||||||
|
if(sscanf(&str[i], "\\s[%d;%d;%7[^;];%512[^]]]%c", &s.x, &s.y, s.color, s.text, &as) == 5
|
||||||
|
&& as == '\\')
|
||||||
|
{
|
||||||
|
draw_text(ib->bar->dr, s.x - sw, s.y, s.color, s.text);
|
||||||
|
|
||||||
|
for(++i, --j; str[i] != as || str[i - 1] != ']'; ++i);
|
||||||
|
}
|
||||||
|
else if(j != i)
|
||||||
|
str[j] = str[i];
|
||||||
|
|
||||||
|
for(k = j; k < i; str[k++] = '\0');
|
||||||
|
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Draw normal text and colored normal text
|
/** Draw normal text and colored normal text
|
||||||
* --> \#color\ text in color
|
* --> \#color\ text in color
|
||||||
*\param sc Screen
|
*\param sc Screen id
|
||||||
|
*\param ib Infobar pointer
|
||||||
*\param str String
|
*\param str String
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
statustext_normal(int sc, char *str)
|
statustext_normal(int sc, InfoBar *ib, char *str)
|
||||||
{
|
{
|
||||||
char strwc[MAXSTATUS] = { 0 };
|
char strwc[MAXSTATUS] = { 0 };
|
||||||
char buf[MAXSTATUS] = { 0 };
|
char buf[MAXSTATUS] = { 0 };
|
||||||
char col[8] = { 0 };
|
char col[8] = { 0 };
|
||||||
int n, i, j, k, sw = 0;
|
int n, i, j, k, tw;
|
||||||
|
|
||||||
if(sc == conf.systray.screen)
|
|
||||||
sw = systray_get_width();
|
|
||||||
|
|
||||||
for(i = j = n = 0; i < (int)strlen(str); ++i, ++j)
|
for(i = j = n = 0; i < (int)strlen(str); ++i, ++j)
|
||||||
if(str[i] == '\\' && str[i + 1] == '#' && str[i + 8] == '\\')
|
if(str[i] == '\\' && str[i + 1] == '#' && str[i + 8] == '\\')
|
||||||
@@ -157,8 +165,7 @@ statustext_normal(int sc, char *str)
|
|||||||
strwc[j] = str[i];
|
strwc[j] = str[i];
|
||||||
|
|
||||||
/* Draw normal text without any blocks */
|
/* Draw normal text without any blocks */
|
||||||
draw_text(infobar[sc].bar->dr, (sgeo[sc].width - SHADH) - (textw(strwc) + sw),
|
draw_text(ib->bar->dr, (sgeo[sc].width - SHADH) - (textw(strwc) + sw), FHINFOBAR, ib->bar->fg, strwc);
|
||||||
FHINFOBAR, infobar[sc].bar->fg, strwc);
|
|
||||||
|
|
||||||
if(n)
|
if(n)
|
||||||
{
|
{
|
||||||
@@ -167,17 +174,18 @@ statustext_normal(int sc, char *str)
|
|||||||
for(i = k = 0; i < (int)strlen(str); ++i, ++k)
|
for(i = k = 0; i < (int)strlen(str); ++i, ++k)
|
||||||
if(str[i] == '\\' && str[i + 1] == '#' && str[i + 8] == '\\')
|
if(str[i] == '\\' && str[i + 1] == '#' && str[i + 8] == '\\')
|
||||||
{
|
{
|
||||||
|
tw = textw(&buf[k]);
|
||||||
|
|
||||||
/* Store current color in col[] */
|
/* Store current color in col[] */
|
||||||
for(j = 0, ++i; str[i] != '\\'; col[j++] = str[i++]);
|
for(j = 0, ++i; str[i] != '\\'; col[j++] = str[i++]);
|
||||||
|
|
||||||
/* Draw a rectangle with the bar color to draw the text properly */
|
/* Draw a rectangle with the bar color to draw the text properly */
|
||||||
draw_rectangle(infobar[sc].bar->dr, (sgeo[sc].width - SHADH) - (textw(&buf[k]) + sw),
|
draw_rectangle(ib->bar->dr, (sgeo[sc].width - SHADH) - (tw + sw),
|
||||||
0, INFOBARH - (sgeo[sc].width - SHADH) - textw(&buf[k]),
|
0, INFOBARH - (sgeo[sc].width - SHADH) - tw,
|
||||||
INFOBARH, conf.colors.bar);
|
INFOBARH, conf.colors.bar);
|
||||||
|
|
||||||
/* Draw text with its color */
|
/* Draw text with its color */
|
||||||
draw_text(infobar[sc].bar->dr, (sgeo[sc].width - SHADH) - (textw(&buf[k]) + sw),
|
draw_text(ib->bar->dr, (sgeo[sc].width - SHADH) - (tw + sw), FHINFOBAR, col, &buf[k]);
|
||||||
FHINFOBAR, col, &buf[k]);
|
|
||||||
|
|
||||||
strncpy(buf, strwc, sizeof(buf));
|
strncpy(buf, strwc, sizeof(buf));
|
||||||
++i;
|
++i;
|
||||||
@@ -188,17 +196,15 @@ statustext_normal(int sc, char *str)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Handle statustext and draw all things in infobar of specified screen
|
/** Handle statustext and draw all things in infobar of specified screen
|
||||||
*\param sc Screen number
|
*\param sc Screen id
|
||||||
*\param str String
|
*\param str String
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
statustext_handle(int sc, char *str)
|
statustext_handle(int sc, char *str)
|
||||||
{
|
{
|
||||||
|
InfoBar *ib = &infobar[sc];
|
||||||
char *lastst;
|
char *lastst;
|
||||||
int i, nr, ng, ns, sw = 0;
|
int i;
|
||||||
StatusRec r[128];
|
|
||||||
StatusGraph g[128];
|
|
||||||
StatusText s[128];
|
|
||||||
|
|
||||||
/* If the str == the current statustext, return (not needed) */
|
/* If the str == the current statustext, return (not needed) */
|
||||||
if(!str)
|
if(!str)
|
||||||
@@ -207,34 +213,23 @@ statustext_handle(int sc, char *str)
|
|||||||
if(sc == conf.systray.screen)
|
if(sc == conf.systray.screen)
|
||||||
sw = systray_get_width();
|
sw = systray_get_width();
|
||||||
|
|
||||||
barwin_refresh_color(infobar[sc].bar);
|
barwin_refresh_color(ib->bar);
|
||||||
|
|
||||||
/* save last status text address (for free at the end) */
|
/* save last status text address (for free at the end) */
|
||||||
lastst = infobar[sc].statustext;
|
lastst = ib->statustext;
|
||||||
|
|
||||||
infobar[sc].statustext = xstrdup(str);
|
ib->statustext = xstrdup(str);
|
||||||
|
|
||||||
/* Store rectangles, located text & images properties. */
|
/* Store rectangles, located text & images properties. */
|
||||||
nr = statustext_rectangle(r, str);
|
statustext_rectangle(ib, str);
|
||||||
ng = statustext_graph(g, str);
|
statustext_graph(ib, str);
|
||||||
ns = statustext_text(s, str);
|
statustext_text(ib, str);
|
||||||
|
|
||||||
/* Draw normal text (and possibly colored with \#color\ blocks) */
|
/* Draw normal text (and possibly colored with \#color\ blocks) */
|
||||||
statustext_normal(sc, str);
|
statustext_normal(sc, ib, str);
|
||||||
|
|
||||||
/* Draw rectangles with stored properties. */
|
sw = 0;
|
||||||
for(i = 0; i < nr; ++i)
|
barwin_refresh(ib->bar);
|
||||||
draw_rectangle(infobar[sc].bar->dr, r[i].x - sw, r[i].y, r[i].w, r[i].h, r[i].color);
|
|
||||||
|
|
||||||
/* Draw graphs with stored properties. */
|
|
||||||
for(i = 0; i < ng; ++i)
|
|
||||||
draw_graph(infobar[sc].bar->dr, g[i].x - sw, g[i].y, g[i].w, g[i].h, g[i].color, g[i].data);
|
|
||||||
|
|
||||||
/* Draw located text with stored properties. */
|
|
||||||
for(i = 0; i < ns; ++i)
|
|
||||||
draw_text(infobar[sc].bar->dr, s[i].x - sw, s[i].y, s[i].color, s[i].text);
|
|
||||||
|
|
||||||
barwin_refresh(infobar[sc].bar);
|
|
||||||
|
|
||||||
free(lastst);
|
free(lastst);
|
||||||
|
|
||||||
|
|||||||
175
src/structs.h
175
src/structs.h
@@ -37,25 +37,45 @@
|
|||||||
|
|
||||||
#define NBUTTON 8
|
#define NBUTTON 8
|
||||||
#define MAXTAG 36
|
#define MAXTAG 36
|
||||||
#define NUM_OF_LAYOUT 10
|
#define NUM_OF_LAYOUT 11
|
||||||
#define HISTOLEN 128
|
#define HISTOLEN 128
|
||||||
|
|
||||||
/* Clients flags definition */
|
/* Clients flags definition */
|
||||||
#define FreeFlag (1 << 1)
|
#define FreeFlag 0x01
|
||||||
#define MaxFlag (1 << 2)
|
#define MaxFlag 0x02
|
||||||
#define TileFlag (1 << 3)
|
#define TileFlag 0x04
|
||||||
#define HideFlag (1 << 4)
|
#define HideFlag 0x08
|
||||||
#define LMaxFlag (1 << 5)
|
#define LMaxFlag 0x10
|
||||||
#define UnmapFlag (1 << 6)
|
#define UnmapFlag 0x20
|
||||||
#define HintFlag (1 << 7)
|
#define HintFlag 0x40
|
||||||
#define FSSFlag (1 << 8)
|
#define FSSFlag 0x80
|
||||||
#define AboveFlag (1 << 9)
|
#define AboveFlag 0x100
|
||||||
#define UrgentFlag (1 << 10)
|
#define UrgentFlag 0x200
|
||||||
#define FLayFlag (1 << 11)
|
#define FLayFlag 0x400
|
||||||
#define DockFlag (1 << 12)
|
#define DockFlag 0x800
|
||||||
|
|
||||||
|
/* Layout flags definition */
|
||||||
|
#define IntegrationFlag 0x01
|
||||||
|
#define ArrangeFlag 0x02
|
||||||
|
|
||||||
|
/* Tag flags definition */
|
||||||
|
#define TagUrgentFlag 0x01
|
||||||
|
#define ResizeHintFlag 0x02
|
||||||
|
#define RequestUpdateFlag 0x04
|
||||||
|
#define AboveFCFlag 0x08
|
||||||
|
#define CleanFactFlag 0x10
|
||||||
|
#define StayLastFlag 0x20
|
||||||
|
#define SplitFlag 0x40
|
||||||
|
#define FirstArrangeFlag 0x80
|
||||||
|
#define IgnoreEnterFlag 0x100
|
||||||
|
|
||||||
#define TagFlag(t) (1 << (t))
|
#define TagFlag(t) (1 << (t))
|
||||||
|
|
||||||
|
/* BarWindow flags definition */
|
||||||
|
#define MappedFlag 0x01
|
||||||
|
#define StippleFlag 0x02
|
||||||
|
#define BordFlag 0x04
|
||||||
|
|
||||||
/* XEMBED messages */
|
/* XEMBED messages */
|
||||||
#define XEMBED_MAPPED (1 << 0)
|
#define XEMBED_MAPPED (1 << 0)
|
||||||
#define XEMBED_EMBEDDED_NOTIFY 0
|
#define XEMBED_EMBEDDED_NOTIFY 0
|
||||||
@@ -95,7 +115,7 @@ enum { MA_Center = 0, MA_Left = 1, MA_Right = 2 };
|
|||||||
/* Infobar position */
|
/* Infobar position */
|
||||||
enum { IB_Hide = 0, IB_Bottom = 1, IB_Top = 2 };
|
enum { IB_Hide = 0, IB_Bottom = 1, IB_Top = 2 };
|
||||||
|
|
||||||
typedef enum { Right, Left, Top, Bottom, Center, PositionLast } Position;
|
typedef enum { Right = 0, Left, Top, Bottom, Center, PositionLast } Position;
|
||||||
|
|
||||||
/* Ewmh hints list */
|
/* Ewmh hints list */
|
||||||
enum
|
enum
|
||||||
@@ -154,6 +174,13 @@ enum
|
|||||||
net_last
|
net_last
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* Geometry structure */
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
int x, y;
|
||||||
|
int width, height;
|
||||||
|
} Geo;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* BarWindow Structure
|
* BarWindow Structure
|
||||||
* (titlebar, infobar..)
|
* (titlebar, infobar..)
|
||||||
@@ -173,8 +200,8 @@ typedef struct
|
|||||||
uint bg;
|
uint bg;
|
||||||
char *fg;
|
char *fg;
|
||||||
uint stipple_color;
|
uint stipple_color;
|
||||||
XRectangle geo;
|
Geo geo;
|
||||||
Bool mapped, stipple, bord;
|
uint flags;
|
||||||
} BarWindow;
|
} BarWindow;
|
||||||
|
|
||||||
/* Client Structure. */
|
/* Client Structure. */
|
||||||
@@ -188,16 +215,14 @@ struct Client
|
|||||||
int focusontag;
|
int focusontag;
|
||||||
/* Screen */
|
/* Screen */
|
||||||
int screen;
|
int screen;
|
||||||
/* Layer */
|
|
||||||
int layer;
|
|
||||||
/* Window attribute */
|
/* Window attribute */
|
||||||
XRectangle geo;
|
Geo geo, pgeo; /* Window geo, tiling pure geo */
|
||||||
XRectangle tmp_geo;
|
Geo tmp_geo, wrgeo; /* Temporary geo, without resizehint geo */
|
||||||
XRectangle frame_geo;
|
Geo frame_geo; /* Frame geo */
|
||||||
/* Old window attribute */
|
Geo ogeo; /* Old window attribute */
|
||||||
XRectangle ogeo;
|
Geo split_geo, free_geo; /* Split & Free window attribute */
|
||||||
/* Free window attribute */
|
/* Tile size factors */
|
||||||
XRectangle free_geo;
|
int tilefact[4];
|
||||||
/* For resizehint usage */
|
/* For resizehint usage */
|
||||||
int basew, baseh, incw, inch;
|
int basew, baseh, incw, inch;
|
||||||
int maxw, maxh, minw, minh;
|
int maxw, maxh, minw, minh;
|
||||||
@@ -250,15 +275,18 @@ typedef struct
|
|||||||
BarWindow *bar, *selbar;
|
BarWindow *bar, *selbar;
|
||||||
BarWindow *layout_button;
|
BarWindow *layout_button;
|
||||||
BarWindow *tags_board, *tags[MAXTAG];
|
BarWindow *tags_board, *tags[MAXTAG];
|
||||||
XRectangle geo;
|
Geo geo;
|
||||||
int position;
|
int screen, position;
|
||||||
char *statustext;
|
char *statustext;
|
||||||
Bool need_update;
|
bool need_update;
|
||||||
} InfoBar;
|
} InfoBar;
|
||||||
|
|
||||||
/* Layout Structure */
|
/* Layout Structure */
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
|
uint flags; /* Flags */
|
||||||
|
Client *nc; /* New client needing integration */
|
||||||
|
Client ghost; /* Ghost client to arrange hole in split */
|
||||||
char *symbol;
|
char *symbol;
|
||||||
char *type;
|
char *type;
|
||||||
void (*func)(int screen);
|
void (*func)(int screen);
|
||||||
@@ -269,7 +297,7 @@ typedef struct Systray Systray;
|
|||||||
struct Systray
|
struct Systray
|
||||||
{
|
{
|
||||||
Window win;
|
Window win;
|
||||||
XRectangle geo;
|
Geo geo;
|
||||||
Systray *next, *prev;
|
Systray *next, *prev;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -279,20 +307,15 @@ typedef struct
|
|||||||
char *name;
|
char *name;
|
||||||
char **clients;
|
char **clients;
|
||||||
int nclients;
|
int nclients;
|
||||||
int layers;
|
|
||||||
float mwfact;
|
float mwfact;
|
||||||
int nmaster;
|
int nmaster;
|
||||||
Bool urgent;
|
uint flags;
|
||||||
Bool resizehint;
|
|
||||||
Bool request_update;
|
|
||||||
Bool abovefc;
|
|
||||||
int barpos;
|
int barpos;
|
||||||
int prev_barpos;
|
int prev_barpos;
|
||||||
Layout layout;
|
Layout layout;
|
||||||
uint tagad;
|
uint tagad;
|
||||||
MouseBinding *mouse;
|
MouseBinding *mouse;
|
||||||
int nmouse;
|
int nmouse;
|
||||||
Bool stay_last;
|
|
||||||
} Tag;
|
} Tag;
|
||||||
|
|
||||||
/* Menu Item Struct */
|
/* Menu Item Struct */
|
||||||
@@ -301,7 +324,7 @@ typedef struct
|
|||||||
char *name;
|
char *name;
|
||||||
void (*func)(uicb_t);
|
void (*func)(uicb_t);
|
||||||
uicb_t cmd;
|
uicb_t cmd;
|
||||||
Bool (*check)(uicb_t);
|
bool (*check)(uicb_t);
|
||||||
char *submenu;
|
char *submenu;
|
||||||
} MenuItem;
|
} MenuItem;
|
||||||
|
|
||||||
@@ -314,7 +337,7 @@ typedef struct
|
|||||||
*/
|
*/
|
||||||
char *name;
|
char *name;
|
||||||
/* Placement */
|
/* Placement */
|
||||||
Bool place_at_mouse;
|
bool place_at_mouse;
|
||||||
int align;
|
int align;
|
||||||
int x, y;
|
int x, y;
|
||||||
/* Color */
|
/* Color */
|
||||||
@@ -365,10 +388,10 @@ typedef struct
|
|||||||
char *role;
|
char *role;
|
||||||
int screen;
|
int screen;
|
||||||
int tag;
|
int tag;
|
||||||
Bool free;
|
bool free;
|
||||||
Bool max;
|
bool max;
|
||||||
Bool ignoretags;
|
bool ignoretags;
|
||||||
Bool follow_client;
|
bool follow_client;
|
||||||
} Rule;
|
} Rule;
|
||||||
|
|
||||||
/* Configuration structure */
|
/* Configuration structure */
|
||||||
@@ -379,14 +402,15 @@ typedef struct
|
|||||||
|
|
||||||
/* Misc option */
|
/* Misc option */
|
||||||
char *font;
|
char *font;
|
||||||
|
bool use_xft;
|
||||||
uint opacity;
|
uint opacity;
|
||||||
Bool raisefocus;
|
bool raisefocus;
|
||||||
Bool focus_fmouse;
|
bool focus_fmouse;
|
||||||
Bool focus_fmov;
|
bool focus_fmov;
|
||||||
Bool focus_pclick;
|
bool focus_pclick;
|
||||||
Bool ignore_next_client_rules;
|
bool ignore_next_client_rules;
|
||||||
Bool tagautohide;
|
bool tagautohide;
|
||||||
Bool tagnamecount;
|
bool tagnamecount;
|
||||||
Tag default_tag;
|
Tag default_tag;
|
||||||
uint pad;
|
uint pad;
|
||||||
int status_timing;
|
int status_timing;
|
||||||
@@ -421,7 +445,7 @@ typedef struct
|
|||||||
int height;
|
int height;
|
||||||
MouseBinding *mouse;
|
MouseBinding *mouse;
|
||||||
int nmouse;
|
int nmouse;
|
||||||
Bool selbar;
|
bool selbar;
|
||||||
} bars;
|
} bars;
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
@@ -439,10 +463,10 @@ typedef struct
|
|||||||
} root;
|
} root;
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
Bool set_new_win_master;
|
bool set_new_win_master;
|
||||||
Bool place_at_mouse;
|
bool place_at_mouse;
|
||||||
Bool border_shadow;
|
bool border_shadow;
|
||||||
Bool new_client_get_mouse;
|
bool new_client_get_mouse;
|
||||||
int borderheight;
|
int borderheight;
|
||||||
char *autofree, *automax;
|
char *autofree, *automax;
|
||||||
uint bordernormal;
|
uint bordernormal;
|
||||||
@@ -463,7 +487,7 @@ typedef struct
|
|||||||
char *fg_focus;
|
char *fg_focus;
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
Bool active;
|
bool active;
|
||||||
struct { uint normal, focus; } colors;
|
struct { uint normal, focus; } colors;
|
||||||
} stipple;
|
} stipple;
|
||||||
MouseBinding *mouse;
|
MouseBinding *mouse;
|
||||||
@@ -473,13 +497,13 @@ typedef struct
|
|||||||
} titlebar;
|
} titlebar;
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
Bool bar;
|
bool bar;
|
||||||
Bool tag;
|
bool tag;
|
||||||
Bool layout;
|
bool layout;
|
||||||
} border;
|
} border;
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
Bool active;
|
bool active;
|
||||||
int screen;
|
int screen;
|
||||||
int spacing;
|
int spacing;
|
||||||
} systray;
|
} systray;
|
||||||
@@ -491,14 +515,15 @@ typedef struct
|
|||||||
Launcher *launcher;
|
Launcher *launcher;
|
||||||
Rule *rule;
|
Rule *rule;
|
||||||
int *ntag;
|
int *ntag;
|
||||||
Bool tag_round;
|
bool tag_round;
|
||||||
Bool tag_auto_prev;
|
bool tag_auto_prev;
|
||||||
Bool client_round;
|
bool client_round;
|
||||||
Bool client_auto_center;
|
bool client_auto_center;
|
||||||
Bool client_tile_raise;
|
bool client_tile_raise;
|
||||||
Bool layout_system; /* Switch: False, Menu: True. */
|
bool layout_system; /* Switch: False, Menu: True. */
|
||||||
Bool layout_placement; /* Right (normal): False, Left: True. */
|
bool layout_placement; /* Right (normal): False, Left: True. */
|
||||||
Bool keep_layout_geo;
|
bool keep_layout_geo;
|
||||||
|
bool cfactor_enable_split;
|
||||||
char *tag_expose_name;
|
char *tag_expose_name;
|
||||||
char *expose_layout;
|
char *expose_layout;
|
||||||
char *selected_layout_symbol;
|
char *selected_layout_symbol;
|
||||||
@@ -512,27 +537,37 @@ typedef struct
|
|||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
uint x, y, w, h;
|
int as, de, width, height;
|
||||||
|
#ifdef HAVE_XFT
|
||||||
|
XftFont *font;
|
||||||
|
#endif /* HAVE_XFT */
|
||||||
|
XFontSet fontset;
|
||||||
|
} FontStruct;
|
||||||
|
|
||||||
|
/* status.c util struct */
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
int x, y, w, h;
|
||||||
uint color;
|
uint color;
|
||||||
} StatusRec;
|
} StatusRec;
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
uint x, y, w, h;
|
int x, y, w, h;
|
||||||
uint color;
|
uint color;
|
||||||
char data[512];
|
char data[512];
|
||||||
} StatusGraph;
|
} StatusGraph;
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
uint x, y;
|
int x, y;
|
||||||
char color[8];
|
char color[8];
|
||||||
char text[512];
|
char text[512];
|
||||||
} StatusText;
|
} StatusText;
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
uint x, y, w, h;
|
int x, y, w, h;
|
||||||
char name[512];
|
char name[512];
|
||||||
} ImageAttr;
|
} ImageAttr;
|
||||||
|
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
|
|
||||||
#define TRAY_DWIDTH (infobar[conf.systray.screen].bar->geo.height + conf.systray.spacing)
|
#define TRAY_DWIDTH (infobar[conf.systray.screen].bar->geo.height + conf.systray.spacing)
|
||||||
|
|
||||||
Bool
|
bool
|
||||||
systray_acquire(void)
|
systray_acquire(void)
|
||||||
{
|
{
|
||||||
XSetWindowAttributes wattr;
|
XSetWindowAttributes wattr;
|
||||||
|
|||||||
154
src/tag.c
154
src/tag.c
@@ -39,7 +39,7 @@ void
|
|||||||
tag_set(int tag)
|
tag_set(int tag)
|
||||||
{
|
{
|
||||||
Client *c;
|
Client *c;
|
||||||
Bool al = False;
|
bool al = False;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
if(tag < 0 || tag > MAXTAG)
|
if(tag < 0 || tag > MAXTAG)
|
||||||
@@ -81,10 +81,10 @@ tag_set(int tag)
|
|||||||
/* Check if a layout update is needed with additional tags */
|
/* Check if a layout update is needed with additional tags */
|
||||||
if(tags[selscreen][seltag[selscreen]].tagad)
|
if(tags[selscreen][seltag[selscreen]].tagad)
|
||||||
al = True;
|
al = True;
|
||||||
else if(tags[selscreen][seltag[selscreen]].request_update)
|
else if(tags[selscreen][seltag[selscreen]].flags & RequestUpdateFlag)
|
||||||
{
|
{
|
||||||
al = True;
|
al = True;
|
||||||
tags[selscreen][seltag[selscreen]].request_update = False;
|
tags[selscreen][seltag[selscreen]].flags &= ~RequestUpdateFlag;
|
||||||
}
|
}
|
||||||
|
|
||||||
for(i = 1; i < conf.ntag[selscreen] + 1; ++i)
|
for(i = 1; i < conf.ntag[selscreen] + 1; ++i)
|
||||||
@@ -104,10 +104,10 @@ tag_set(int tag)
|
|||||||
|
|
||||||
arrange(selscreen, al);
|
arrange(selscreen, al);
|
||||||
|
|
||||||
if(tags[selscreen][tag].request_update)
|
if(tags[selscreen][tag].flags & RequestUpdateFlag)
|
||||||
{
|
{
|
||||||
tags[selscreen][seltag[selscreen]].layout.func(selscreen);
|
layout_func(selscreen, tag);
|
||||||
tags[selscreen][tag].request_update = False;
|
tags[selscreen][tag].flags &= ~RequestUpdateFlag;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* To focus selected client of the via focusontag option */
|
/* To focus selected client of the via focusontag option */
|
||||||
@@ -133,26 +133,43 @@ tag_set(int tag)
|
|||||||
void
|
void
|
||||||
tag_transfert(Client *c, int tag)
|
tag_transfert(Client *c, int tag)
|
||||||
{
|
{
|
||||||
screen_get_sel();
|
int s;
|
||||||
|
|
||||||
CHECK(c);
|
CHECK(c);
|
||||||
|
|
||||||
|
screen_get_sel();
|
||||||
|
|
||||||
if(tag <= 0)
|
if(tag <= 0)
|
||||||
tag = 1;
|
tag = 1;
|
||||||
|
|
||||||
if(tag > conf.ntag[selscreen])
|
if(tag > conf.ntag[selscreen]
|
||||||
|
|| (c->tag == tag && c->screen == selscreen))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
s = c->screen;
|
||||||
|
|
||||||
|
tags[c->screen][c->tag].flags |= CleanFactFlag;
|
||||||
|
cfactor_clean(c);
|
||||||
|
|
||||||
|
/* Case of tag in split mode */
|
||||||
|
if(tags[c->screen][c->tag].flags & SplitFlag)
|
||||||
|
split_arrange_closed(c);
|
||||||
|
|
||||||
|
if(tags[selscreen][tag].flags & SplitFlag)
|
||||||
|
split_client_integrate(c, NULL, selscreen, tag);
|
||||||
|
|
||||||
|
/* Set new location */
|
||||||
c->tag = tag;
|
c->tag = tag;
|
||||||
c->screen = selscreen;
|
c->screen = selscreen;
|
||||||
|
|
||||||
|
if(s != c->screen)
|
||||||
|
arrange(s, True);
|
||||||
arrange(c->screen, True);
|
arrange(c->screen, True);
|
||||||
|
|
||||||
client_focus_next(c);
|
client_focus_next(c);
|
||||||
|
|
||||||
client_update_attributes(c);
|
client_update_attributes(c);
|
||||||
|
|
||||||
tags[c->screen][tag].request_update = True;
|
tags[c->screen][tag].flags |= RequestUpdateFlag;
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -207,9 +224,9 @@ uicb_tag_prev(uicb_t cmd)
|
|||||||
void
|
void
|
||||||
uicb_tag_next_visible(uicb_t cmd)
|
uicb_tag_next_visible(uicb_t cmd)
|
||||||
{
|
{
|
||||||
int i, tag;
|
int tag;
|
||||||
Client *c;
|
Client *c;
|
||||||
Bool is_occupied[MAXTAG];
|
uint occupied = 0;
|
||||||
(void)cmd;
|
(void)cmd;
|
||||||
|
|
||||||
screen_get_sel();
|
screen_get_sel();
|
||||||
@@ -220,15 +237,12 @@ uicb_tag_next_visible(uicb_t cmd)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
for(i = 0; i < MAXTAG; i++)
|
|
||||||
is_occupied[i] = False;
|
|
||||||
|
|
||||||
for(c = clients; c; c = c->next)
|
for(c = clients; c; c = c->next)
|
||||||
if(c->screen == selscreen)
|
if(c->screen == selscreen)
|
||||||
is_occupied[c->tag] = True;
|
occupied |= TagFlag(c->tag);
|
||||||
|
|
||||||
for(tag = seltag[selscreen] + 1; tag < conf.ntag[selscreen] + 1; ++tag)
|
for(tag = seltag[selscreen] + 1; tag < conf.ntag[selscreen] + 1; ++tag)
|
||||||
if(is_occupied[tag])
|
if(occupied & TagFlag(tag))
|
||||||
{
|
{
|
||||||
tag_set(tag);
|
tag_set(tag);
|
||||||
return;
|
return;
|
||||||
@@ -236,7 +250,7 @@ uicb_tag_next_visible(uicb_t cmd)
|
|||||||
|
|
||||||
if(conf.tag_round)
|
if(conf.tag_round)
|
||||||
for(tag = 0; tag < seltag[selscreen]; ++tag)
|
for(tag = 0; tag < seltag[selscreen]; ++tag)
|
||||||
if(is_occupied[tag])
|
if(occupied & TagFlag(tag))
|
||||||
{
|
{
|
||||||
tag_set(tag);
|
tag_set(tag);
|
||||||
return;
|
return;
|
||||||
@@ -251,9 +265,9 @@ uicb_tag_next_visible(uicb_t cmd)
|
|||||||
void
|
void
|
||||||
uicb_tag_prev_visible(uicb_t cmd)
|
uicb_tag_prev_visible(uicb_t cmd)
|
||||||
{
|
{
|
||||||
int i, tag;
|
int tag;
|
||||||
Client *c;
|
Client *c;
|
||||||
Bool is_occupied[MAXTAG];
|
uint occupied = 0;
|
||||||
(void)cmd;
|
(void)cmd;
|
||||||
|
|
||||||
screen_get_sel();
|
screen_get_sel();
|
||||||
@@ -264,15 +278,12 @@ uicb_tag_prev_visible(uicb_t cmd)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
for(i = 0; i < MAXTAG; i++)
|
|
||||||
is_occupied[i] = False;
|
|
||||||
|
|
||||||
for(c = clients; c; c = c->next)
|
for(c = clients; c; c = c->next)
|
||||||
if(c->screen == selscreen)
|
if(c->screen == selscreen)
|
||||||
is_occupied[c->tag] = True;
|
occupied |= TagFlag(c->tag);
|
||||||
|
|
||||||
for(tag = seltag[selscreen] - 1; tag >= 0; --tag)
|
for(tag = seltag[selscreen] - 1; tag >= 0; --tag)
|
||||||
if(is_occupied[tag])
|
if(occupied & TagFlag(tag))
|
||||||
{
|
{
|
||||||
tag_set(tag);
|
tag_set(tag);
|
||||||
return;
|
return;
|
||||||
@@ -280,7 +291,7 @@ uicb_tag_prev_visible(uicb_t cmd)
|
|||||||
|
|
||||||
if(conf.tag_round)
|
if(conf.tag_round)
|
||||||
for(tag = conf.ntag[selscreen]; tag > seltag[selscreen]; --tag)
|
for(tag = conf.ntag[selscreen]; tag > seltag[selscreen]; --tag)
|
||||||
if(is_occupied[tag])
|
if(occupied & TagFlag(tag))
|
||||||
{
|
{
|
||||||
tag_set(tag);
|
tag_set(tag);
|
||||||
return;
|
return;
|
||||||
@@ -312,9 +323,9 @@ remove_old_last_tag(int selscreen)
|
|||||||
int i;
|
int i;
|
||||||
for(i = 0; i <= conf.ntag[selscreen]; i++)
|
for(i = 0; i <= conf.ntag[selscreen]; i++)
|
||||||
{
|
{
|
||||||
if(tags[selscreen][i].stay_last)
|
if(tags[selscreen][i].flags & StayLastFlag)
|
||||||
{
|
{
|
||||||
tags[selscreen][i].stay_last = False;
|
tags[selscreen][i].flags &= ~StayLastFlag;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -333,8 +344,7 @@ tag_swap(int s, int t1, int t2)
|
|||||||
Client *c;
|
Client *c;
|
||||||
Tag t;
|
Tag t;
|
||||||
|
|
||||||
if(t1 > conf.ntag[s] || t1 < 1
|
if(t1 == t2 || (t1 & t2) < 1 || (t1 | t2) > conf.ntag[s])
|
||||||
|| t2 > conf.ntag[s] || t2 < 1 || t1 == t2)
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
t = tags[s][t1];
|
t = tags[s][t1];
|
||||||
@@ -349,7 +359,7 @@ tag_swap(int s, int t1, int t2)
|
|||||||
c->tag = t1;
|
c->tag = t1;
|
||||||
}
|
}
|
||||||
|
|
||||||
infobar_update_taglist(s);
|
infobar_update_taglist(&infobar[s]);
|
||||||
tag_set(t2);
|
tag_set(t2);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
@@ -361,25 +371,24 @@ tag_swap(int s, int t1, int t2)
|
|||||||
void
|
void
|
||||||
uicb_tag_stay_last(uicb_t cmd)
|
uicb_tag_stay_last(uicb_t cmd)
|
||||||
{
|
{
|
||||||
|
int i;
|
||||||
|
|
||||||
(void)cmd;
|
(void)cmd;
|
||||||
|
|
||||||
screen_get_sel();
|
screen_get_sel();
|
||||||
|
|
||||||
if(tags[selscreen][seltag[selscreen]].stay_last)
|
if(tags[selscreen][seltag[selscreen]].flags & StayLastFlag)
|
||||||
tags[selscreen][seltag[selscreen]].stay_last = False;
|
tags[selscreen][seltag[selscreen]].flags &= ~StayLastFlag;
|
||||||
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
int i;
|
|
||||||
remove_old_last_tag(selscreen);
|
remove_old_last_tag(selscreen);
|
||||||
|
|
||||||
for(i = seltag[selscreen]; i <= conf.ntag[selscreen]; i++)
|
for(i = seltag[selscreen]; i <= conf.ntag[selscreen]; i++)
|
||||||
{
|
|
||||||
tag_swap(selscreen, seltag[selscreen], seltag[selscreen] + 1);
|
tag_swap(selscreen, seltag[selscreen], seltag[selscreen] + 1);
|
||||||
}
|
|
||||||
|
|
||||||
tag_set(conf.ntag[selscreen]);
|
tag_set(conf.ntag[selscreen]);
|
||||||
tags[selscreen][seltag[selscreen]].stay_last = True;
|
tags[selscreen][seltag[selscreen]].flags |= StayLastFlag;
|
||||||
arrange(selscreen, True);
|
arrange(selscreen, True);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -464,7 +473,6 @@ void
|
|||||||
uicb_tag_urgent(uicb_t cmd)
|
uicb_tag_urgent(uicb_t cmd)
|
||||||
{
|
{
|
||||||
Client *c;
|
Client *c;
|
||||||
Bool b = False;
|
|
||||||
|
|
||||||
(void)cmd;
|
(void)cmd;
|
||||||
|
|
||||||
@@ -472,17 +480,13 @@ uicb_tag_urgent(uicb_t cmd)
|
|||||||
for(c = clients; c; c = c->next)
|
for(c = clients; c; c = c->next)
|
||||||
if(c->flags & UrgentFlag)
|
if(c->flags & UrgentFlag)
|
||||||
{
|
{
|
||||||
b = True;
|
screen_set_sel(c->screen);
|
||||||
|
tag_set(c->tag);
|
||||||
|
client_focus(c);
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!b)
|
|
||||||
return;
|
|
||||||
|
|
||||||
screen_set_sel(c->screen);
|
|
||||||
tag_set(c->tag);
|
|
||||||
client_focus(c);
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -494,12 +498,17 @@ uicb_tag_urgent(uicb_t cmd)
|
|||||||
void
|
void
|
||||||
tag_additional(int sc, int tag, int adtag)
|
tag_additional(int sc, int tag, int adtag)
|
||||||
{
|
{
|
||||||
if(tag < 0 || tag > conf.ntag[sc]
|
if(tag < 0 || (tag | adtag) > conf.ntag[sc] + 1
|
||||||
|| adtag < 1 || adtag > conf.ntag[sc] || adtag == seltag[sc])
|
|| adtag < 1 || adtag == seltag[sc])
|
||||||
return;
|
return;
|
||||||
|
|
||||||
tags[sc][tag].tagad ^= TagFlag(adtag);
|
tags[sc][tag].flags &= ~SplitFlag;
|
||||||
tags[sc][adtag].request_update = True;
|
tags[sc][tag].tagad ^= TagFlag(adtag);
|
||||||
|
tags[sc][adtag].flags |= RequestUpdateFlag;
|
||||||
|
tags[sc][tag].flags |= CleanFactFlag;
|
||||||
|
tags[sc][adtag].flags |= CleanFactFlag;
|
||||||
|
tags[sc][adtag].flags &= ~SplitFlag;
|
||||||
|
|
||||||
arrange(sc, True);
|
arrange(sc, True);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
@@ -541,14 +550,10 @@ uicb_tag_swap_next(uicb_t cmd)
|
|||||||
screen_get_sel();
|
screen_get_sel();
|
||||||
|
|
||||||
/* Check if the next one does have the stay_last bool */
|
/* Check if the next one does have the stay_last bool */
|
||||||
if(!tags[selscreen][conf.ntag[selscreen]].stay_last)
|
if(!(tags[selscreen][conf.ntag[selscreen]].flags & StayLastFlag))
|
||||||
{
|
|
||||||
tag_swap(selscreen, seltag[selscreen], seltag[selscreen] + 1);
|
tag_swap(selscreen, seltag[selscreen], seltag[selscreen] + 1);
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
|
||||||
warnx("The next tag is set to always stay the last one");
|
warnx("The next tag is set to always stay the last one");
|
||||||
}
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -601,25 +606,24 @@ tag_new(int s, char *name)
|
|||||||
displayedName = xstrdup(name);
|
displayedName = xstrdup(name);
|
||||||
|
|
||||||
|
|
||||||
Tag t = { displayedName, NULL, 0, 0,
|
Tag t = { displayedName, NULL, 0,
|
||||||
conf.default_tag.mwfact, conf.default_tag.nmaster,
|
conf.default_tag.mwfact, conf.default_tag.nmaster, conf.default_tag.flags,
|
||||||
False, conf.default_tag.resizehint, False, False,
|
conf.default_tag.barpos, conf.default_tag.barpos,
|
||||||
conf.default_tag.barpos, conf.default_tag.barpos, conf.default_tag.layout,
|
conf.default_tag.layout, 0, NULL, 0 };
|
||||||
0, NULL, 0, False };
|
|
||||||
|
|
||||||
tags[s][conf.ntag[s]] = t;
|
tags[s][conf.ntag[s]] = t;
|
||||||
|
|
||||||
/* For stay_last_tag */
|
/* For stay_last_tag */
|
||||||
if(tags[s][conf.ntag[s]-1].stay_last)
|
if(tags[s][conf.ntag[s] - 1].flags & StayLastFlag)
|
||||||
{
|
{
|
||||||
tag_swap(s, conf.ntag[s], conf.ntag[s]-1);
|
tag_swap(s, conf.ntag[s], conf.ntag[s] - 1);
|
||||||
goToTag = conf.ntag[s]-1;
|
goToTag = conf.ntag[s] - 1;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
goToTag = conf.ntag[s];
|
goToTag = conf.ntag[s];
|
||||||
|
|
||||||
infobar_update_taglist(s);
|
infobar_update_taglist(&infobar[s]);
|
||||||
infobar_draw(s);
|
infobar_draw(&infobar[s]);
|
||||||
tag_set(goToTag);
|
tag_set(goToTag);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
@@ -679,8 +683,8 @@ tag_delete(int s, int tag)
|
|||||||
}
|
}
|
||||||
|
|
||||||
infobar[s].need_update = True;
|
infobar[s].need_update = True;
|
||||||
infobar_update_taglist(s);
|
infobar_update_taglist(&infobar[s]);
|
||||||
infobar_draw(s);
|
infobar_draw(&infobar[s]);
|
||||||
|
|
||||||
if(tag == seltag[s])
|
if(tag == seltag[s])
|
||||||
tag_set(tag <= conf.ntag[s] ? tag : conf.ntag[s]);
|
tag_set(tag <= conf.ntag[s] ? tag : conf.ntag[s]);
|
||||||
@@ -729,8 +733,8 @@ uicb_tag_rename(uicb_t cmd)
|
|||||||
*/
|
*/
|
||||||
strncpy(str, cmd, len);
|
strncpy(str, cmd, len);
|
||||||
|
|
||||||
infobar_update_taglist(selscreen);
|
infobar_update_taglist(&infobar[selscreen]);
|
||||||
infobar_draw(selscreen);
|
infobar_draw(&infobar[selscreen]);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -753,7 +757,7 @@ uicb_tag_toggle_expose(uicb_t cmd)
|
|||||||
tag_delete(selscreen, i);
|
tag_delete(selscreen, i);
|
||||||
|
|
||||||
for(j = 0; j < conf.ntag[selscreen]; j++)
|
for(j = 0; j < conf.ntag[selscreen]; j++)
|
||||||
tags[selscreen][j].request_update = True;
|
tags[selscreen][j].flags |= RequestUpdateFlag;
|
||||||
|
|
||||||
arrange(selscreen, True);
|
arrange(selscreen, True);
|
||||||
|
|
||||||
@@ -764,19 +768,13 @@ uicb_tag_toggle_expose(uicb_t cmd)
|
|||||||
tag_new(selscreen, conf.tag_expose_name);
|
tag_new(selscreen, conf.tag_expose_name);
|
||||||
|
|
||||||
for(i = 0; i < conf.nlayout; ++i)
|
for(i = 0; i < conf.nlayout; ++i)
|
||||||
{
|
|
||||||
if(strcmp(conf.expose_layout, conf.layout[i].type) == 0)
|
if(strcmp(conf.expose_layout, conf.layout[i].type) == 0)
|
||||||
{
|
tags[selscreen][conf.ntag[selscreen]].layout = conf.layout[i];
|
||||||
tags[selscreen][conf.ntag[selscreen]].layout = conf.layout[i];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for(i = 1; i < conf.ntag[selscreen]; ++i)
|
for(i = 1; i < conf.ntag[selscreen]; ++i)
|
||||||
{
|
|
||||||
tags[selscreen][conf.ntag[selscreen]].tagad ^= TagFlag(i);
|
tags[selscreen][conf.ntag[selscreen]].tagad ^= TagFlag(i);
|
||||||
}
|
|
||||||
|
|
||||||
tags[selscreen][conf.ntag[selscreen]].request_update = True;
|
tags[selscreen][conf.ntag[selscreen]].flags |= RequestUpdateFlag;
|
||||||
arrange(selscreen, True);
|
arrange(selscreen, True);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|||||||
28
src/util.c
28
src/util.c
@@ -166,7 +166,7 @@ name_to_func(char *name, const func_name_list_t *l)
|
|||||||
int i;
|
int i;
|
||||||
|
|
||||||
if(name)
|
if(name)
|
||||||
for(i = 0; l[i].name ; ++i)
|
for(i = 0; l[i].name; ++i)
|
||||||
if(!strcmp(name, l[i].name))
|
if(!strcmp(name, l[i].name))
|
||||||
return l[i].func;
|
return l[i].func;
|
||||||
|
|
||||||
@@ -279,32 +279,6 @@ uicb_spawn(uicb_t cmd)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef HAVE_IMLIB
|
|
||||||
/** Check images blocks in str and return properties
|
|
||||||
* --> \i[x;y;w;h;name]\
|
|
||||||
*\param im ImageAttr pointer, image properties
|
|
||||||
*\param str String
|
|
||||||
*\return n Lenght of i
|
|
||||||
*/
|
|
||||||
int
|
|
||||||
parse_image_block(ImageAttr *im, char *str)
|
|
||||||
{
|
|
||||||
char as;
|
|
||||||
int n, i, j, k;
|
|
||||||
|
|
||||||
for(i = j = n = 0; i < (int)strlen(str); ++i, ++j)
|
|
||||||
if(sscanf(&str[i], "\\i[%d;%d;%d;%d;%512[^]]]%c", &im[n].x, &im[n].y, &im[n].w, &im[n].h, im[n].name, &as) == 6
|
|
||||||
&& as == '\\')
|
|
||||||
for(++n, ++i, --j; str[i] != as || str[i - 1] != ']'; ++i);
|
|
||||||
else if(j != i)
|
|
||||||
str[j] = str[i];
|
|
||||||
|
|
||||||
for(k = j; k < i; str[k++] = 0);
|
|
||||||
|
|
||||||
return n;
|
|
||||||
}
|
|
||||||
#endif /* HAVE_IMLIB */
|
|
||||||
|
|
||||||
char*
|
char*
|
||||||
clean_value(char *str)
|
clean_value(char *str)
|
||||||
{
|
{
|
||||||
|
|||||||
143
src/viwmfs.c
143
src/viwmfs.c
@@ -1,143 +0,0 @@
|
|||||||
/*
|
|
||||||
* viwmfs.c
|
|
||||||
* Copyright © 2008, 2009 Martin Duquesnoy <xorg62@gmail.com>
|
|
||||||
* All rights reserved.
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without
|
|
||||||
* modification, are permitted provided that the following conditions are
|
|
||||||
* met:
|
|
||||||
*
|
|
||||||
* * Redistributions of source code must retain the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer.
|
|
||||||
* * Redistributions in binary form must reproduce the above
|
|
||||||
* copyright notice, this list of conditions and the following disclaimer
|
|
||||||
* in the documentation and/or other materials provided with the
|
|
||||||
* distribution.
|
|
||||||
* * Neither the name of the nor the names of its
|
|
||||||
* contributors may be used to endorse or promote products derived from
|
|
||||||
* this software without specific prior written permission.
|
|
||||||
*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "wmfs.h"
|
|
||||||
|
|
||||||
static vicmd_to_uicb vicmd[] =
|
|
||||||
{
|
|
||||||
{"r", "reload"},
|
|
||||||
{"q", "quit"},
|
|
||||||
{"t", "tag"},
|
|
||||||
{"tn", "tag_next"},
|
|
||||||
{"tp", "tag_prev"},
|
|
||||||
{"l", "set_layout"},
|
|
||||||
{"layout", "set_layout"},
|
|
||||||
{"ln", "layout_next"},
|
|
||||||
{"lp", "layout_prev"},
|
|
||||||
{"s", "screen_select"},
|
|
||||||
{"screen", "screen_select"},
|
|
||||||
{"sn", "screen_next"},
|
|
||||||
{"sp", "screen_prev"},
|
|
||||||
{"cc", "client_kill"},
|
|
||||||
{"ct", "tag_transfert"},
|
|
||||||
{"ctn", "tag_transfert_next"},
|
|
||||||
{"ctp", "tag_transfert_prev"},
|
|
||||||
{"cn", "client_next"},
|
|
||||||
{"cp", "client_prev"},
|
|
||||||
{"csn", "client_swap_next"},
|
|
||||||
{"csp", "client_swap_prev"},
|
|
||||||
{"mwf", "set_mwfact"},
|
|
||||||
{"mwfact", "set_mwfact"},
|
|
||||||
{"nmaster", "set_nmaster"},
|
|
||||||
{"tm", "toggle_max"},
|
|
||||||
{"tf", "toggle_free"},
|
|
||||||
};
|
|
||||||
|
|
||||||
static void
|
|
||||||
viwmfs_help(void)
|
|
||||||
{
|
|
||||||
size_t i;
|
|
||||||
char s[20];
|
|
||||||
|
|
||||||
printf("ViWMFS commands list:\n");
|
|
||||||
|
|
||||||
for(i = 0; i < LEN(vicmd); ++i)
|
|
||||||
{
|
|
||||||
memset(s, ' ', sizeof(s));
|
|
||||||
|
|
||||||
s[15 - strlen(vicmd[i].cmd)] = '\0';
|
|
||||||
|
|
||||||
printf(" :%s%s %s\n", vicmd[i].cmd, s, vicmd[i].uicb);
|
|
||||||
}
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
viwmfs(int argc, char **argv)
|
|
||||||
{
|
|
||||||
size_t i;
|
|
||||||
char *cmd, str[256] = { 0 };
|
|
||||||
Bool e;
|
|
||||||
|
|
||||||
if(!argc)
|
|
||||||
return;
|
|
||||||
|
|
||||||
if(argc > 3)
|
|
||||||
{
|
|
||||||
for(i = 2; i < (size_t)argc; ++i)
|
|
||||||
{
|
|
||||||
strcat(str, argv[i]);
|
|
||||||
|
|
||||||
if(*(str + strlen(str) - 1) != ':')
|
|
||||||
strcat(str, " ");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
strncpy(str, argv[2], sizeof(str));
|
|
||||||
|
|
||||||
if(!strcmp(str, "help"))
|
|
||||||
{
|
|
||||||
viwmfs_help();
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if(*str == ':')
|
|
||||||
{
|
|
||||||
for(i = 0; i < strlen(str); str[i] = str[i + 1], ++i);
|
|
||||||
|
|
||||||
cmd = xstrdup(str);
|
|
||||||
|
|
||||||
for(i = 0; cmd[i] && cmd[i] != ' '; ++i);
|
|
||||||
cmd[i] = '\0';
|
|
||||||
|
|
||||||
for(i = 0; i < LEN(vicmd); ++i)
|
|
||||||
if(!strncmp(cmd, vicmd[i].cmd, strlen(cmd)))
|
|
||||||
{
|
|
||||||
exec_uicb_function(vicmd[i].uicb, clean_value(str + strlen(cmd)));
|
|
||||||
e = True;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* For uicb function with normal name specified */
|
|
||||||
if(!e)
|
|
||||||
{
|
|
||||||
if(!strcmp(str, "h") || !strcmp(str, "help"))
|
|
||||||
viwmfs_help();
|
|
||||||
else
|
|
||||||
exec_uicb_function(cmd, str + strlen(cmd));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
58
src/wmfs.c
58
src/wmfs.c
@@ -32,7 +32,7 @@
|
|||||||
|
|
||||||
#include "wmfs.h"
|
#include "wmfs.h"
|
||||||
|
|
||||||
static volatile Bool exiting = False, sig_chld = False;
|
static volatile bool exiting = False, sig_chld = False;
|
||||||
static pthread_mutex_t mtx = PTHREAD_MUTEX_INITIALIZER;
|
static pthread_mutex_t mtx = PTHREAD_MUTEX_INITIALIZER;
|
||||||
|
|
||||||
int
|
int
|
||||||
@@ -98,7 +98,13 @@ quit(void)
|
|||||||
|
|
||||||
systray_freeicons();
|
systray_freeicons();
|
||||||
|
|
||||||
XftFontClose(dpy, font);
|
#ifdef HAVE_XFT
|
||||||
|
if(conf.use_xft)
|
||||||
|
XftFontClose(dpy, font.font);
|
||||||
|
else
|
||||||
|
#endif /* HAVE_XFT */
|
||||||
|
XFreeFontSet(dpy, font.fontset);
|
||||||
|
|
||||||
for(i = 0; i < CurLast; ++i)
|
for(i = 0; i < CurLast; ++i)
|
||||||
XFreeCursor(dpy, cursor[i]);
|
XFreeCursor(dpy, cursor[i]);
|
||||||
XFreeGC(dpy, gc_stipple);
|
XFreeGC(dpy, gc_stipple);
|
||||||
@@ -135,6 +141,8 @@ quit(void)
|
|||||||
XSync(dpy, False);
|
XSync(dpy, False);
|
||||||
XCloseDisplay(dpy);
|
XCloseDisplay(dpy);
|
||||||
|
|
||||||
|
free(event_handle);
|
||||||
|
|
||||||
/* kill status script */
|
/* kill status script */
|
||||||
if (conf.status_pid != (pid_t)-1)
|
if (conf.status_pid != (pid_t)-1)
|
||||||
kill(conf.status_pid, SIGTERM);
|
kill(conf.status_pid, SIGTERM);
|
||||||
@@ -190,25 +198,26 @@ mainloop(void)
|
|||||||
XEvent ev;
|
XEvent ev;
|
||||||
pthread_t th_status;
|
pthread_t th_status;
|
||||||
|
|
||||||
if (estatus && conf.status_timing == 0)
|
if(estatus && !conf.status_timing)
|
||||||
conf.status_pid = spawn(conf.status_path);
|
conf.status_pid = spawn(conf.status_path);
|
||||||
else if (estatus && pthread_create(&th_status, NULL, thread_status, NULL) != 0) {
|
else if(estatus && pthread_create(&th_status, NULL, thread_status, NULL) != 0)
|
||||||
|
{
|
||||||
warnx("pthread_create");
|
warnx("pthread_create");
|
||||||
estatus = False;
|
estatus = False;
|
||||||
}
|
}
|
||||||
|
|
||||||
while (!exiting && !XNextEvent(dpy, &ev)) {
|
while(!exiting && !XNextEvent(dpy, &ev))
|
||||||
getevent(ev);
|
{
|
||||||
|
HANDLE_EVENT(&ev);
|
||||||
wait_childs_and_status();
|
wait_childs_and_status();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (estatus)
|
if(estatus)
|
||||||
pthread_join(th_status, NULL);
|
pthread_join(th_status, NULL);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/** Set the exiting variable to True
|
/** Set the exiting variable to True
|
||||||
* for stop the main loop
|
* for stop the main loop
|
||||||
* \param cmd unused uicb_t
|
* \param cmd unused uicb_t
|
||||||
@@ -232,7 +241,7 @@ scan(void)
|
|||||||
XWindowAttributes wa;
|
XWindowAttributes wa;
|
||||||
Window usl, usl2, *w = NULL;
|
Window usl, usl2, *w = NULL;
|
||||||
Atom rt;
|
Atom rt;
|
||||||
int s, rf, tag = -1, screen = -1, free = -1, i;
|
int s, rf, tag = -1, screen = -1, flags = -1, i;
|
||||||
ulong ir, il;
|
ulong ir, il;
|
||||||
uchar *ret;
|
uchar *ret;
|
||||||
Client *c;
|
Client *c;
|
||||||
@@ -260,10 +269,10 @@ scan(void)
|
|||||||
XFree(ret);
|
XFree(ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(XGetWindowProperty(dpy, w[i], ATOM("_WMFS_ISFREE"), 0, 32,
|
if(XGetWindowProperty(dpy, w[i], ATOM("_WMFS_FLAGS"), 0, 32,
|
||||||
False, XA_CARDINAL, &rt, &rf, &ir, &il, &ret) == Success && ret)
|
False, XA_CARDINAL, &rt, &rf, &ir, &il, &ret) == Success && ret)
|
||||||
{
|
{
|
||||||
free = *ret;
|
flags = *ret;
|
||||||
XFree(ret);
|
XFree(ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -273,8 +282,8 @@ scan(void)
|
|||||||
c->tag = tag;
|
c->tag = tag;
|
||||||
if(screen != -1 && screen <= s - 1)
|
if(screen != -1 && screen <= s - 1)
|
||||||
c->screen = screen;
|
c->screen = screen;
|
||||||
if(free != -1)
|
if(flags != -1)
|
||||||
c->flags |= (free) ? FreeFlag : 0;
|
c->flags = flags;
|
||||||
|
|
||||||
client_update_attributes(c);
|
client_update_attributes(c);
|
||||||
}
|
}
|
||||||
@@ -285,7 +294,7 @@ scan(void)
|
|||||||
{
|
{
|
||||||
if(c->tag > (uint)conf.ntag[c->screen])
|
if(c->tag > (uint)conf.ntag[c->screen])
|
||||||
c->tag = conf.ntag[c->screen];
|
c->tag = conf.ntag[c->screen];
|
||||||
tags[c->screen][c->tag].request_update = True;
|
tags[c->screen][c->tag].flags |= RequestUpdateFlag;
|
||||||
}
|
}
|
||||||
|
|
||||||
for(i = 0; i < s; ++i)
|
for(i = 0; i < s; ++i)
|
||||||
@@ -317,7 +326,7 @@ uicb_reload(uicb_t cmd)
|
|||||||
execute when wmfs will be already running).
|
execute when wmfs will be already running).
|
||||||
\return False if wmfs is not running
|
\return False if wmfs is not running
|
||||||
*/
|
*/
|
||||||
Bool
|
bool
|
||||||
check_wmfs_running(void)
|
check_wmfs_running(void)
|
||||||
{
|
{
|
||||||
Atom rt;
|
Atom rt;
|
||||||
@@ -447,7 +456,7 @@ int
|
|||||||
main(int argc, char **argv)
|
main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
char *ol = "csgVS";
|
char *ol = "csS";
|
||||||
extern char *optarg;
|
extern char *optarg;
|
||||||
extern int optind;
|
extern int optind;
|
||||||
struct sigaction sa;
|
struct sigaction sa;
|
||||||
@@ -456,7 +465,7 @@ main(int argc, char **argv)
|
|||||||
all_argv = argv;
|
all_argv = argv;
|
||||||
sprintf(conf.confpath, "%s/"DEF_CONF, getenv("HOME"));
|
sprintf(conf.confpath, "%s/"DEF_CONF, getenv("HOME"));
|
||||||
|
|
||||||
while((i = getopt(argc, argv, "hviSc:s:g:C:V:")) != -1)
|
while((i = getopt(argc, argv, "hviSc:s:C:")) != -1)
|
||||||
{
|
{
|
||||||
|
|
||||||
/* For options who need WMFS running */
|
/* For options who need WMFS running */
|
||||||
@@ -470,9 +479,7 @@ main(int argc, char **argv)
|
|||||||
printf("usage: %s [-ihvS] [-C <file>] [-c <uicb function> <cmd> ] [-g <argument>] [-s <screen_num> <string>] [-V <viwmfs cmd]\n"
|
printf("usage: %s [-ihvS] [-C <file>] [-c <uicb function> <cmd> ] [-g <argument>] [-s <screen_num> <string>] [-V <viwmfs cmd]\n"
|
||||||
" -C <file> Load a configuration file\n"
|
" -C <file> Load a configuration file\n"
|
||||||
" -c <uicb_function> <cmd> Execute an uicb function to control WMFS\n"
|
" -c <uicb_function> <cmd> Execute an uicb function to control WMFS\n"
|
||||||
" -g <argument> Show information about wmfs status\n"
|
|
||||||
" -s <screen_num> <string> Set the bar(s) statustext\n"
|
" -s <screen_num> <string> Set the bar(s) statustext\n"
|
||||||
" -V <viwmfs cmd> Manage WMFS with vi-like command\n"
|
|
||||||
" -S Update status script\n"
|
" -S Update status script\n"
|
||||||
" -h Show this page\n"
|
" -h Show this page\n"
|
||||||
" -i Show informations\n"
|
" -i Show informations\n"
|
||||||
@@ -486,7 +493,7 @@ main(int argc, char **argv)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 'v':
|
case 'v':
|
||||||
printf("WMFS "WMFS_VERSION"\n");
|
printf("wmfs"WMFS_VERSION"\n");
|
||||||
exit(EXIT_SUCCESS);
|
exit(EXIT_SUCCESS);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@@ -514,17 +521,6 @@ main(int argc, char **argv)
|
|||||||
XCloseDisplay(dpy);
|
XCloseDisplay(dpy);
|
||||||
exit(EXIT_SUCCESS);
|
exit(EXIT_SUCCESS);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'g':
|
|
||||||
getinfo(optarg);
|
|
||||||
XCloseDisplay(dpy);
|
|
||||||
exit(EXIT_SUCCESS);
|
|
||||||
break;
|
|
||||||
case 'V':
|
|
||||||
viwmfs(argc, argv);
|
|
||||||
XCloseDisplay(dpy);
|
|
||||||
exit(EXIT_SUCCESS);
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
194
src/wmfs.h
194
src/wmfs.h
@@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* wmfs.h
|
* wmfs.h
|
||||||
* Copyright © 2008, 2009 Martin Duquesnoy <xorg62@gmail.com>
|
* Copyright © 2008, 2009 Martin Duquesnoy <xorg62@gmail.com>
|
||||||
@@ -39,6 +40,7 @@
|
|||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
#include <stdbool.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
@@ -48,6 +50,7 @@
|
|||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
#include <err.h>
|
#include <err.h>
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
|
#include <locale.h>
|
||||||
#include <sys/select.h>
|
#include <sys/select.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
@@ -56,13 +59,12 @@
|
|||||||
#include <X11/Xlib.h>
|
#include <X11/Xlib.h>
|
||||||
#include <X11/Xatom.h>
|
#include <X11/Xatom.h>
|
||||||
#include <X11/cursorfont.h>
|
#include <X11/cursorfont.h>
|
||||||
#include <X11/Xft/Xft.h>
|
|
||||||
|
|
||||||
/* Local headers */
|
|
||||||
#include "parse.h"
|
|
||||||
#include "structs.h"
|
|
||||||
|
|
||||||
/* Optional dependencies */
|
/* Optional dependencies */
|
||||||
|
#ifdef HAVE_XFT
|
||||||
|
#include <X11/Xft/Xft.h>
|
||||||
|
#endif /* HAVE_XFT */
|
||||||
|
|
||||||
#ifdef HAVE_XINERAMA
|
#ifdef HAVE_XINERAMA
|
||||||
#include <X11/extensions/Xinerama.h>
|
#include <X11/extensions/Xinerama.h>
|
||||||
#endif /* HAVE_XINERAMA */
|
#endif /* HAVE_XINERAMA */
|
||||||
@@ -75,6 +77,10 @@
|
|||||||
#include <Imlib2.h>
|
#include <Imlib2.h>
|
||||||
#endif /* HAVE_IMLIB */
|
#endif /* HAVE_IMLIB */
|
||||||
|
|
||||||
|
/* Local headers */
|
||||||
|
#include "parse.h"
|
||||||
|
#include "structs.h"
|
||||||
|
|
||||||
/* MACRO */
|
/* MACRO */
|
||||||
#define ButtonMask (ButtonPressMask | ButtonReleaseMask | ButtonMotionMask)
|
#define ButtonMask (ButtonPressMask | ButtonReleaseMask | ButtonMotionMask)
|
||||||
#define MouseMask (ButtonMask | PointerMotionMask)
|
#define MouseMask (ButtonMask | PointerMotionMask)
|
||||||
@@ -83,13 +89,13 @@
|
|||||||
#define ROOT RootWindow(dpy, SCREEN)
|
#define ROOT RootWindow(dpy, SCREEN)
|
||||||
#define MAXH DisplayHeight(dpy, DefaultScreen(dpy))
|
#define MAXH DisplayHeight(dpy, DefaultScreen(dpy))
|
||||||
#define MAXW DisplayWidth(dpy, DefaultScreen(dpy))
|
#define MAXW DisplayWidth(dpy, DefaultScreen(dpy))
|
||||||
#define INFOBARH ((conf.bars.height > 0) ? conf.bars.height : (font->height * 1.5))
|
#define INFOBARH ((conf.bars.height > 0) ? conf.bars.height : (font.height * 1.5))
|
||||||
#define FHINFOBAR ((font->height - font->descent) + (INFOBARH - font->height) / 2)
|
#define FHINFOBAR ((font.height - font.de) + (((int)INFOBARH - font.height) >> 1))
|
||||||
#define SHADH (1)
|
#define SHADH (1)
|
||||||
#define BORDH conf.client.borderheight
|
#define BORDH conf.client.borderheight
|
||||||
#define TBARH ((conf.titlebar.height < BORDH) ? BORDH : conf.titlebar.height)
|
#define TBARH ((conf.titlebar.height < BORDH) ? BORDH : conf.titlebar.height)
|
||||||
#define RESHW (6 * (BORDH))
|
#define RESHW (6 * (BORDH))
|
||||||
#define BUTTONWH (TBARH / 2)
|
#define BUTTONWH (TBARH >> 1)
|
||||||
#define DEF_CONF ".config/wmfs/wmfsrc"
|
#define DEF_CONF ".config/wmfs/wmfsrc"
|
||||||
#define DEF_STATUS ".config/wmfs/status.sh"
|
#define DEF_STATUS ".config/wmfs/status.sh"
|
||||||
#define PAD conf.pad
|
#define PAD conf.pad
|
||||||
@@ -100,26 +106,36 @@
|
|||||||
win = XCreateWindow(dpy, (parent), (x), (y), (w), (h), (b), CopyFromParent, \
|
win = XCreateWindow(dpy, (parent), (x), (y), (w), (h), (b), CopyFromParent, \
|
||||||
InputOutput, CopyFromParent, (mask), (at)); \
|
InputOutput, CopyFromParent, (mask), (at)); \
|
||||||
XSetWindowBackground(dpy, win, (col)); \
|
XSetWindowBackground(dpy, win, (col)); \
|
||||||
} while (/* CONSTCOND */ 0)
|
} while(/* CONSTCOND */ 0)
|
||||||
|
|
||||||
#define ATOM(a) XInternAtom(dpy, (a), False)
|
#define HANDLE_EVENT(e) event_handle[(e)->type](e);
|
||||||
#define FRAMEW(w) ((w) + BORDH * 2)
|
#define ATOM(a) XInternAtom(dpy, (a), False)
|
||||||
#define FRAMEH(h) ((h) + (BORDH + TBARH))
|
#define FRAMEW(w) ((w) + (BORDH << 1))
|
||||||
#define ROUND(x) (float)((x > 0) ? x + (float)0.5 : x - (float)0.5)
|
#define FRAMEH(h) ((h) + (BORDH + TBARH))
|
||||||
#define CHECK(x) if(!(x)) return
|
#define ROUND(x) (float)((x > 0) ? x + (float)0.5 : x - (float)0.5)
|
||||||
#define LEN(x) (sizeof(x) / sizeof((x)[0]))
|
#define CHECK(x) if(!(x)) return
|
||||||
#define MAXCLIST (64)
|
#define LEN(x) (sizeof(x) / sizeof((x)[0]))
|
||||||
|
#define MAXCLIST (64)
|
||||||
|
#define RPOS(x) (x & 1 ? x - 1 : x + 1)
|
||||||
|
#define LDIR(x) (x < Top)
|
||||||
|
#define FLAGAPPLY(v, b, f) ((b) ? (v |= (f)) : (v &= ~(f)))
|
||||||
|
|
||||||
|
/* Cfactor define */
|
||||||
|
#define CFACTOR_CHECK2(g1, g2, p) (LDIR(p) ? (g1.height == g2.height) : (g1.width == g2.width))
|
||||||
|
#define CFACTOR_PARENTROW(g1, g2, p) \
|
||||||
|
(LDIR(p) \
|
||||||
|
? (p == Left ? (g1.x == g2.x) : (g1.x + g1.width == g2.x + g2.width)) \
|
||||||
|
: (p == Top ? (g1.y == g2.y) : (g1.y + g1.height == g2.y + g2.height))) \
|
||||||
|
|
||||||
/* barwin.c */
|
/* barwin.c */
|
||||||
BarWindow *barwin_create(Window parent,
|
BarWindow *barwin_create(Window parent,
|
||||||
int x, int y,
|
int x, int y,
|
||||||
uint w, uint h,
|
int w, int h,
|
||||||
uint bg, char*fg,
|
uint bg, char*fg,
|
||||||
Bool entermask,
|
bool entermask,
|
||||||
Bool stipple,
|
bool stipple,
|
||||||
Bool border);
|
bool border);
|
||||||
void barwin_draw_text(BarWindow *bw, int x, int y, char *text);
|
void barwin_draw_text(BarWindow *bw, int x, int y, char *text);
|
||||||
void barwin_draw_image_ofset_text(BarWindow *bw, int x, int y, char *text, int x_image_ofset, int y_image_ofset);
|
|
||||||
void barwin_color_set(BarWindow *bw, uint bg, char *fg);
|
void barwin_color_set(BarWindow *bw, uint bg, char *fg);
|
||||||
void barwin_delete(BarWindow *bw);
|
void barwin_delete(BarWindow *bw);
|
||||||
void barwin_delete_subwin(BarWindow *bw);
|
void barwin_delete_subwin(BarWindow *bw);
|
||||||
@@ -128,50 +144,65 @@ void barwin_map_subwin(BarWindow *bw);
|
|||||||
void barwin_unmap(BarWindow *bw);
|
void barwin_unmap(BarWindow *bw);
|
||||||
void barwin_unmap_subwin(BarWindow *bw);
|
void barwin_unmap_subwin(BarWindow *bw);
|
||||||
void barwin_move(BarWindow *bw, int x, int y);
|
void barwin_move(BarWindow *bw, int x, int y);
|
||||||
void barwin_resize(BarWindow *bw, uint w, uint h);
|
void barwin_resize(BarWindow *bw, int w, int h);
|
||||||
void barwin_refresh_color(BarWindow *bw);
|
void barwin_refresh_color(BarWindow *bw);
|
||||||
void barwin_refresh(BarWindow *bw);
|
void barwin_refresh(BarWindow *bw);
|
||||||
|
|
||||||
/* draw.c */
|
/* draw.c */
|
||||||
void draw_text(Drawable d, int x, int y, char* fg, char *str);
|
void draw_text(Drawable d, int x, int y, char* fg, char *str);
|
||||||
void draw_image_ofset_text(Drawable d, int x, int y, char* fg, char *str, int x_image_ofset, int y_image_ofset);
|
void draw_rectangle(Drawable dr, int x, int y, int w, int h, uint color);
|
||||||
void draw_rectangle(Drawable dr, int x, int y, uint w, uint h, uint color);
|
void draw_graph(Drawable dr, int x, int y, int w, int h, uint color, char *data);
|
||||||
void draw_graph(Drawable dr, int x, int y, uint w, uint h, uint color, char *data);
|
|
||||||
|
|
||||||
ushort textw(char *text);
|
ushort textw(char *text);
|
||||||
|
|
||||||
/* infobar.c */
|
/* infobar.c */
|
||||||
void infobar_init(void);
|
void infobar_init(void);
|
||||||
void infobar_draw(int sc);
|
void infobar_draw_layout(InfoBar *i);
|
||||||
void infobar_draw_selbar(int sc);
|
void infobar_draw(InfoBar *i);
|
||||||
void infobar_draw_taglist(int sc);
|
void infobar_draw_selbar(InfoBar *i);
|
||||||
void infobar_update_taglist(int sc);
|
void infobar_draw_taglist(InfoBar *i);
|
||||||
|
void infobar_update_taglist(InfoBar *i);
|
||||||
void infobar_destroy(void);
|
void infobar_destroy(void);
|
||||||
void infobar_set_position(int pos);
|
void infobar_set_position(int pos);
|
||||||
void uicb_infobar_togglepos(uicb_t);
|
void uicb_infobar_togglepos(uicb_t);
|
||||||
void uicb_infobar_toggledisplay(uicb_t);
|
void uicb_infobar_toggledisplay(uicb_t);
|
||||||
void uicb_toggle_tagautohide(uicb_t);
|
void uicb_toggle_tagautohide(uicb_t);
|
||||||
|
|
||||||
|
/* cfactor.c */
|
||||||
|
void cfactor_clean(Client *c);
|
||||||
|
Geo cfactor_geo(Geo geo, int fact[4], int *err);
|
||||||
|
void cfactor_set(Client *c, Position p, int fac);
|
||||||
|
void cfactor_multi_set(Client *c, int fac[4]);
|
||||||
|
/* Generated with macro {{{ */
|
||||||
|
void uicb_client_resize_Right(uicb_t cmd);
|
||||||
|
void uicb_client_resize_Left(uicb_t cmd);
|
||||||
|
void uicb_client_resize_Top(uicb_t cmd);
|
||||||
|
void uicb_client_resize_Bottom(uicb_t cmd);
|
||||||
|
/* }}} */
|
||||||
|
|
||||||
/* client.c */
|
/* client.c */
|
||||||
void client_attach(Client *c);
|
void client_attach(Client *c);
|
||||||
void client_configure(Client *c);
|
void client_configure(Client *c);
|
||||||
void client_detach(Client *c);
|
void client_detach(Client *c);
|
||||||
void client_focus(Client *c);
|
void client_focus(Client *c);
|
||||||
|
Client *client_get_next(void);
|
||||||
|
Client *client_get_prev(void);
|
||||||
/* client_gb_*() {{{ */
|
/* client_gb_*() {{{ */
|
||||||
Client* client_gb_win(Window w);
|
Client* client_gb_win(Window w);
|
||||||
Client* client_gb_frame(Window w);
|
Client* client_gb_frame(Window w);
|
||||||
Client* client_gb_titlebar(Window w);
|
Client* client_gb_titlebar(Window w);
|
||||||
Client* client_gb_resize(Window w);
|
Client* client_gb_resize(Window w);
|
||||||
Client* client_gb_button(Window w, int *n);
|
Client* client_gb_button(Window w, int *n);
|
||||||
|
Client* client_gb_pos(Client *c, int x, int y);
|
||||||
/* }}} */
|
/* }}} */
|
||||||
void client_get_name(Client *c);
|
void client_get_name(Client *c);
|
||||||
void client_hide(Client *c);
|
void client_hide(Client *c);
|
||||||
void client_kill(Client *c);
|
void client_kill(Client *c);
|
||||||
Bool ishide(Client *c, int screen);
|
bool ishide(Client *c, int screen);
|
||||||
void client_map(Client *c);
|
void client_map(Client *c);
|
||||||
Client* client_manage(Window w, XWindowAttributes *wa, Bool ar);
|
Client* client_manage(Window w, XWindowAttributes *wa, bool ar);
|
||||||
void client_geo_hints(XRectangle *geo, Client *c);
|
void client_geo_hints(Geo *geo, Client *c);
|
||||||
void client_moveresize(Client *c, XRectangle geo, Bool r);
|
void client_moveresize(Client *c, Geo geo, bool r);
|
||||||
void client_maximize(Client *c);
|
void client_maximize(Client *c);
|
||||||
void client_size_hints(Client *c);
|
void client_size_hints(Client *c);
|
||||||
void client_swap(Client *c1, Client *c2);
|
void client_swap(Client *c1, Client *c2);
|
||||||
@@ -181,16 +212,23 @@ void client_focus_next(Client *c);
|
|||||||
void client_unmanage(Client *c);
|
void client_unmanage(Client *c);
|
||||||
void client_unmap(Client *c);
|
void client_unmap(Client *c);
|
||||||
void client_update_attributes(Client *c);
|
void client_update_attributes(Client *c);
|
||||||
void client_urgent(Client *c, Bool u);
|
void client_urgent(Client *c, bool u);
|
||||||
|
Client* client_get_next_with_direction(Client *bc, Position pos);
|
||||||
void uicb_client_raise(uicb_t);
|
void uicb_client_raise(uicb_t);
|
||||||
void uicb_client_next(uicb_t);
|
/* Generated with macro {{{ */
|
||||||
void uicb_client_prev(uicb_t);
|
void uicb_client_focus_next(uicb_t);
|
||||||
void uicb_client_swap_next(uicb_t);
|
void uicb_client_focus_prev(uicb_t);
|
||||||
void uicb_client_swap_prev(uicb_t);
|
void uicb_client_swapsel_next(uicb_t);
|
||||||
void uicb_client_focus_right(uicb_t cmd);
|
void uicb_client_swapsel_prev(uicb_t);
|
||||||
void uicb_client_focus_left(uicb_t cmd);
|
void uicb_client_swapsel_Right(uicb_t);
|
||||||
void uicb_client_focus_top(uicb_t cmd);
|
void uicb_client_swapsel_Left(uicb_t);
|
||||||
void uicb_client_focus_bottom(uicb_t cmd);
|
void uicb_client_swapsel_Top(uicb_t);
|
||||||
|
void uicb_client_swapsel_Bottom(uicb_t);
|
||||||
|
void uicb_client_focus_Right(uicb_t cmd);
|
||||||
|
void uicb_client_focus_Left(uicb_t cmd);
|
||||||
|
void uicb_client_focus_Top(uicb_t cmd);
|
||||||
|
void uicb_client_focus_Bottom(uicb_t cmd);
|
||||||
|
/* }}} */
|
||||||
void uicb_client_kill(uicb_t);
|
void uicb_client_kill(uicb_t);
|
||||||
void uicb_client_screen_next(uicb_t);
|
void uicb_client_screen_next(uicb_t);
|
||||||
void uicb_client_screen_prev(uicb_t);
|
void uicb_client_screen_prev(uicb_t);
|
||||||
@@ -199,7 +237,7 @@ void uicb_client_move(uicb_t cmd);
|
|||||||
void uicb_client_resize(uicb_t cmd);
|
void uicb_client_resize(uicb_t cmd);
|
||||||
void uicb_ignore_next_client_rules(uicb_t cmd);
|
void uicb_ignore_next_client_rules(uicb_t cmd);
|
||||||
void uicb_clientlist(uicb_t cmd);
|
void uicb_clientlist(uicb_t cmd);
|
||||||
Bool uicb_checkclist(uicb_t);
|
bool uicb_checkclist(uicb_t);
|
||||||
void uicb_client_ignore_tag(uicb_t);
|
void uicb_client_ignore_tag(uicb_t);
|
||||||
void uicb_client_set_master(uicb_t);
|
void uicb_client_set_master(uicb_t);
|
||||||
|
|
||||||
@@ -218,8 +256,8 @@ void ewmh_manage_window_type(Client *c);
|
|||||||
/* frame.c */
|
/* frame.c */
|
||||||
void frame_create(Client *c);
|
void frame_create(Client *c);
|
||||||
void frame_delete(Client *c);
|
void frame_delete(Client *c);
|
||||||
void frame_moveresize(Client *c, XRectangle geo);
|
void frame_moveresize(Client *c, Geo geo);
|
||||||
void frame_update_color(Client *c, Bool focused);
|
void frame_update_color(Client *c, bool focused);
|
||||||
void frame_update(Client *c);
|
void frame_update(Client *c);
|
||||||
|
|
||||||
/* config.c */
|
/* config.c */
|
||||||
@@ -230,7 +268,11 @@ uint color_shade(uint, double);
|
|||||||
|
|
||||||
/* event.c */
|
/* event.c */
|
||||||
void grabkeys(void);
|
void grabkeys(void);
|
||||||
void getevent(XEvent ev);
|
void event_make_array(void);
|
||||||
|
|
||||||
|
#ifdef HAVE_XRANDR
|
||||||
|
void xrandrevent(XEvent *e);
|
||||||
|
#endif /* HAVE_XRANDR */
|
||||||
|
|
||||||
/* menu.c */
|
/* menu.c */
|
||||||
void menu_init(Menu *menu, char *name, int nitem, uint bg_f, char *fg_f, uint bg_n, char *fg_n);
|
void menu_init(Menu *menu, char *name, int nitem, uint bg_f, char *fg_f, uint bg_n, char *fg_n);
|
||||||
@@ -244,7 +286,7 @@ void uicb_launcher(uicb_t);
|
|||||||
|
|
||||||
/* mouse.c */
|
/* mouse.c */
|
||||||
void mouse_resize(Client *c);
|
void mouse_resize(Client *c);
|
||||||
void mouse_grabbuttons(Client *c, Bool focused);
|
void mouse_grabbuttons(Client *c, bool focused);
|
||||||
void uicb_mouse_move(uicb_t);
|
void uicb_mouse_move(uicb_t);
|
||||||
void uicb_mouse_resize(uicb_t);
|
void uicb_mouse_resize(uicb_t);
|
||||||
|
|
||||||
@@ -274,10 +316,6 @@ char *clean_value(char *str);
|
|||||||
char* patht(char *path);
|
char* patht(char *path);
|
||||||
int qsort_string_compare (const void * a, const void * b);
|
int qsort_string_compare (const void * a, const void * b);
|
||||||
|
|
||||||
#ifdef HAVE_IMLIB
|
|
||||||
int parse_image_block(ImageAttr *im, char *str);
|
|
||||||
#endif /* HAVE_IMLIB */
|
|
||||||
|
|
||||||
/* tag.c */
|
/* tag.c */
|
||||||
void tag_set(int tag);
|
void tag_set(int tag);
|
||||||
void tag_transfert(Client *c, int tag);
|
void tag_transfert(Client *c, int tag);
|
||||||
@@ -305,7 +343,7 @@ void uicb_tag_toggle_expose(uicb_t cmd);
|
|||||||
|
|
||||||
/* screen.c */
|
/* screen.c */
|
||||||
int screen_count(void);
|
int screen_count(void);
|
||||||
XRectangle screen_get_geo(int s);
|
Geo screen_get_geo(int s);
|
||||||
int screen_get_with_geo(int x, int y);
|
int screen_get_with_geo(int x, int y);
|
||||||
int screen_get_sel(void);
|
int screen_get_sel(void);
|
||||||
void screen_set_sel(int screen);
|
void screen_set_sel(int screen);
|
||||||
@@ -319,7 +357,7 @@ void uicb_screen_prev_sel(uicb_t);
|
|||||||
void statustext_handle(int sc, char *str);
|
void statustext_handle(int sc, char *str);
|
||||||
|
|
||||||
/* systray.c */
|
/* systray.c */
|
||||||
Bool systray_acquire(void);
|
bool systray_acquire(void);
|
||||||
void systray_add(Window win);
|
void systray_add(Window win);
|
||||||
void systray_del(Systray *s);
|
void systray_del(Systray *s);
|
||||||
void systray_state(Systray *s);
|
void systray_state(Systray *s);
|
||||||
@@ -329,9 +367,11 @@ int systray_get_width(void);
|
|||||||
void systray_update(void);
|
void systray_update(void);
|
||||||
|
|
||||||
/* layout.c */
|
/* layout.c */
|
||||||
void arrange(int screen, Bool update_layout);
|
void arrange(int screen, bool update_layout);
|
||||||
|
void layout_func(int screen, int tag);
|
||||||
|
Client *tiled_client(int screen, Client *c);
|
||||||
void freelayout(int screen);
|
void freelayout(int screen);
|
||||||
void layoutswitch(Bool b);
|
void layoutswitch(bool b);
|
||||||
void maxlayout(int screen);
|
void maxlayout(int screen);
|
||||||
/* tile {{{ */
|
/* tile {{{ */
|
||||||
void tile(int screen);
|
void tile(int screen);
|
||||||
@@ -353,25 +393,41 @@ void uicb_set_layout(uicb_t);
|
|||||||
void uicb_toggle_resizehint(uicb_t);
|
void uicb_toggle_resizehint(uicb_t);
|
||||||
void uicb_toggle_abovefc(uicb_t cmd);
|
void uicb_toggle_abovefc(uicb_t cmd);
|
||||||
void layout_set_client_master(Client *c);
|
void layout_set_client_master(Client *c);
|
||||||
Bool uicb_checkmax(uicb_t);
|
void layout_split_client(Client *c, bool p);
|
||||||
Bool uicb_checkfree(uicb_t);
|
void layout_split_apply(Client *c);
|
||||||
Bool uicb_checklayout(uicb_t);
|
void layout_split_arrange_closed(int screen);
|
||||||
|
void uicb_split_client_vertical(uicb_t);
|
||||||
|
void uicb_split_client_horizontal(uicb_t);
|
||||||
|
bool uicb_checkmax(uicb_t);
|
||||||
|
bool uicb_checkfree(uicb_t);
|
||||||
|
bool uicb_checklayout(uicb_t);
|
||||||
|
|
||||||
/* init.c */
|
/* init.c */
|
||||||
void init(void);
|
void init(void);
|
||||||
|
|
||||||
/* getinfo.c */
|
/* split.c */
|
||||||
void getinfo(char *info);
|
void split_store_geo(int screen, int tag);
|
||||||
|
void split_set_current(Client *nc, Client *ghost);
|
||||||
/* viwmfs.c */
|
void split_apply_current(int screen, int tag);
|
||||||
void viwmfs(int argc, char **argv);
|
void split_arrange_closed(Client *ghost);
|
||||||
|
Geo split_client(Client *c, bool p);
|
||||||
|
void split_client_fill(Client *c, Geo geo);
|
||||||
|
void split_client_integrate(Client *c, Client *sc, int screen, int tag);
|
||||||
|
void split_move_dir(Client *c, Position p);
|
||||||
|
void uicb_split_toggle(uicb_t cmd);
|
||||||
|
/* Generated with macro {{{ */
|
||||||
|
void uicb_split_move_Right(uicb_t);
|
||||||
|
void uicb_split_move_Left(uicb_t);
|
||||||
|
void uicb_split_move_Top(uicb_t);
|
||||||
|
void uicb_split_move_Bottom(uicb_t);
|
||||||
|
/* }}} */
|
||||||
|
|
||||||
/* wmfs.c */
|
/* wmfs.c */
|
||||||
int errorhandler(Display *d, XErrorEvent *event);
|
int errorhandler(Display *d, XErrorEvent *event);
|
||||||
int errorhandlerdummy(Display *d, XErrorEvent *event);
|
int errorhandlerdummy(Display *d, XErrorEvent *event);
|
||||||
void quit(void);
|
void quit(void);
|
||||||
void *thread_process(void *arg);
|
void *thread_process(void *arg);
|
||||||
Bool check_wmfs_running(void);
|
bool check_wmfs_running(void);
|
||||||
void exec_uicb_function(char *func, char *cmd);
|
void exec_uicb_function(char *func, char *cmd);
|
||||||
void handle_signal(int signum);
|
void handle_signal(int signum);
|
||||||
void uicb_quit(uicb_t);
|
void uicb_quit(uicb_t);
|
||||||
@@ -386,9 +442,9 @@ int selscreen;
|
|||||||
int prevselscreen;
|
int prevselscreen;
|
||||||
Conf conf;
|
Conf conf;
|
||||||
Key *keys;
|
Key *keys;
|
||||||
Bool estatus;
|
bool estatus;
|
||||||
XRectangle *sgeo;
|
Geo *sgeo;
|
||||||
XRectangle *spgeo;
|
Geo *spgeo;
|
||||||
Cursor cursor[CurLast];
|
Cursor cursor[CurLast];
|
||||||
char *argv_global;
|
char *argv_global;
|
||||||
char **all_argv;
|
char **all_argv;
|
||||||
@@ -396,7 +452,7 @@ int xrandr_event;
|
|||||||
uint timing;
|
uint timing;
|
||||||
|
|
||||||
/* Fonts */
|
/* Fonts */
|
||||||
XftFont *font;
|
FontStruct font;
|
||||||
|
|
||||||
/* Atoms list */
|
/* Atoms list */
|
||||||
Atom *net_atom;
|
Atom *net_atom;
|
||||||
@@ -421,6 +477,8 @@ Client *clients;
|
|||||||
Client *sel;
|
Client *sel;
|
||||||
|
|
||||||
/* Other */
|
/* Other */
|
||||||
|
int nevent;
|
||||||
|
void (**event_handle)(XEvent*);
|
||||||
extern const func_name_list_t func_list[];
|
extern const func_name_list_t func_list[];
|
||||||
extern const func_name_list_t layout_list[];
|
extern const func_name_list_t layout_list[];
|
||||||
uint numlockmask;
|
uint numlockmask;
|
||||||
|
|||||||
73
wmfsrc
73
wmfsrc
@@ -7,9 +7,9 @@
|
|||||||
# @include "~/.config/wmfs/menu-wmfsrc"
|
# @include "~/.config/wmfs/menu-wmfsrc"
|
||||||
|
|
||||||
[misc]
|
[misc]
|
||||||
|
use_xft = true
|
||||||
font = "dejavu-10"
|
font = "dejavu-10"
|
||||||
raisefocus = true
|
raisefocus = true
|
||||||
raiseswitch = false
|
|
||||||
focus_follow_mouse = true
|
focus_follow_mouse = true
|
||||||
focus_follow_movement = false
|
focus_follow_movement = false
|
||||||
opacity = 255
|
opacity = 255
|
||||||
@@ -73,6 +73,9 @@
|
|||||||
# Keep layout geo for free layout
|
# Keep layout geo for free layout
|
||||||
keep_layout_geo = false
|
keep_layout_geo = false
|
||||||
|
|
||||||
|
# Enable split mode with client_resize_<direction>
|
||||||
|
cfactor_enable_split = true
|
||||||
|
|
||||||
# Symbol displayed for the selected layout in the list
|
# Symbol displayed for the selected layout in the list
|
||||||
selected_layout_symbol = "*"
|
selected_layout_symbol = "*"
|
||||||
|
|
||||||
@@ -100,9 +103,10 @@
|
|||||||
name = "new tag"
|
name = "new tag"
|
||||||
mwfact = 0.5
|
mwfact = 0.5
|
||||||
nmaster = 1
|
nmaster = 1
|
||||||
layout = "tile_right"
|
layout = "tile"
|
||||||
resizehint = false
|
resizehint = false
|
||||||
infobar_position = "top"
|
infobar_position = "top"
|
||||||
|
split = false
|
||||||
[/default_tag]
|
[/default_tag]
|
||||||
|
|
||||||
# whether client_next on the last tag will send you on the first
|
# whether client_next on the last tag will send you on the first
|
||||||
@@ -124,14 +128,14 @@
|
|||||||
#default_name = "new tag" # deprecated, use [default_tag] instead
|
#default_name = "new tag" # deprecated, use [default_tag] instead
|
||||||
#default_layout = "tile_right" # deprecated, use [default_tag] instead
|
#default_layout = "tile_right" # deprecated, use [default_tag] instead
|
||||||
|
|
||||||
expose_name = "EXPOSE"
|
expose_name = "EXPOSE"
|
||||||
expose_layout = "tile_left"
|
expose_layout = "tile_left"
|
||||||
|
|
||||||
# Border around the tag buttons.
|
# Border around the tag buttons.
|
||||||
border = true
|
border = true
|
||||||
|
|
||||||
# Hide empty tags in tag list
|
# Hide empty tags in tag list
|
||||||
autohide = true
|
autohide = false
|
||||||
|
|
||||||
# Mouse buttons action on tag.
|
# Mouse buttons action on tag.
|
||||||
mouse_button_tag_sel = "1"
|
mouse_button_tag_sel = "1"
|
||||||
@@ -149,11 +153,11 @@
|
|||||||
resizehint = false
|
resizehint = false
|
||||||
infobar_position = "top"
|
infobar_position = "top"
|
||||||
above_fc = false
|
above_fc = false
|
||||||
|
split = false
|
||||||
#[mouse] [/mouse] Possible multi mouse section
|
#[mouse] [/mouse] Possible multi mouse section
|
||||||
[/tag]
|
[/tag]
|
||||||
|
|
||||||
# clients option is *DEPRECATED* but works, see [rules] section
|
[tag] name = "two" [/tag]
|
||||||
[tag] name = "two" clients = {"Browser"} [/tag]
|
|
||||||
[tag] name = "three" [/tag]
|
[tag] name = "three" [/tag]
|
||||||
[tag] name = "four" [/tag]
|
[tag] name = "four" [/tag]
|
||||||
[tag] name = "five" [/tag]
|
[tag] name = "five" [/tag]
|
||||||
@@ -191,7 +195,7 @@
|
|||||||
# same as above but for the screen
|
# same as above but for the screen
|
||||||
#default_open_screen = 1
|
#default_open_screen = 1
|
||||||
|
|
||||||
# Space between tiled clients
|
# Space between tiled clients (px)
|
||||||
padding = 0
|
padding = 0
|
||||||
|
|
||||||
# Modifier for mouse use
|
# Modifier for mouse use
|
||||||
@@ -307,15 +311,6 @@
|
|||||||
prompt = "Exec: "
|
prompt = "Exec: "
|
||||||
command = "exec"
|
command = "exec"
|
||||||
[/set_launcher]
|
[/set_launcher]
|
||||||
|
|
||||||
#ViWMFS : manage wmfs with vi-based command.
|
|
||||||
[set_launcher]
|
|
||||||
name = "viwmfs"
|
|
||||||
prompt = "> "
|
|
||||||
command = "wmfs -V"
|
|
||||||
[/set_launcher]
|
|
||||||
[/launcher]
|
|
||||||
|
|
||||||
[keys]
|
[keys]
|
||||||
# Reload the configuration of wmfs.
|
# Reload the configuration of wmfs.
|
||||||
[key] mod = {"Alt", "Control"} key = "r" func = "reload" [/key]
|
[key] mod = {"Alt", "Control"} key = "r" func = "reload" [/key]
|
||||||
@@ -378,12 +373,6 @@
|
|||||||
# Set the previous layout.
|
# Set the previous layout.
|
||||||
[key] mod = {"Alt", "Shift"} key = "space" func = "layout_prev" [/key]
|
[key] mod = {"Alt", "Shift"} key = "space" func = "layout_prev" [/key]
|
||||||
|
|
||||||
# Increase mwfact.
|
|
||||||
[key] mod = {"Alt"} key = "l" func = "set_mwfact" cmd = "+0.025" [/key]
|
|
||||||
|
|
||||||
# Decrease mwfact.
|
|
||||||
[key] mod = {"Alt"} key = "h" func = "set_mwfact" cmd = "-0.025" [/key]
|
|
||||||
|
|
||||||
# Increase nmaster.
|
# Increase nmaster.
|
||||||
[key] mod = {"Alt"} key = "d" func = "set_nmaster" cmd = "+1" [/key]
|
[key] mod = {"Alt"} key = "d" func = "set_nmaster" cmd = "+1" [/key]
|
||||||
|
|
||||||
@@ -393,9 +382,6 @@
|
|||||||
#Launcher.
|
#Launcher.
|
||||||
[key] mod = {"Alt"} key = "p" func = "launcher" cmd = "launcher_exec" [/key]
|
[key] mod = {"Alt"} key = "p" func = "launcher" cmd = "launcher_exec" [/key]
|
||||||
|
|
||||||
#ViWMFS
|
|
||||||
[key] mod = {"Alt"} key = "Escape" func = "launcher" cmd = "viwmfs" [/key]
|
|
||||||
|
|
||||||
# Set the tag x.
|
# Set the tag x.
|
||||||
[key] mod = {"Alt"} key = "F1" func = "tag" cmd = "1" [/key]
|
[key] mod = {"Alt"} key = "F1" func = "tag" cmd = "1" [/key]
|
||||||
[key] mod = {"Alt"} key = "F2" func = "tag" cmd = "2" [/key]
|
[key] mod = {"Alt"} key = "F2" func = "tag" cmd = "2" [/key]
|
||||||
@@ -437,10 +423,41 @@
|
|||||||
[key] mod = {"Super", "Shift"} key = "a" func = "client_screen_next" [/key]
|
[key] mod = {"Super", "Shift"} key = "a" func = "client_screen_next" [/key]
|
||||||
[key] mod = {"Super", "Shift"} key = "z" func = "client_screen_prev" [/key]
|
[key] mod = {"Super", "Shift"} key = "z" func = "client_screen_prev" [/key]
|
||||||
|
|
||||||
|
# Toggle tag explose
|
||||||
[key] mod = {"Alt"} key = "e" func = "toggle_tag_expose" [/key]
|
[key] mod = {"Alt"} key = "e" func = "toggle_tag_expose" [/key]
|
||||||
|
|
||||||
|
# Toggle split mode
|
||||||
|
[key] mod = {"Alt"} key = "s" func = "split_toggle" [/key]
|
||||||
|
|
||||||
|
# Focus next client with direction
|
||||||
|
[key] mod = {"Alt"} key = "h" func = "client_focus_left" [/key]
|
||||||
|
[key] mod = {"Alt"} key = "l" func = "client_focus_right" [/key]
|
||||||
|
[key] mod = {"Alt"} key = "k" func = "client_focus_top" [/key]
|
||||||
|
[key] mod = {"Alt"} key = "j" func = "client_focus_bottom" [/key]
|
||||||
|
|
||||||
|
# Swap next client with direction
|
||||||
|
[key] mod = {"Control"} key = "h" func = "client_swap_left" [/key]
|
||||||
|
[key] mod = {"Control"} key = "l" func = "client_swap_right" [/key]
|
||||||
|
[key] mod = {"Control"} key = "k" func = "client_swap_top" [/key]
|
||||||
|
[key] mod = {"Control"} key = "j" func = "client_swap_bottom" [/key]
|
||||||
|
|
||||||
|
# Move next splitted client with direction
|
||||||
|
[key] mod = {"Control", "Shift"} key = "h" func = "split_move_left" [/key]
|
||||||
|
[key] mod = {"Control", "Shift"} key = "l" func = "split_move_right" [/key]
|
||||||
|
[key] mod = {"Control", "Shift"} key = "k" func = "split_move_top" [/key]
|
||||||
|
[key] mod = {"Control", "Shift"} key = "j" func = "split_move_bottom" [/key]
|
||||||
|
|
||||||
|
# Resize selected tiled client with direction
|
||||||
|
[key] mod = {"Super"} key = "h" func = "client_resize_left" cmd = "20" [/key]
|
||||||
|
[key] mod = {"Super"} key = "l" func = "client_resize_right" cmd = "20" [/key]
|
||||||
|
[key] mod = {"Super"} key = "k" func = "client_resize_top" cmd = "20" [/key]
|
||||||
|
[key] mod = {"Super"} key = "j" func = "client_resize_bottom" cmd = "20" [/key]
|
||||||
|
[key] mod = { "Super", "Control"} key = "h" func = "client_resize_right" cmd = "-20" [/key]
|
||||||
|
[key] mod = { "Super", "Control"} key = "l" func = "client_resize_left" cmd = "-20" [/key]
|
||||||
|
[key] mod = { "Super", "Control"} key = "k" func = "client_resize_bottom" cmd = "-20" [/key]
|
||||||
|
[key] mod = { "Super", "Control"} key = "j" func = "client_resize_top" cmd = "-20" [/key]
|
||||||
|
|
||||||
# unlisted fonctions that can be used in [key] func = ""
|
# unlisted fonctions that can be used in [key] func = ""
|
||||||
# client_focus_{right, left, top, bottom}
|
|
||||||
# client_ignore_tag # Toggle the client in ignore_tag (display the client on all tags)
|
# client_ignore_tag # Toggle the client in ignore_tag (display the client on all tags)
|
||||||
# tag_prev_sel # go back to the previous selected tag
|
# tag_prev_sel # go back to the previous selected tag
|
||||||
# tag_transfert_{next, prev}
|
# tag_transfert_{next, prev}
|
||||||
|
|||||||
Reference in New Issue
Block a user