~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/xwt/Xwt.Gtk/Xwt.GtkBackend/WindowBackend.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
Import upstream version 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// 
 
2
// WindowBackend.cs
 
3
//  
 
4
// Author:
 
5
//       Lluis Sanchez <lluis@xamarin.com>
 
6
//       Konrad Kruczyński <kkruczynski@antmicro.com>
 
7
// 
 
8
// Copyright (c) 2011 Xamarin Inc
 
9
// 
 
10
// Permission is hereby granted, free of charge, to any person obtaining a copy
 
11
// of this software and associated documentation files (the "Software"), to deal
 
12
// in the Software without restriction, including without limitation the rights
 
13
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 
14
// copies of the Software, and to permit persons to whom the Software is
 
15
// furnished to do so, subject to the following conditions:
 
16
// 
 
17
// The above copyright notice and this permission notice shall be included in
 
18
// all copies or substantial portions of the Software.
 
19
// 
 
20
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
21
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
22
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
23
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
24
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
25
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 
26
// THE SOFTWARE.
 
27
 
 
28
using System;
 
29
using Xwt.Backends;
 
30
 
 
31
namespace Xwt.GtkBackend
 
32
{
 
33
        public class WindowBackend: WindowFrameBackend, IWindowBackend
 
34
        {
 
35
                Gtk.Alignment alignment;
 
36
                Gtk.MenuBar mainMenu;
 
37
                Gtk.VBox mainBox;
 
38
                
 
39
                public override void Initialize ()
 
40
                {
 
41
                        Window = new Gtk.Window ("");
 
42
                        Window.Add (CreateMainLayout ());
 
43
                }
 
44
                
 
45
                protected virtual Gtk.Widget CreateMainLayout ()
 
46
                {
 
47
                        mainBox = new Gtk.VBox ();
 
48
                        mainBox.Show ();
 
49
                        alignment = new Gtk.Alignment (0, 0, 1, 1);
 
50
                        mainBox.PackStart (alignment, true, true, 0);
 
51
                        alignment.Show ();
 
52
                        return mainBox;
 
53
                }
 
54
                
 
55
                public Gtk.VBox MainBox {
 
56
                        get { return mainBox; }
 
57
                }
 
58
 
 
59
                public override Size ImplicitMinSize {
 
60
                        get {
 
61
                                var req = Window.Child == null ? new Gtk.Requisition () : Window.Child.SizeRequest ();
 
62
                                var creq = mainBox.SizeRequest ();
 
63
                                return new Size (req.Width - creq.Width, req.Height - creq.Height);
 
64
                        }
 
65
                }
 
66
 
 
67
                public void SetChild (IWidgetBackend child)
 
68
                {
 
69
                        var w = (IGtkWidgetBackend) child;
 
70
                        if (alignment.Child != null)
 
71
                                alignment.Remove (alignment.Child);
 
72
                        alignment.Child = w.Widget;
 
73
                }
 
74
                
 
75
                public void SetMainMenu (IMenuBackend menu)
 
76
                {
 
77
                        if (mainMenu != null)
 
78
                                mainBox.Remove (mainMenu);
 
79
                        
 
80
                        if (menu != null) {
 
81
                                MenuBackend m = (MenuBackend) menu;
 
82
                                mainMenu = m.MenuBar;
 
83
                                mainBox.PackStart (mainMenu, false, false, 0);
 
84
                                ((Gtk.Box.BoxChild)mainBox[mainMenu]).Position = 0;
 
85
                        } else
 
86
                                mainMenu = null;
 
87
                }
 
88
 
 
89
                public void SetPadding (double left, double top, double right, double bottom)
 
90
                {
 
91
                        alignment.LeftPadding = (uint) left;
 
92
                        alignment.RightPadding = (uint) right;
 
93
                        alignment.TopPadding = (uint) top;
 
94
                        alignment.BottomPadding = (uint) bottom;
 
95
                }
 
96
 
 
97
                public void SetMinSize (Size s)
 
98
                {
 
99
                        // Not required
 
100
                }
 
101
        }
 
102
}
 
103