2009-07-19 20:30:15 +00:00
|
|
|
|
|
2009-07-17 15:06:15 +00:00
|
|
|
|
#region ================== Copyright (c) 2007 Pascal vd Heiden
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2007 Pascal vd Heiden, www.codeimp.com
|
|
|
|
|
* This program is released under GNU General Public License
|
|
|
|
|
*
|
|
|
|
|
* This program 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.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region ================== Namespaces
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
using Microsoft.Win32;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using CodeImp.DoomBuilder.Actions;
|
|
|
|
|
using CodeImp.DoomBuilder.Data;
|
|
|
|
|
using CodeImp.DoomBuilder.Config;
|
|
|
|
|
using CodeImp.DoomBuilder.Rendering;
|
|
|
|
|
using SlimDX.Direct3D9;
|
|
|
|
|
using System.Drawing.Imaging;
|
|
|
|
|
using System.Drawing.Drawing2D;
|
|
|
|
|
using CodeImp.DoomBuilder.Map;
|
|
|
|
|
using System.Globalization;
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
namespace CodeImp.DoomBuilder.Controls
|
|
|
|
|
{
|
2009-07-19 20:30:15 +00:00
|
|
|
|
internal partial class DockersControl : UserControl
|
2009-07-17 15:06:15 +00:00
|
|
|
|
{
|
|
|
|
|
#region ================== Constants
|
2009-07-19 20:30:15 +00:00
|
|
|
|
|
2009-07-17 15:06:15 +00:00
|
|
|
|
#endregion
|
2009-07-19 20:30:15 +00:00
|
|
|
|
|
2009-07-17 15:06:15 +00:00
|
|
|
|
#region ================== Variables
|
|
|
|
|
|
|
|
|
|
#endregion
|
2009-07-19 20:30:15 +00:00
|
|
|
|
|
2009-07-17 15:06:15 +00:00
|
|
|
|
#region ================== Constructor
|
|
|
|
|
|
|
|
|
|
// Constructor
|
|
|
|
|
public DockersControl()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
2009-07-19 20:30:15 +00:00
|
|
|
|
|
2009-07-17 15:06:15 +00:00
|
|
|
|
#endregion
|
2009-07-19 20:30:15 +00:00
|
|
|
|
|
2009-07-17 15:06:15 +00:00
|
|
|
|
#region ================== Methods
|
2009-07-19 20:30:15 +00:00
|
|
|
|
|
2009-07-17 15:06:15 +00:00
|
|
|
|
#endregion
|
2009-07-19 20:30:15 +00:00
|
|
|
|
|
2009-07-17 15:06:15 +00:00
|
|
|
|
#region ================== Events
|
2009-07-19 20:30:15 +00:00
|
|
|
|
|
2009-07-17 15:06:15 +00:00
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|