Files
opensim/OpenSim/Tools/OpenSim.GridLaunch/GUI/WinForm/ucLogWindow.cs
Tedd Hansen f2cbc48a9e GUI for launching grids. Early version, but should work fine.
Will execute all OpenSim services redirect their input/output/errors to the selected "GUI module".
This version has following "GUI modules":
* Windows Forms
* Windows Service (doesn't work yet)
* Console
* TCP daemon

This means that OpenSim can now run in a single console for those who want that.

Console functionallity is not too rich yet, but code/framework is there... more to come. :)
2008-12-06 03:28:34 +00:00

55 lines
1.6 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;
namespace OpenSim.GridLaunch.GUI.WinForm
{
public partial class ucLogWindow : UserControl
{
// If text in window is more than this
private static readonly int logWindowMaxTextLength = 20000;
// Remove this much from start of it
private static int logWindowTrunlTextLength = 10000;
public ucLogWindow()
{
if (logWindowMaxTextLength < logWindowTrunlTextLength)
logWindowTrunlTextLength = logWindowMaxTextLength / 2;
InitializeComponent();
}
public delegate void textWriteDelegate(Color color, string LogText);
public void Write(Color color, string LogText)
{
// Check if we to pass task on to GUI thread
if (this.InvokeRequired)
{
this.Invoke(new textWriteDelegate(Write), color, LogText);
return;
}
// Append to window
try
{
if (!txtLog.IsDisposed)
txtLog.AppendText(LogText);
} catch { }
}
private void txtLog_TextChanged(object sender, EventArgs e)
{
// Go to bottom of window
txtLog.ScrollToCaret();
// Make sure amount of text in window doesn't grow too big
if (txtLog.Text.Length > logWindowMaxTextLength)
txtLog.Text = txtLog.Text.Remove(0, logWindowTrunlTextLength);
}
}
}