2023-11-19 01:53:56 +03:00
|
|
|
package Common.UI.Windows.Interface;
|
2023-09-17 22:13:42 +03:00
|
|
|
public interface CallbackWindow extends VisualizerForm {
|
|
|
|
|
void ShowAccount();
|
|
|
|
|
void ShowBugReports();
|
|
|
|
|
void ShowNoBugReports();
|
|
|
|
|
void ShowSubscribers();
|
|
|
|
|
void ShowNoSubscribers();
|
|
|
|
|
void ShowCurrentBugReport();
|
|
|
|
|
void ShowNoCurrentBugReport();
|
|
|
|
|
void ShowSubscription();
|
|
|
|
|
//-
|
|
|
|
|
default void ShowAll() {
|
|
|
|
|
ShowAccount();
|
|
|
|
|
ShowSubscription();
|
|
|
|
|
ShowBugReports();
|
|
|
|
|
ShowSubscribers();
|
|
|
|
|
}
|
|
|
|
|
String getBugReportDescriptionText();
|
|
|
|
|
String getBugReportDescriptionAdditionText();
|
|
|
|
|
String getBugReportCommentText();
|
|
|
|
|
String getBugReportCommentAdditionText();
|
|
|
|
|
void ClearBugReportDescriptionAdditionText();
|
|
|
|
|
void ClearBugReportCommentAdditionText();
|
|
|
|
|
void FocusRecipients();
|
|
|
|
|
void SwitchScreen(boolean small);
|
|
|
|
|
void setUserRights();
|
|
|
|
|
void setAdminRights();
|
|
|
|
|
}
|