2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
2017-05-25 14:33:44 +00:00
|
|
|
|
/// Copyright (c) 2013-2017 Sensus Metering Systems
|
2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
|
|
|
|
|
using System;
|
2014-07-28 07:54:35 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace TBF.UiControls
|
|
|
|
|
|
{
|
|
|
|
|
|
interface ITabWithListViewEx
|
|
|
|
|
|
{
|
|
|
|
|
|
void Unlock();
|
|
|
|
|
|
void OkBtnClicked();
|
|
|
|
|
|
void CancelBtnClicked();
|
|
|
|
|
|
void AddOne();
|
|
|
|
|
|
void RemoveSelected();
|
|
|
|
|
|
void MoveUpSelected();
|
|
|
|
|
|
void MoveDownSelected();
|
2017-05-25 14:33:44 +00:00
|
|
|
|
string GetWarningsBeforeSaving(ref Dictionary<string, string> renameInfo);
|
|
|
|
|
|
void UpdateRelatedItems(Dictionary<string, string> renameInfo);
|
2017-05-25 08:39:15 +00:00
|
|
|
|
}
|
2014-07-28 07:54:35 +00:00
|
|
|
|
}
|