mirror of
https://github.com/Mibew/i18n.git
synced 2025-04-10 21:30:12 +03:00
git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@506 c66351dc-e62f-0410-b875-e3a5c0b9693f
18 lines
339 B
C#
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;
|
|
}
|
|
}
|