[6976] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[15584] | 3 | * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[6976] | 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
[17059] | 22 | using System;
|
---|
[6976] | 23 | using System.Collections.Generic;
|
---|
[17059] | 24 | using System.Windows.Forms;
|
---|
| 25 | using HeuristicLab.Clients.Access;
|
---|
[6976] | 26 | using HeuristicLab.MainForm;
|
---|
[17059] | 27 | using HeuristicLab.Optimizer;
|
---|
[6976] | 28 |
|
---|
[17059] | 29 | namespace HeuristicLab.Clients.Hive.Administrator {
|
---|
| 30 | public class AdministratorMenuItem : MainForm.WindowsForms.MenuItem, IOptimizerUserInterfaceItemProvider {
|
---|
[6976] | 31 | public override string Name {
|
---|
| 32 | get { return "&Administrator"; }
|
---|
| 33 | }
|
---|
[17059] | 34 |
|
---|
[6976] | 35 | public override IEnumerable<string> Structure {
|
---|
| 36 | get { return new string[] { "&Services", "&Hive" }; }
|
---|
| 37 | }
|
---|
[17059] | 38 |
|
---|
[6976] | 39 | public override void Execute() {
|
---|
[17059] | 40 |
|
---|
| 41 | if (HiveRoles.CheckAdminUserPermissions() || HiveAdminClient.Instance.CheckAccessToAdminAreaGranted()) {
|
---|
| 42 | MainFormManager.MainForm.ShowContent(HiveAdminClient.Instance);
|
---|
| 43 | } else if (!UserInformation.Instance.UserExists) {
|
---|
| 44 | MessageBox.Show(
|
---|
| 45 | "Couldn't fetch user information from the server." + Environment.NewLine +
|
---|
| 46 | "Please verify that you have an existing user and that your user name and password is correct.",
|
---|
| 47 | "HeuristicLab Hive Administrator", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
---|
| 48 | } else {
|
---|
| 49 | MessageBox.Show(
|
---|
| 50 | "You do not seem to have the permissions to use the Hive Administrator." + Environment.NewLine +
|
---|
| 51 | "If that's not the case or you have any questions please write an email to support@heuristiclab.com",
|
---|
| 52 | "HeuristicLab Hive Administrator", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
---|
| 53 | }
|
---|
[6976] | 54 | }
|
---|
[17059] | 55 |
|
---|
[6976] | 56 | public override int Position {
|
---|
[17059] | 57 | get { return 8000; }
|
---|
[6976] | 58 | }
|
---|
[17059] | 59 |
|
---|
| 60 | public override Keys ShortCutKeys {
|
---|
| 61 | get { return Keys.Control | Keys.Shift | Keys.H; }
|
---|
| 62 | }
|
---|
[6976] | 63 | }
|
---|
| 64 | }
|
---|