Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2892_LR-prediction-intervals/HeuristicLab.Clients.Hive.Administrator/3.3/MenuItems/AdministratorMenuItem.cs @ 16388

Last change on this file since 16388 was 16388, checked in by gkronber, 5 years ago

#2892: Merging r15750:16382 (HEAD) from trunk to branch, resolving conflicts

File size: 2.5 KB
RevLine 
[6976]1#region License Information
2/* HeuristicLab
[15583]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
[16388]22using System;
[6976]23using System.Collections.Generic;
[16388]24using System.Windows.Forms;
25using HeuristicLab.Clients.Access;
[6976]26using HeuristicLab.MainForm;
[16388]27using HeuristicLab.Optimizer;
[6976]28
[16388]29namespace HeuristicLab.Clients.Hive.Administrator {
30  public class AdministratorMenuItem : MainForm.WindowsForms.MenuItem, IOptimizerUserInterfaceItemProvider {
[6976]31    public override string Name {
32      get { return "&Administrator"; }
33    }
[16388]34
[6976]35    public override IEnumerable<string> Structure {
36      get { return new string[] { "&Services", "&Hive" }; }
37    }
[16388]38
[6976]39    public override void Execute() {
[16388]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    }
[16388]55
[6976]56    public override int Position {
[16388]57      get { return 8000; }
[6976]58    }
[16388]59
60    public override Keys ShortCutKeys {
61      get { return Keys.Control | Keys.Shift | Keys.H; }
62    }
[6976]63  }
64}
Note: See TracBrowser for help on using the repository browser.