COSMOS core  1.0.2 (beta)
Comprehensive Open-architecture Solution for Mission Operations Systems
mainwindow.h
Go to the documentation of this file.
1 /********************************************************************
2 * Copyright (C) 2015 by Interstel Technologies, Inc.
3 * and Hawaii Space Flight Laboratory.
4 *
5 * This file is part of the COSMOS/core that is the central
6 * module for COSMOS. For more information on COSMOS go to
7 * <http://cosmos-project.com>
8 *
9 * The COSMOS/core software is licenced under the
10 * GNU Lesser General Public License (LGPL) version 3 licence.
11 *
12 * You should have received a copy of the
13 * GNU Lesser General Public License
14 * If not, go to <http://www.gnu.org/licenses/>
15 *
16 * COSMOS/core is free software: you can redistribute it and/or
17 * modify it under the terms of the GNU Lesser General Public License
18 * as published by the Free Software Foundation, either version 3 of
19 * the License, or (at your option) any later version.
20 *
21 * COSMOS/core is distributed in the hope that it will be useful, but
22 * WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24 * Lesser General Public License for more details.
25 *
26 * Refer to the "licences" folder for further information on the
27 * condititons and terms to use this software.
28 ********************************************************************/
29 
30 #ifndef MAINWINDOW_H
31 #define MAINWINDOW_H
32 
33 #include <QMainWindow>
34 #define NUM_TESTS 3
35 
36 namespace Ui {
37 class MainWindow;
38 }
39 
40 class MainWindow : public QMainWindow
41 {
42  Q_OBJECT
43 
44 public:
45  explicit MainWindow(QWidget *parent = 0);
46  ~MainWindow();
47 
48  static char names[NUM_TESTS][11];
49 
50 private slots:
51 
52  void on_ChangeFolder_clicked();
53 
54  void on_CollapseAll_clicked();
55 
56  void on_SelectAll_clicked();
57 
58  void on_DeselectAll_clicked();
59 
60  void recountTests();
61 
62  void on_RunAll_clicked();
63 
64  void on_RunSelected_clicked();
65 
66 private:
67  Ui::MainWindow *ui;
68 };
69 
70 #endif // MAINWINDOW_H
Definition: eci2kep_test.h:37
Ui::MainWindow * ui
Definition: mainwindow.h:67
#define NUM_TESTS
Definition: mainwindow.h:34
Definition: mainwindow.h:40