summaryrefslogtreecommitdiffstats
path: root/video/out/win_state.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-05-06 20:22:32 +0200
committerwm4 <wm4@nowhere>2014-05-06 20:22:32 +0200
commitfeb1f8f18fc2bf1de81ea43d7b57e318c1bf4e69 (patch)
tree65498de7e44716f35d79bedec935e5eb79fd69c5 /video/out/win_state.h
parent587f42b56c7cba07fadbb3b73032cdd186f76f5f (diff)
downloadmpv-feb1f8f18fc2bf1de81ea43d7b57e318c1bf4e69.tar.bz2
mpv-feb1f8f18fc2bf1de81ea43d7b57e318c1bf4e69.tar.xz
video/out: separate out code to compute window size
Currently, vo_reconfig() calculates the requested window size and sets the vo->dwidth/dheight fields _if_ VOCTRL_UPDATE_SCREENINFO is implemented by the VO or the windowing backend. The window size can be different from the display size if e.g. the --geometry option is used. It will also set the vo->dx/dy fields and read vo->xinerama_x/y. It turned out that this is very backwards and actually requires the windowing backends to workaround these things. There's also MPOpts.screenwidth/screenheight, which used to map to actual options, but is now used only to communicate the screen size to the vo.c code calculating the window size and position. Change this by making the window geometry calculations available as separate functions. This commit doesn't change any VO code yet, and just emulates the old way using the new functions. VO code will remove its usage of VOCTRL_UPDATE_SCREENINFO and use the new functions directly.
Diffstat (limited to 'video/out/win_state.h')
-rw-r--r--video/out/win_state.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/video/out/win_state.h b/video/out/win_state.h
new file mode 100644
index 0000000000..6c3988b42b
--- /dev/null
+++ b/video/out/win_state.h
@@ -0,0 +1,30 @@
+#ifndef MP_WIN_STATE_H_
+#define MP_WIN_STATE_H_
+
+#include "common/common.h"
+
+struct vo;
+
+enum {
+ // By user settings, the window manager's chosen window position should
+ // be overridden.
+ VO_WIN_FORCE_POS = (1 << 0),
+};
+
+struct vo_win_geometry {
+ // Bitfield of VO_WIN_* flags
+ int flags;
+ // Position & size of the window. In xinerama coordinates, i.e. they're
+ // relative to the virtual desktop encompassing all screens, not the
+ // current screen.
+ struct mp_rect win;
+ // Aspect ratio of the current monitor.
+ // (calculated from screen size and options.)
+ double monitor_par;
+};
+
+void vo_calc_window_geometry(struct vo *vo, const struct mp_rect *screen,
+ struct vo_win_geometry *out_geo);
+void vo_apply_window_geometry(struct vo *vo, const struct vo_win_geometry *geo);
+
+#endif