]> git.xonotic.org Git - xonotic/netradiant.git/blob - libs/gtkutil/paned.h
Merge branch 'master' into master-merge
[xonotic/netradiant.git] / libs / gtkutil / paned.h
1 /*
2    Copyright (C) 2001-2006, William Joseph.
3    All Rights Reserved.
4
5    This file is part of GtkRadiant.
6
7    GtkRadiant is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    GtkRadiant is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with GtkRadiant; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20  */
21
22 #if !defined( INCLUDED_GTKUTIL_PANED_H )
23 #define INCLUDED_GTKUTIL_PANED_H
24
25 #include <gtk/gtk.h>
26 #include <uilib/uilib.h>
27
28 class PanedState
29 {
30 public:
31 float position;
32 int size;
33 };
34
35 gboolean hpaned_allocate( ui::Widget widget, GtkAllocation* allocation, PanedState* paned );
36 gboolean vpaned_allocate( ui::Widget widget, GtkAllocation* allocation, PanedState* paned );
37 gboolean paned_position( ui::Widget widget, gpointer dummy, PanedState* paned );
38
39 ui::Widget create_split_views( ui::Widget topleft, ui::Widget botleft, ui::Widget topright, ui::Widget botright, ui::Widget& vsplit1, ui::Widget& vsplit2 );
40 #endif