2007-11-14 01:23:27 +03:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.ComponentModel;
|
|
|
|
using System.Drawing;
|
|
|
|
using System.Data;
|
|
|
|
using System.Text;
|
|
|
|
using System.Windows.Forms;
|
2008-05-18 17:40:19 +04:00
|
|
|
using System.Resources;
|
2007-11-14 01:23:27 +03:00
|
|
|
|
|
|
|
namespace webImTray {
|
|
|
|
public partial class OptionsSoundsPanel : UserControl, OptionsPanel {
|
2008-05-18 17:40:19 +04:00
|
|
|
public event ModifiedEvent PanelModified;
|
|
|
|
|
2007-11-14 01:23:27 +03:00
|
|
|
public OptionsSoundsPanel() {
|
|
|
|
InitializeComponent();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void OptionsSoundsPanel_Load(object sender, EventArgs e) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void OptionsPanel.apply() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void OptionsPanel.initialize() {
|
|
|
|
}
|
|
|
|
|
2008-05-19 00:17:16 +04:00
|
|
|
string OptionsPanel.getDescription(ResourceManager resManager) {
|
|
|
|
return resManager.GetString("sound");
|
2007-11-14 01:23:27 +03:00
|
|
|
}
|
|
|
|
|
2008-05-18 17:40:19 +04:00
|
|
|
public void updateUI(ResourceManager resManager) {
|
2008-05-18 22:25:27 +04:00
|
|
|
groupBox1.Text = resManager.GetString("notifications");
|
|
|
|
playSoundOnVisitor.Text = resManager.GetString("playSoundOnVisitor");
|
2008-05-18 17:40:19 +04:00
|
|
|
}
|
2007-11-14 01:23:27 +03:00
|
|
|
}
|
|
|
|
}
|