2008-11-30 02:17:19 +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;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Globalization;
|
|
|
|
using System.Text;
|
|
|
|
using System.Windows.Forms;
|
|
|
|
using System.IO;
|
|
|
|
using System.Reflection;
|
2008-12-04 23:01:52 +00:00
|
|
|
using CodeImp.DoomBuilder.Windows;
|
|
|
|
using CodeImp.DoomBuilder.IO;
|
2008-11-30 02:17:19 +00:00
|
|
|
using CodeImp.DoomBuilder.Map;
|
2008-12-04 23:01:52 +00:00
|
|
|
using CodeImp.DoomBuilder.Rendering;
|
2008-11-30 02:17:19 +00:00
|
|
|
using CodeImp.DoomBuilder.Geometry;
|
|
|
|
using CodeImp.DoomBuilder.Editing;
|
2008-12-04 23:01:52 +00:00
|
|
|
using CodeImp.DoomBuilder.VisualModes;
|
2008-11-30 02:17:19 +00:00
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
2008-12-04 23:01:52 +00:00
|
|
|
namespace CodeImp.DoomBuilder.BuilderModes
|
2008-11-30 02:17:19 +00:00
|
|
|
{
|
2008-12-15 18:32:36 +00:00
|
|
|
internal interface IVisualEventReceiver
|
2008-11-30 02:17:19 +00:00
|
|
|
{
|
2008-12-15 18:32:36 +00:00
|
|
|
// The events that must be handled
|
|
|
|
void OnSelectBegin();
|
|
|
|
void OnSelectEnd();
|
|
|
|
void OnEditBegin();
|
|
|
|
void OnEditEnd();
|
2008-12-17 15:30:50 +00:00
|
|
|
void OnMouseMove(MouseEventArgs e);
|
2008-12-24 14:21:54 +00:00
|
|
|
void OnChangeTargetHeight(int amount);
|
|
|
|
void OnChangeTargetBrightness(int amount);
|
2008-12-24 18:27:13 +00:00
|
|
|
void OnChangeTextureOffset(int horizontal, int vertical);
|
2009-01-04 18:51:32 +00:00
|
|
|
void OnResetTextureOffset();
|
2008-12-27 00:22:31 +00:00
|
|
|
void OnSelectTexture();
|
|
|
|
void OnCopyTexture();
|
|
|
|
void OnPasteTexture();
|
2008-12-31 00:44:04 +00:00
|
|
|
void OnTextureAlign(bool alignx, bool aligny);
|
2009-01-12 22:00:31 +00:00
|
|
|
void OnTextureFloodfill();
|
2008-12-31 00:44:04 +00:00
|
|
|
void OnToggleUpperUnpegged();
|
|
|
|
void OnToggleLowerUnpegged();
|
2009-01-09 22:37:11 +00:00
|
|
|
void OnProcess(double deltatime);
|
2008-12-31 00:44:04 +00:00
|
|
|
|
2008-12-27 00:22:31 +00:00
|
|
|
// Other methods
|
|
|
|
string GetTextureName();
|
2008-11-30 02:17:19 +00:00
|
|
|
}
|
|
|
|
}
|