i18n/src/mibewtray/MibewTray/options/OptionPanel.cs
Evgeny Gryaznov bf64fd9805 rename tray project
git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@506 c66351dc-e62f-0410-b875-e3a5c0b9693f
2009-05-27 15:07:37 +00:00

18 lines
339 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Resources;
namespace webImTray {
public delegate void ModifiedEvent();
interface OptionsPanel {
void initialize();
void apply();
string getDescription();
event ModifiedEvent PanelModified;
}
}