1 /**
2  * UGENE - Integrated Bioinformatics Tools.
3  * Copyright (C) 2008-2017 UniPro <ugene@unipro.ru>
4  * http://ugene.net
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19  * MA 02110-1301, USA.
20  */
21 
22 #ifndef _HI_GT_TABWIDGET_H_
23 #define _HI_GT_TABWIDGET_H_
24 
25 #include <QTabWidget>
26 
27 #include "GTGlobals.h"
28 
29 namespace HI {
30 
31 class HI_EXPORT GTTabWidget {
32 public:
33     // fails if the tabwidget is NULL, index is not in a tabwidget's range
34     // or a tabwidget's index differs from a given index in the end of method's execution
35     static void setCurrentIndex(GUITestOpStatus &os, QTabWidget *const tabWidget, int index);
36     static QTabBar *getTabBar(GUITestOpStatus &os, QTabWidget *tabWidget);
37 
38     static void clickTab(GUITestOpStatus &os, QTabWidget *const tabWidget, int tabIndex, Qt::MouseButton button = Qt::LeftButton);
39     static void clickTab(GUITestOpStatus &os, const QString &tabWidgetName, QWidget const *const parent, int tabIndex, Qt::MouseButton button = Qt::LeftButton);
40     static void clickTab(GUITestOpStatus &os, QTabWidget *const tabWidget, const QString &tabName, Qt::MouseButton button = Qt::LeftButton);
41     static void clickTab(GUITestOpStatus &os, const QString &tabWidgetName, const QWidget *const parent, const QString &tabName, Qt::MouseButton button = Qt::LeftButton);
42 
43     static QString getTabName(GUITestOpStatus &os, QTabWidget *tabWidget, int idx);
44 
45     static int getTabNumByName(GUITestOpStatus &os, QTabWidget *tabWidget, QString tabName);
46     static QWidget *getTabCornerWidget(GUITestOpStatus &os, QTabWidget *tabWidget, int idx);
47     static QWidget *getTabCornerWidget(GUITestOpStatus &os, QTabWidget *tabWidget, QString tabName);
48 
49     static void closeTab(GUITestOpStatus &os, QTabWidget *tabWidget, int idx);
50     static void closeTab(GUITestOpStatus &os, QTabWidget *tabWidget, QString tabName);
51 };
52 
53 }  // namespace HI
54 #endif  // _HI_GT_TABWIDGET_H_
55