about summary refs log tree commit diff stats
path: root/event.c
Commit message (Collapse)AuthorAgeFilesLines
* applied dfenze cleanups, fixed some comments in dwm.hAnselm R. Garbe2007-05-141-2/+1
|
* applied Maarten Maathuis recenter-patch for floating clients only requesting ↵Anselm R. Garbe2007-05-091-0/+4
| | | | new width and height exceeding the screen space
* thanks to Juka to check -Wall ;)Anselm R. Garbe2007-05-081-2/+0
|
* applied patch of Paul Liu to allow onthefly resizing due to xrandr changesAnselm R. Garbe2007-05-071-0/+19
|
* changed border handlingAnselm R. Garbe2007-04-171-3/+1
|
* changing order of c->border restorageAnselm R. Garbe2007-04-131-3/+3
|
* yet another fix of copyright compactisitionAnselm R. Garbe2007-04-131-1/+2
|
* making Copyright notices more compactAnselm R. Garbe2007-04-131-6/+7
|
* renamed untiled into floating, keeping tiled instead of tiling (afaik tiled ↵Anselm R. Garbe2007-02-221-4/+4
| | | | sounds more correct) - English speakers convinced me
* renamed versatile into untiledAnselm R. Garbe2007-02-221-4/+4
|
* fixed some issues due to the Arg->const char * transitionAnselm R. Garbe2007-02-221-9/+9
|
* replaced Arg union with const char *arg, seems cleaner to me, even if we ↵Anselm R. Garbe2007-02-221-13/+15
| | | | need atoi() in some places
* removed button4/5-bindings for incnmaster on mode label - that is misleadingAnselm R. Garbe2007-02-221-8/+0
|
* several changes, made togglemax extern and separated it from zoom() - moved ↵Anselm R. Garbe2007-02-221-10/+10
| | | | zoom() and togglemax() into layout.c, changed void (*func)(Arg *) into void (*func)(Arg), changed default keybindings of focusnext/focusprev and incmasterw to h/j/k/l accordingly, made keys in config*h appear alphabetically (special keys first), renamed resizemaster into incmasterw, renamed MASTER into MASTERWIDTH
* replaced togglelayout with setlayoutAnselm R. Garbe2007-02-191-1/+2
|
* renamed Client->versatile and Rule->versatile into Client->isversatile resp. ↵Anselm R. Garbe2007-02-191-4/+4
| | | | Rule->isversatile
* renames swim[ming] into versatileAnselm R. Garbe2007-02-191-4/+4
|
* renamed floating into swimming (this does not clash with C naming ↵Anselm R. Garbe2007-02-191-4/+4
| | | | conventions and fits better the fish symbol) - also in man page
* introduced Layout structAnselm R. Garbe2007-02-191-6/+6
|
* removed procevent, more refactoringAnselm R. Garbe2007-02-191-11/+0
|
* draw.c is useless (belongs to main.c now)Anselm R. Garbe2007-02-191-0/+8
|
* simplified configurerequest to a bare minimum, removed wrong ban() callsAnselm R. Garbe2007-02-191-8/+1
|
* fixed configurerequest according to Jukkas complainsAnselm R. Garbe2007-02-191-8/+9
|
* fixed configurerequest according to the problem Jukka reportedAnselm R. Garbe2007-02-191-11/+16
|
* removed useless spaceAnselm R. Garbe2007-02-161-1/+1
|
* removed ugly ban(), extended resize() that it only resets the size if ↵Anselm R. Garbe2007-02-161-22/+20
| | | | necessary, added border_width commit to manage()
* added ban() which takes care than a banned window is not banned again... ↵Anselm R. Garbe2007-02-141-1/+1
| | | | (this reduces the overall ConfigureNotify's to clients)
* made for/if/else constructs more consistent, some code polishingAnselm R. Garbe2007-02-141-6/+6
|
* made configurerequest more tidyAnselm R. Garbe2007-02-141-5/+10
|
* I didn't knew of c->isfixed, that should fix Jukkas issue with gkrellm ;)Anselm R. Garbe2007-02-131-6/+8
|
* stupid me, one needs to set c->{x,y,w,h} in configurerequest obviously ;)Anselm R. Garbe2007-02-131-16/+20
|
* simplified configurerequestAnselm R. Garbe2007-02-131-35/+16
|
* I don't see any reason why we should select for input on override-redirect ↵Anselm R. Garbe2007-02-121-4/+1
| | | | windows?
* removing all EnterNotifys after resizeAnselm R. Garbe2007-02-121-0/+1
|
* added pointer warp on drop in resizeAnselm R. Garbe2007-02-121-0/+2
|
* replaced getproto with a saner function, now old-school artifacts of WM ↵Anselm R. Garbe2007-02-071-4/+0
| | | | times in the early 90s completely disappeared, no punned pointer warning anymore ;)
* renamed activescreen into selscreen 3.2Anselm R. Garbe2007-01-231-2/+2
|
* small changesAnselm R. Garbe2007-01-231-2/+2
|
* I think this is the best solution of multihead supportAnselm R. Garbe2007-01-231-1/+1
|
* this variant is known to work, but focus() is ugly - we need in general a ↵Anselm R. Garbe2007-01-221-1/+1
| | | | better way to handle multihead, this issel-stuff looks awkward (maybe it might be a good idea to set sel to NULL but to introduce a Client *revert which is set if a screen is unfocused, have to think about it further).
* applied Sanders all5.patch (thanks for your weekend session, Sander!)Anselm R. Garbe2007-01-221-26/+24
|
* leavenotify also don't needs the checkAnselm R. Garbe2007-01-191-5/+2
|
* deciding for focus(NULL);Anselm R. Garbe2007-01-191-2/+2
|
* replaced XSetBorder.../focus()Anselm R. Garbe2007-01-191-1/+1
|
* yet another multihead fix by Christof MusikAnselm R. Garbe2007-01-191-0/+2
|
* applied a modified version of Christof Musik's multihead patch (though this ↵Anselm R. Garbe2007-01-181-1/+4
| | | | is not sure if it works in all cases, have to wait for an ACK by Christof)
* Jukka, thanks for being faster than me!Anselm R. Garbe2007-01-151-1/+0
|
* removed drawclient and drawall (they performed useless operations/consumed ↵Anselm R. Garbe2007-01-151-5/+3
| | | | useless cpu cycles)
* removed client title barAnselm R. Garbe2007-01-141-5/+2
|
* added comment to %u in config.default.h, added Button{4.5} support on mode labelAnselm R. Garbe2007-01-101-2/+14
|
911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051