mirror of
https://github.com/JulianGro/overte.git
synced 2025-08-16 15:11:32 +02:00
50 lines
No EOL
1.1 KiB
C++
50 lines
No EOL
1.1 KiB
C++
//
|
|
// TestRailResultsSelectorWindow.h
|
|
//
|
|
// Created by Nissim Hadar on 2 Aug 2017.
|
|
// Copyright 2013 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
#ifndef hifi_TestRailResultsSelectorWindow_h
|
|
#define hifi_TestRailResultsSelectorWindow_h
|
|
|
|
#include "ui_TestRailResultsSelectorWindow.h"
|
|
|
|
class TestRailResultsSelectorWindow : public QDialog, public Ui::TestRailResultsSelectorWindow {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TestRailResultsSelectorWindow(QWidget* parent = Q_NULLPTR);
|
|
|
|
void reset();
|
|
|
|
bool getUserCancelled();
|
|
|
|
void setURL(const QString& user);
|
|
QString getURL();
|
|
|
|
void setUser(const QString& user);
|
|
QString getUser();
|
|
|
|
QString getPassword();
|
|
|
|
void setProjectID(const int project);
|
|
int getProjectID();
|
|
|
|
void setSuiteID(const int project);
|
|
int getSuiteID();
|
|
|
|
bool userCancelled{ false };
|
|
|
|
void updateRunsComboBoxData(QStringList data);
|
|
int getRunID();
|
|
|
|
private slots:
|
|
void on_acceptButton_clicked();
|
|
void on_OKButton_clicked();
|
|
void on_cancelButton_clicked();
|
|
};
|
|
|
|
#endif |