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