1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
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 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.Windows.Forms;
|
---|
25 | using HeuristicLab.Clients.Access;
|
---|
26 | using HeuristicLab.MainForm;
|
---|
27 | using HeuristicLab.Optimizer;
|
---|
28 |
|
---|
29 | namespace HeuristicLab.Clients.Hive.Administrator {
|
---|
30 | public class AdministratorMenuItem : MainForm.WindowsForms.MenuItem, IOptimizerUserInterfaceItemProvider {
|
---|
31 | public override string Name {
|
---|
32 | get { return "&Administrator"; }
|
---|
33 | }
|
---|
34 |
|
---|
35 | public override IEnumerable<string> Structure {
|
---|
36 | get { return new string[] { "&Services", "&Hive" }; }
|
---|
37 | }
|
---|
38 |
|
---|
39 | public override void Execute() {
|
---|
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 | }
|
---|
54 | }
|
---|
55 |
|
---|
56 | public override int Position {
|
---|
57 | get { return 8000; }
|
---|
58 | }
|
---|
59 |
|
---|
60 | public override Keys ShortCutKeys {
|
---|
61 | get { return Keys.Control | Keys.Shift | Keys.H; }
|
---|
62 | }
|
---|
63 | }
|
---|
64 | }
|
---|