diff options
author | Perberos <[email protected]> | 2011-12-01 21:51:44 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-12-01 21:51:44 -0300 |
commit | 0b0e6bc987da4fd88a7854ebb12bde705e92c428 (patch) | |
tree | 47d329edd31c67eaa36b2147780e37e197e901b5 /libslab/shell-window.h | |
download | mate-control-center-0b0e6bc987da4fd88a7854ebb12bde705e92c428.tar.bz2 mate-control-center-0b0e6bc987da4fd88a7854ebb12bde705e92c428.tar.xz |
moving from https://github.com/perberos/mate-desktop-environment
Diffstat (limited to 'libslab/shell-window.h')
-rw-r--r-- | libslab/shell-window.h | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/libslab/shell-window.h b/libslab/shell-window.h new file mode 100644 index 00000000..9ce2063d --- /dev/null +++ b/libslab/shell-window.h @@ -0,0 +1,69 @@ +/* + * This file is part of libslab. + * + * Copyright (c) 2006 Novell, Inc. + * + * Libslab is free software; you can redistribute it and/or modify it under the + * terms of the GNU Lesser General Public License as published by the Free + * Software Foundation; either version 2 of the License, or (at your option) + * any later version. + * + * Libslab is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for + * more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with libslab; if not, write to the Free Software Foundation, Inc., 51 + * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef __SHELL_WINDOW_H__ +#define __SHELL_WINDOW_H__ + +#include <glib.h> +#include <gtk/gtk.h> +#include <libmate/mate-desktop-item.h> + +#include <libslab/app-shell.h> + +#ifdef __cplusplus +extern "C" { +#endif + +#define SHELL_WINDOW_TYPE (shell_window_get_type ()) +#define SHELL_WINDOW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SHELL_WINDOW_TYPE, ShellWindow)) +#define SHELL_WINDOW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SHELL_WINDOW_TYPE, ShellWindowClass)) +#define IS_SHELL_WINDOW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SHELL_WINDOW_TYPE)) +#define IS_SHELL_WINDOW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SHELL_WINDOW_TYPE)) +#define SHELL_WINDOW_GET_CLASS(obj) (G_TYPE_CHECK_GET_CLASS ((obj), SHELL_WINDOW_TYPE, ShellWindowClass)) + +typedef struct _ShellWindow ShellWindow; +typedef struct _ShellWindowClass ShellWindowClass; + +struct _ShellWindow +{ + GtkFrame frame; + + GtkBox *_hbox; + GtkWidget *_left_pane; + GtkWidget *_right_pane; + + gulong resize_handler_id; +}; + +struct _ShellWindowClass +{ + GtkFrameClass parent_class; +}; + +GType shell_window_get_type (void); +GtkWidget *shell_window_new (AppShellData * app_data); +void shell_window_set_contents (ShellWindow * window, GtkWidget * left_pane, + GtkWidget * right_pane); +void shell_window_clear_resize_handler (ShellWindow * win); + +#ifdef __cplusplus +} +#endif +#endif /* __SHELL_WINDOW_H__ */ |