i18n/src/webimtray/WebIMTray/options/OptionPanel.cs
Pavel Petroshenko abacb342ce - localized tooltips and toolbar buttons;
Now everything should be localized properly.

git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@84 c66351dc-e62f-0410-b875-e3a5c0b9693f
2008-05-18 21:07:21 +00:00

19 lines
391 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(ResourceManager resManager);
void updateUI();
event ModifiedEvent PanelModified;
}
}