1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
|
#region license
// Copyright (c) 2005, Peter Johanson (latexer@gentoo.org)
// All rights reserved.
//
// BooBinding is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// BooBinding is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with BooBinding; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#endregion
namespace BooBinding.Gui.OptionPanels
import BooBinding
import System
import Gtk
import MonoDevelop.Projects
import MonoDevelop.Ide.Gui.Dialogs
import MonoDevelop.Core
public class CodeGenerationPanel(MultiConfigItemOptionsPanel):
private codeGenerationLabel as Gtk.Label = Gtk.Label ()
private labelWarnings as Gtk.Label = Gtk.Label ()
private labelOutputDir as Gtk.Label = Gtk.Label ()
private outputLabel as Gtk.Label = Gtk.Label ()
private labelCompiler as Gtk.Label = Gtk.Label ()
private labelCulture as Gtk.Label = Gtk.Label ()
private labelCompileTarget as Gtk.Label = Gtk.Label ()
private compileTargetCombo as Gtk.ComboBox = Gtk.ComboBox ()
private checkDebug = CheckButton (GettextCatalog.GetString ("Enable debug"))
private checkDucky = CheckButton (GettextCatalog.GetString ("Enable ducky mode"))
private outputAssembly = Entry ()
private outputDirectory = Entry()
// Waiting on easy method for setting entry text before using
//private outputDirectory as FolderEntry = FolderEntry ("Output Directory")
private compilerPath = Entry ()
private culture = Entry ()
compilerParameters as BooCompilerParameters = null
configuration as DotNetProjectConfiguration = null
project as DotNetProject = null;
vbox as VBox
public def constructor():
InitializeComponent ()
vbox = VBox ()
hboxTmp = HBox ()
hboxTmp.PackStart (codeGenerationLabel, false, false, 0)
vbox.PackStart (hboxTmp, false, false, 12)
hboxTmp = HBox()
tableOutputOptions = Table (4, 2, false)
tableOutputOptions.Attach (outputLabel, 0, 1, 0, 1, AttachOptions.Shrink, AttachOptions.Shrink, 0, 0)
tableOutputOptions.Attach (outputAssembly, 1, 2, 0, 1, AttachOptions.Fill | AttachOptions.Expand, AttachOptions.Fill, 0, 3)
tableOutputOptions.Attach (labelOutputDir, 0, 1, 1, 2, AttachOptions.Shrink, AttachOptions.Shrink, 0, 0)
tableOutputOptions.Attach (outputDirectory, 1, 2, 1, 2, AttachOptions.Fill | AttachOptions.Expand , AttachOptions.Fill, 0, 3)
tableOutputOptions.Attach (labelCompileTarget, 0, 1, 2, 3, AttachOptions.Shrink, AttachOptions.Shrink, 0, 0)
tableOutputOptions.Attach (compileTargetCombo, 1, 2, 2, 3, AttachOptions.Fill | AttachOptions.Expand, AttachOptions.Fill, 0, 3)
tableOutputOptions.Attach (labelCulture, 0, 1, 3, 4, AttachOptions.Shrink, AttachOptions.Shrink, 0, 0)
tableOutputOptions.Attach (culture, 1, 2, 3, 4, AttachOptions.Fill | AttachOptions.Expand, AttachOptions.Fill, 0, 3)
hboxTmp.PackStart (tableOutputOptions, true, true, 6)
vbox.PackStart (hboxTmp, false, false, 0)
hboxTmp = HBox ()
hboxTmp.PackStart (labelWarnings, false, false, 0)
vbox.PackStart (hboxTmp, false, false, 12)
hboxTmp = HBox()
hboxTmp.PackStart (checkDebug, false, false, 6)
vbox.PackStart (hboxTmp, false, false, 0)
hboxTmp = HBox()
hboxTmp.PackStart (checkDucky, false, false, 6)
vbox.PackStart (hboxTmp, false, false, 0)
vbox.ShowAll ()
private def InitializeComponent() as void:
codeGenerationLabel.Markup = String.Format ("<b>{0}</b>", GettextCatalog.GetString ("Code Generation"))
labelOutputDir.Markup = String.Format ("{0} :", GettextCatalog.GetString ("Output Path"))
labelOutputDir.Layout.Alignment = Pango.Alignment.Right
outputAssembly = Entry ()
outputLabel.Markup = String.Format ("{0} :", GettextCatalog.GetString ("Output Assembly"))
outputLabel.Layout.Alignment = Pango.Alignment.Right
labelWarnings.Markup = String.Format ("<b>{0}</b>", GettextCatalog.GetString ("Warnings and Compiler Options"))
labelCompiler.Markup = String.Format ("<b>{0}</b>", GettextCatalog.GetString ("Compiler"))
labelCulture.Markup = String.Format ("{0} :", GettextCatalog.GetString ("Culture"))
labelCulture.Layout.Alignment = Pango.Alignment.Right
labelCompileTarget.Markup = String.Format ("{0} :", GettextCatalog.GetString ("Output Assembly"))
store = ListStore (string)
stringArray = array(System.String, 1)
stringArray[0] = GettextCatalog.GetString ("Executable")
store.AppendValues (stringArray)
stringArray = array(System.String, 1)
stringArray[0] = GettextCatalog.GetString ("Library")
store.AppendValues (stringArray)
stringArray = array(System.String, 1)
stringArray[0] = GettextCatalog.GetString ("Executable with GUI")
store.AppendValues (stringArray)
compileTargetCombo.Model = store
cr = CellRendererText()
compileTargetCombo.PackStart(cr, true)
compileTargetCombo.AddAttribute(cr, "text", 0)
public override def LoadConfigData() as void:
//FIXME: BOO COMPILER CAN'T RESOLVE OVERLOADS OF GENERIC METHODS
//configuration = (cast(MonoDevelop.Core.Properties,CustomizationObject)).Get [of DotNetProjectConfiguration] ("Config")
configuration = cast(DotNetProjectConfiguration,CurrentConfiguration)
project = cast(DotNetProject,ConfiguredProject)
if configuration == null:
raise InvalidOperationException ("Invalid program state as a result of Boo compiler bug http://jira.codehaus.org/browse/BOO-856")
//END FIXME
compilerParameters = cast (BooCompilerParameters, configuration.CompilationParameters)
checkDebug.Active = configuration.DebugMode
checkDucky.Active = compilerParameters.Ducky
outputAssembly.Text = configuration.OutputAssembly
//outputDirectory.DefaultPath = configuration.OutputDirectory
outputDirectory.Text = configuration.OutputDirectory
culture.Text = compilerParameters.Culture
compileTargetCombo.Active = cast (int, configuration.CompileTarget)
if project.IsLibraryBasedProjectType:
compileTargetCombo.Sensitive = false
public override def CreatePanelWidget() as Gtk.Widget:
return vbox
public override def ApplyChanges():
if (compilerParameters is null):
return
project.CompileTarget = cast (CompileTarget, compileTargetCombo.Active)
configuration.DebugMode = checkDebug.Active
configuration.OutputAssembly = outputAssembly.Text
configuration.OutputDirectory = outputDirectory.Text
//configuration.OutputDirectory = outputDirectory.Path
compilerParameters.Ducky = checkDucky.Active
compilerParameters.Culture = culture.Text
|