]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - libs/gtkutil/paned.cpp
Merge branch 'NateEag-master-patch-12920' into 'master'
[xonotic/netradiant.git] / libs / gtkutil / paned.cpp
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 #include "paned.h"
23 #include "frame.h"
24
25 gboolean hpaned_allocate(ui::Widget widget, GtkAllocation* allocation, PanedState* paned ){
26         if ( paned->size != allocation->width ) {
27                 paned->size = allocation->width;
28                 gtk_paned_set_position( GTK_PANED( widget ), static_cast<int>( paned->size * paned->position ) );
29         }
30         return FALSE;
31 }
32
33 gboolean vpaned_allocate(ui::Widget widget, GtkAllocation* allocation, PanedState* paned ){
34         if ( paned->size != allocation->height ) {
35                 paned->size = allocation->height;
36                 gtk_paned_set_position( GTK_PANED( widget ), static_cast<int>( paned->size * paned->position ) );
37         }
38         return FALSE;
39 }
40
41 gboolean paned_position(ui::Widget widget, gpointer dummy, PanedState* paned ){
42         if ( paned->size != -1 ) {
43                 paned->position = gtk_paned_get_position( GTK_PANED( widget ) ) / static_cast<float>( paned->size );
44         }
45         return FALSE;
46 }
47
48 PanedState g_hpaned = { 0.5f, -1, };
49 PanedState g_vpaned1 = { 0.5f, -1, };
50 PanedState g_vpaned2 = { 0.5f, -1, };
51
52 ui::HPaned create_split_views( ui::Widget topleft, ui::Widget topright, ui::Widget botleft, ui::Widget botright ){
53         auto hsplit = ui::HPaned(ui::New);
54         hsplit.show();
55
56         hsplit.connect( "size_allocate", G_CALLBACK( hpaned_allocate ), &g_hpaned );
57         hsplit.connect( "notify::position", G_CALLBACK( paned_position ), &g_hpaned );
58
59         {
60                 auto vsplit = ui::VPaned(ui::New);
61                 gtk_paned_add1( GTK_PANED( hsplit ), vsplit  );
62                 vsplit.show();
63
64                 vsplit.connect( "size_allocate", G_CALLBACK( vpaned_allocate ), &g_vpaned1 );
65                 vsplit.connect( "notify::position", G_CALLBACK( paned_position ), &g_vpaned1 );
66
67                 gtk_paned_add1( GTK_PANED( vsplit ), create_framed_widget( topleft  ) );
68                 gtk_paned_add2( GTK_PANED( vsplit ), create_framed_widget( topright  ) );
69         }
70         {
71                 auto vsplit = ui::VPaned(ui::New);
72                 gtk_paned_add2( GTK_PANED( hsplit ), vsplit  );
73                 vsplit.show();
74
75                 vsplit.connect( "size_allocate", G_CALLBACK( vpaned_allocate ), &g_vpaned2 );
76                 vsplit.connect( "notify::position", G_CALLBACK( paned_position ), &g_vpaned2 );
77
78                 gtk_paned_add1( GTK_PANED( vsplit ), create_framed_widget( botleft  ) );
79                 gtk_paned_add2( GTK_PANED( vsplit ), create_framed_widget( botright  ) );
80         }
81         return hsplit;
82 }