summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2017-04-04@$#?! strcasestrJérémie Courrèges-Anglas
2017-04-03Fix previous.Jérémie Courrèges-Anglas
2017-04-03Avoid useless deprecation warningsJérémie Courrèges-Anglas
Looks like strcasestr was actually a GNU extension, so using _BSD_SOURCE doesn't make sense. POSIX declares it in strings.h, glibc-2.25 and older declare it in string.h if _GNU_SOURCE is defined.
2017-03-10Use file names, not paths, in error/warning/debug messagesJérémie Courrèges-Anglas
2017-03-10Tweak error message.Jérémie Courrèges-Anglas
2017-03-10Print a warning message to stdout if we hit an unknown commandJérémie Courrèges-Anglas
Should help finding typos in config files. (If use startxr, you should probably redirect stdout and stderr to ~/.xsession-errors in your ~/.xinitrc.)
2017-03-10Print a warning if a deprecated command is used.Jérémie Courrèges-Anglas
2017-03-10At init time, add unmapped windows to the default (first) screen.Jérémie Courrèges-Anglas
Kills an error message and fixes a "regression" in my setup. Previously, if xinerama was not active (disabled or screen count == 1), out-of-screen windows were added to screen 0 and were considered "managed".
2017-03-09Unused variableJérémie Courrèges-Anglas
2017-03-09Setting framemsgwait to -1 disables the 'Current frame' message.Jérémie Courrèges-Anglas
2017-02-15Merge branch 'xrandr'Jérémie Courrèges-Anglas
All the hard work on xrandr done by Mathieu OTHACEHE, thanks!
2016-12-28screen: rewrite screen_del conditionsMathieu OTHACEHE
Rewrite screen_del conditional imbrications for a better readability. No functional changes here.
2016-12-21Fix frozen state when a new screen appears after all screens have been removedMathieu OTHACEHE
Handle correctly the fact that the deleted screen could be the last one. If a screen is plugged, and no other screens are present, give focus to it's key window.
2016-12-21Add a hide_screen_windows functionMathieu OTHACEHE
This function is useful to find the windows displayed on a specific screen and hide them.
2016-12-12Update screen-aware focus* commands after changes to support XRandRJoseph Mingrone
This is an update to Pedro Silva's patch, so that it applies against the xrandr branch. That patch introduced four new functions, frame_*_abs, which report a frame's left, right, top, and bottom coordinates offset by it's screen arrangement. This allows the use of the focus* commands as additional screen navigation tools, and has the added benefit of making the find_frame_* functions clearer.
2016-12-09Unused paramJérémie Courrèges-Anglas
2016-12-09Yet another function that doesn't take arguments any moreJérémie Courrèges-Anglas
2016-12-09Dead declJérémie Courrèges-Anglas
2016-12-09no parameter -> void; C and C++ differ hereJérémie Courrèges-Anglas
2016-12-09Adapt function nameJérémie Courrèges-Anglas
2016-12-08Store RootWindow in global_screen structureMathieu OTHACEHE
Every screen stores a copy of xrandr RootWindow even if they all share the same RootWindow. This patch stores the RootWindow in a global location for all screens. Further work is required to remove RootWindow from per screen structure.
2016-12-08Select xrandr primary screen at startup if possibleMathieu OTHACEHE
If xrandr support is enabled and a screen is marked primary, use it as current screen at startup. Otherwise, use the first screen in sorted screen list as current screen at startup.
2016-12-08Simplify scanwins functionMathieu OTHACEHE
Use find_screen_by_attr function, remove screen argument and a useless debug message.
2016-12-08Add a function to find a screen matching a given XWindowAttributesMathieu OTHACEHE
It allows to find the screen associated to a Window, using it's x and y position.
2016-12-08Add primary screen detectionMathieu OTHACEHE
The user may specify that a screen is primary with xrandr. Save this information in ratpoison for future use. The use of XRRGetOutputPrimary forces us to bump xrandr supported revision from >=1.2 to >=1.3.
2016-12-08Move function declaration to the right headerMathieu OTHACEHE
find_screen is defined in screen.c so it makes more sense to declare it in screen.h
2016-12-08Remove useless argument from is_rp_window_for_screen functionMathieu OTHACEHE
The screen argument is useless as this function operates on all screens. To find if a window belong to a specific ratpoison screen, function is_rp_window_for_given_screen may be used.
2016-12-01Fix and simplify sfrestoreJérémie Courrèges-Anglas
Use a scratch buffer for each screen, this simplifies a lot allocations and iterations, and allows restoring screens that contain more than one frame.
2016-12-01sfrestore: in case of error, mention the screen number, not its xrandr idJérémie Courrèges-Anglas
2016-12-01sfrestore: partial fix for frame allocation/deallocationJérémie Courrèges-Anglas
There is still a problem with allocation of screens vs frames. A screen can have multiple frames (for now this triggers a segfault).
2016-12-01sselect: print the screen number in case of failureJérémie Courrèges-Anglas
2016-12-01Callers shouldn't pass a negative number to screen_number()Jérémie Courrèges-Anglas
2016-12-01fdump: don't segfault if screen is not foundJérémie Courrèges-Anglas
2016-12-01Tighten screen sorting: comparing a screen with itself should return 0Jérémie Courrèges-Anglas
2016-12-01Kill gcc uninitialized warningMathieu OTHACEHE
It is useless to initialize screen_count, but it prevents a gcc warning.
2016-12-01Add height dimension to screen sortingMathieu OTHACEHE
Screen are only sorted according to their width offset from origin ("left" in screen struct). Also sort screen that share a same width offset according to their height offset ("top" in screen struct).
2016-12-01Fix sfrestoreMathieu OTHACEHE
Use screen numset in sfrestore
2016-12-01Fix sfdumpMathieu OTHACEHE
Use screen numset in sfdump
2016-12-01Fix fdump and sselectMathieu OTHACEHE
Use screen numset in fdump and sselect.
2016-12-01Assign a number to each screen using a numsetMathieu OTHACEHE
A number is added to rp_screen to identify every screen. The screen numbers are affected at ratpoison start, when screens are sorted. On screen addition, a new number is requested. On screen deletion, the screen number is released.
2016-11-24Kill gcc unused function warningMathieu OTHACEHE
The xrandr_rotation_string function is used only if DEBUG is enabled.
2016-11-23Kill keysym_to_keycodes, commented out since 2006Jérémie Courrèges-Anglas
2016-11-23Kill redundant declJérémie Courrèges-Anglas
2016-11-23Fix rotations when using xrandrJérémie Courrèges-Anglas
2016-11-23define HAVE_XRANDR/link with libXrandr when we actually want toJérémie Courrèges-Anglas
2016-11-23Only call xrandr_fill_screen is xrandr is availableJérémie Courrèges-Anglas
2016-11-23Keep on handling ConfigureNotify if we don't have xrandrJérémie Courrèges-Anglas
2016-11-23Kill superflous var.Jérémie Courrèges-Anglas
2016-11-23Reinstate code that should stay: we may not have xrandrJérémie Courrèges-Anglas
2016-11-23Sprinkle more debug in xrandr code.Jérémie Courrèges-Anglas