d212d57466
We used to use realize/unrealize instead of map/unmap in ShellEmbeddedWindow because there originally was no map/unmap. The days of this are long gone... https://bugzilla.gnome.org/show_bug.cgi?id=672790
21 lines
732 B
C
21 lines
732 B
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
#ifndef __SHELL_EMBEDDED_WINDOW_PRIVATE_H__
|
|
#define __SHELL_EMBEDDED_WINDOW_PRIVATE_H__
|
|
|
|
#include "shell-embedded-window.h"
|
|
#include "shell-gtk-embed.h"
|
|
|
|
void _shell_embedded_window_set_actor (ShellEmbeddedWindow *window,
|
|
ShellGtkEmbed *embed);
|
|
|
|
void _shell_embedded_window_allocate (ShellEmbeddedWindow *window,
|
|
int x,
|
|
int y,
|
|
int width,
|
|
int height);
|
|
|
|
void _shell_embedded_window_map (ShellEmbeddedWindow *window);
|
|
void _shell_embedded_window_unmap (ShellEmbeddedWindow *window);
|
|
|
|
#endif /* __SHELL_EMBEDDED_WINDOW_PRIVATE_H__ */
|