~ubuntu-branches/ubuntu/feisty/monodevelop/feisty

« back to all changes in this revision

Viewing changes to Extras/MonoDevelop.Autotools/SolutionOptionsPanel.cs

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-08-18 00:51:23 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060818005123-5iit07y0j7wjg55f
Tags: 0.11+svn20060818-0ubuntu1
* New SVN snapshot
  + Works with Gtk# 2.9.0
* debian/control:
  + Updated Build-Depends
* debian/patches/use_nunit2.2.dpatch,
  debian/patches/use_real_libs.dpatch:
  + Updated
* debian/patches/versioncontrol_buildfix.dpatch:
  + Fix build failure in the version control addin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
Copyright (c) 2006 Scott Ellington
 
3
 
 
4
Permission is hereby granted, free of charge, to any person 
 
5
obtaining a copy of this software and associated documentation 
 
6
files (the "Software"), to deal in the Software without 
 
7
restriction, including without limitation the rights to use, 
 
8
copy, modify, merge, publish, distribute, sublicense, and/or sell 
 
9
copies of the Software, and to permit persons to whom the 
 
10
Software is furnished to do so, subject to the following 
 
11
conditions:
 
12
 
 
13
The above copyright notice and this permission notice shall be 
 
14
included in all copies or substantial portions of the Software.
 
15
 
 
16
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 
 
17
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 
 
18
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 
 
19
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 
 
20
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
 
21
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 
 
22
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 
 
23
OTHER DEALINGS IN THE SOFTWARE. 
 
24
*/
 
25
 
 
26
using System;
 
27
using Gtk;
 
28
 
 
29
using MonoDevelop.Core;
 
30
using MonoDevelop.Core.Gui.Dialogs;
 
31
using MonoDevelop.Projects;
 
32
using MonoDevelop.Projects.Serialization;
 
33
using MonoDevelop.Ide.Gui;
 
34
 
 
35
namespace MonoDevelop.AutoTools
 
36
{
 
37
        public class SolutionOptionsPanel : AbstractOptionPanel
 
38
        {
 
39
                CheckButton MakePkgConfigButton = new CheckButton();
 
40
                CheckButton MakeLibPCButton = new CheckButton();
 
41
                
 
42
                IExtendedDataItem item;
 
43
                
 
44
                public override void LoadPanelContents()
 
45
                {
 
46
                        VBox vbox = new VBox();
 
47
                        vbox.Spacing = 6;
 
48
                        this.Add(vbox);
 
49
                        
 
50
                        item = (IExtendedDataItem) IdeApp.ProjectOperations.CurrentOpenCombine;
 
51
 
 
52
                        MakeLibPCButton.Label = GettextCatalog.GetString ("Create pkg-config files for libraries");
 
53
                        MakeLibPCButton.Active = GetProperty ( item, "MakeLibPC", true );
 
54
                        vbox.PackStart (MakeLibPCButton, false, false, 0);
 
55
                        
 
56
                        MakePkgConfigButton.Label = GettextCatalog.GetString ("Create pkg-config file for entire solution");
 
57
                        MakePkgConfigButton.Active = GetProperty ( item, "MakePkgConfig", false );
 
58
                        vbox.PackStart (MakePkgConfigButton, false, false, 0);
 
59
                }
 
60
 
 
61
                static bool GetProperty ( IExtendedDataItem itm, string ke, bool initial )
 
62
                {
 
63
                        object en_obj =  itm.ExtendedProperties [ke];
 
64
 
 
65
                        if (en_obj== null)
 
66
                        {       
 
67
                                itm.ExtendedProperties[ke] = initial;
 
68
                                return initial;
 
69
                        }
 
70
                        else return (bool) en_obj;
 
71
                }
 
72
                
 
73
                public override bool StorePanelContents()
 
74
                {
 
75
                        item.ExtendedProperties["MakePkgConfig"] = MakePkgConfigButton.Active;
 
76
                        item.ExtendedProperties["MakeLibPC"] = MakeLibPCButton.Active;
 
77
                        
 
78
                        return true;
 
79
                }
 
80
        }
 
81
 
 
82
}