mirror of
https://github.com/brl/mutter.git
synced 2024-11-26 18:11:05 -05:00
Moved bunch of prototypes from display-private.h to display.
This commit is contained in:
parent
616e140420
commit
9a4d1d1375
@ -376,20 +376,6 @@ void meta_display_set_grab_op_cursor (MetaDisplay *display,
|
|||||||
Window grab_xwindow,
|
Window grab_xwindow,
|
||||||
guint32 timestamp);
|
guint32 timestamp);
|
||||||
|
|
||||||
gboolean meta_display_begin_grab_op (MetaDisplay *display,
|
|
||||||
MetaScreen *screen,
|
|
||||||
MetaWindow *window,
|
|
||||||
MetaGrabOp op,
|
|
||||||
gboolean pointer_already_grabbed,
|
|
||||||
gboolean frame_action,
|
|
||||||
int button,
|
|
||||||
gulong modmask,
|
|
||||||
guint32 timestamp,
|
|
||||||
int root_x,
|
|
||||||
int root_y);
|
|
||||||
void meta_display_end_grab_op (MetaDisplay *display,
|
|
||||||
guint32 timestamp);
|
|
||||||
|
|
||||||
void meta_display_check_threshold_reached (MetaDisplay *display,
|
void meta_display_check_threshold_reached (MetaDisplay *display,
|
||||||
int x,
|
int x,
|
||||||
int y);
|
int y);
|
||||||
@ -444,28 +430,6 @@ void meta_display_increment_focus_sentinel (MetaDisplay *display);
|
|||||||
void meta_display_decrement_focus_sentinel (MetaDisplay *display);
|
void meta_display_decrement_focus_sentinel (MetaDisplay *display);
|
||||||
gboolean meta_display_focus_sentinel_clear (MetaDisplay *display);
|
gboolean meta_display_focus_sentinel_clear (MetaDisplay *display);
|
||||||
|
|
||||||
/* meta_display_set_input_focus_window is like XSetInputFocus, except
|
|
||||||
* that (a) it can't detect timestamps later than the current time,
|
|
||||||
* since Metacity isn't part of the XServer, and thus gives erroneous
|
|
||||||
* behavior in this circumstance (so don't do it), (b) it uses
|
|
||||||
* display->last_focus_time since we don't have access to the true
|
|
||||||
* Xserver one, (c) it makes use of display->user_time since checking
|
|
||||||
* whether a window should be allowed to be focused should depend
|
|
||||||
* on user_time events (see bug 167358, comment 15 in particular)
|
|
||||||
*/
|
|
||||||
void meta_display_set_input_focus_window (MetaDisplay *display,
|
|
||||||
MetaWindow *window,
|
|
||||||
gboolean focus_frame,
|
|
||||||
guint32 timestamp);
|
|
||||||
|
|
||||||
/* meta_display_focus_the_no_focus_window is called when the
|
|
||||||
* designated no_focus_window should be focused, but is otherwise the
|
|
||||||
* same as meta_display_set_input_focus_window
|
|
||||||
*/
|
|
||||||
void meta_display_focus_the_no_focus_window (MetaDisplay *display,
|
|
||||||
MetaScreen *screen,
|
|
||||||
guint32 timestamp);
|
|
||||||
|
|
||||||
void meta_display_queue_autoraise_callback (MetaDisplay *display,
|
void meta_display_queue_autoraise_callback (MetaDisplay *display,
|
||||||
MetaWindow *window);
|
MetaWindow *window);
|
||||||
void meta_display_remove_autoraise_callback (MetaDisplay *display);
|
void meta_display_remove_autoraise_callback (MetaDisplay *display);
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
#include <X11/Xlib.h>
|
#include <X11/Xlib.h>
|
||||||
|
|
||||||
#include "types.h"
|
#include "types.h"
|
||||||
|
#include "common.h"
|
||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
@ -96,4 +97,40 @@ MetaWindow* meta_display_get_tab_current (MetaDisplay *display,
|
|||||||
MetaTabList type,
|
MetaTabList type,
|
||||||
MetaScreen *screen,
|
MetaScreen *screen,
|
||||||
MetaWorkspace *workspace);
|
MetaWorkspace *workspace);
|
||||||
|
|
||||||
|
gboolean meta_display_begin_grab_op (MetaDisplay *display,
|
||||||
|
MetaScreen *screen,
|
||||||
|
MetaWindow *window,
|
||||||
|
MetaGrabOp op,
|
||||||
|
gboolean pointer_already_grabbed,
|
||||||
|
gboolean frame_action,
|
||||||
|
int button,
|
||||||
|
gulong modmask,
|
||||||
|
guint32 timestamp,
|
||||||
|
int root_x,
|
||||||
|
int root_y);
|
||||||
|
void meta_display_end_grab_op (MetaDisplay *display,
|
||||||
|
guint32 timestamp);
|
||||||
|
/* meta_display_set_input_focus_window is like XSetInputFocus, except
|
||||||
|
* that (a) it can't detect timestamps later than the current time,
|
||||||
|
* since Metacity isn't part of the XServer, and thus gives erroneous
|
||||||
|
* behavior in this circumstance (so don't do it), (b) it uses
|
||||||
|
* display->last_focus_time since we don't have access to the true
|
||||||
|
* Xserver one, (c) it makes use of display->user_time since checking
|
||||||
|
* whether a window should be allowed to be focused should depend
|
||||||
|
* on user_time events (see bug 167358, comment 15 in particular)
|
||||||
|
*/
|
||||||
|
void meta_display_set_input_focus_window (MetaDisplay *display,
|
||||||
|
MetaWindow *window,
|
||||||
|
gboolean focus_frame,
|
||||||
|
guint32 timestamp);
|
||||||
|
|
||||||
|
/* meta_display_focus_the_no_focus_window is called when the
|
||||||
|
* designated no_focus_window should be focused, but is otherwise the
|
||||||
|
* same as meta_display_set_input_focus_window
|
||||||
|
*/
|
||||||
|
void meta_display_focus_the_no_focus_window (MetaDisplay *display,
|
||||||
|
MetaScreen *screen,
|
||||||
|
guint32 timestamp);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user