Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/doctools/src/Gui/TypeEditorForm.cs')
-rw-r--r--mcs/doctools/src/Gui/TypeEditorForm.cs120
1 files changed, 0 insertions, 120 deletions
diff --git a/mcs/doctools/src/Gui/TypeEditorForm.cs b/mcs/doctools/src/Gui/TypeEditorForm.cs
deleted file mode 100644
index 7fa9784276e..00000000000
--- a/mcs/doctools/src/Gui/TypeEditorForm.cs
+++ /dev/null
@@ -1,120 +0,0 @@
-// TypeEditorForm.cs
-// John Barnette (jbarn@httcb.net)
-//
-// Copyright (c) 2002 John Barnette
-//
-// This file is part of Monodoc, a multilingual API documentation tool.
-//
-// Monodoc 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.
-//
-// Monodoc 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 Monodoc; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-using System;
-
-namespace Mono.Doc.Gui
-{
- public class TypeEditorForm : GenericEditorForm
- {
- private System.Windows.Forms.Label labelMembers;
- private System.Windows.Forms.ComboBox comboBoxMembers;
-
- private void InitializeComponent()
- {
- this.labelMembers = new System.Windows.Forms.Label();
- this.comboBoxMembers = new System.Windows.Forms.ComboBox();
- this.SuspendLayout();
- //
- // toolBar
- //
- //this.toolBar.ButtonSize = new System.Drawing.Size(43, 22);
- this.toolBar.Visible = true;
- //
- // labelSummary
- //
- this.labelSummary.Visible = true;
- //
- // textBoxSummary
- //
- this.textBoxSummary.Visible = true;
- //
- // labelRemarks
- //
- this.labelRemarks.Visible = true;
- //
- // textBoxRemarks
- //
- this.textBoxRemarks.Visible = true;
- //
- // labelSeeAlso
- //
- this.labelSeeAlso.Visible = true;
- //
- // comboBoxLanguage
- //
- this.comboBoxLanguage.ItemHeight = 13;
- this.comboBoxLanguage.Visible = true;
- //
- // labelLanguage
- //
- this.labelLanguage.Location = new System.Drawing.Point(232, 34);
- this.labelLanguage.Size = new System.Drawing.Size(72, 16);
- this.labelLanguage.Visible = true;
- //
- // listView1
- //
- this.listViewSeeAlso.Visible = true;
- //
- // labelMembers
- //
- this.labelMembers.Location = new System.Drawing.Point(8, 34);
- this.labelMembers.Name = "labelMembers";
- this.labelMembers.Size = new System.Drawing.Size(56, 16);
- this.labelMembers.TabIndex = 10;
- this.labelMembers.Text = "Members:";
- //
- // comboBoxMembers
- //
- this.comboBoxMembers.Location = new System.Drawing.Point(64, 32);
- this.comboBoxMembers.Name = "comboBoxMembers";
- this.comboBoxMembers.Size = new System.Drawing.Size(168, 21);
- this.comboBoxMembers.TabIndex = 11;
- this.comboBoxMembers.Text = "comboBox1";
- //
- // TypeEditorForm
- //
- this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
- this.ClientSize = new System.Drawing.Size(432, 469);
- this.Controls.AddRange(new System.Windows.Forms.Control[] {
- this.listViewSeeAlso,
- this.labelLanguage,
- this.comboBoxLanguage,
- this.labelSeeAlso,
- this.textBoxRemarks,
- this.labelRemarks,
- this.textBoxSummary,
- this.labelSummary,
- this.toolBar,
- this.comboBoxMembers,
- this.labelMembers});
- this.Name = "TypeEditorForm";
- this.Text = "TypeEditorForm";
- this.ResumeLayout(false);
-
- }
-
- public TypeEditorForm() : base()
- {
- InitializeComponent();
- }
- }
-}