LIBOMV-492 More WinGridProxy fixes:

Complete Search (CTRL+F) Tools
Disable menu items and entries depending on current state of application
Look into ViewerStats Message and verify proper date "AgentStartTime: 1/1/1970 12:00:00 AM (DateTime)"
packet sizes in session list should be combined or an additional column added to separate inbound/outbound
PacketToString remove extraneous information "Name: Object a[OpenMetaverse.Packets.ObjectPropertiesFamilyPacket+ObjectDataBlock]"
PacketToString should format long byte[] fields better
Verify In/Out Icons are being properly shown for packet/message direction


git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2646 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
Jim Radford
2009-04-23 10:02:39 +00:00
parent c9944b8aaf
commit c1b8bdec9d
8 changed files with 754 additions and 530 deletions

View File

@@ -59,13 +59,13 @@ namespace WinGridProxy
private void buttonFind_Click(object sender, EventArgs e)
{
FilterOpts.HighlightMatches = panelColor.BackColor;
FilterOpts.HighlightMatchColor = panelColor.BackColor;
FilterOpts.MatchCase = checkBoxMatchCase.Checked;
FilterOpts.SearchSelected = checkBoxSearchSelected.Checked;
FilterOpts.SearchText = textBoxFind.Text;
FilterOpts.SearchWhat = comboBoxPacketsOrMessages.SelectedItem.ToString();
FilterOpts.SelectResults = checkBoxSelectMatches.Checked;
FilterOpts.UnMarkPrevious = checkBoxUnmark.Checked;
FilterOpts.MarkMatches = checkBoxMarkResults.Checked;
this.Close();
}
@@ -84,12 +84,12 @@ namespace WinGridProxy
public bool HasSelection; // set to true if SessionList has sessions selected already;
public string SearchText;
public string SearchWhat; // Both, Messages, Packets
public bool MatchCase;
public bool SearchSelected;
public bool SelectResults;
public bool UnMarkPrevious;
public Color HighlightMatches;
public bool MarkMatches;
public Color HighlightMatchColor;
public FilterOptions(bool hasSelection)
{