24 lines
518 B
C#
24 lines
518 B
C#
///
|
|
/// Copyright (c) 2013-2017 Senus Slovensko a.s.
|
|
///
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace TBF.UI.Shared
|
|
{
|
|
interface ITabWithListViewEx
|
|
{
|
|
void Unlock();
|
|
void OkBtnClicked();
|
|
void CancelBtnClicked();
|
|
void AddOne();
|
|
void RemoveSelected();
|
|
void MoveUpSelected();
|
|
void MoveDownSelected();
|
|
string GetWarningsBeforeSaving(ref Dictionary<string, string> renameInfo);
|
|
void UpdateRelatedItems(Dictionary<string, string> renameInfo);
|
|
}
|
|
}
|