You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
#ifndef _TabWidget_H
|
|
|
|
|
#define _TabWidget_H
|
|
|
|
|
|
|
|
|
|
#include "GUIFrameAPI.h"
|
|
|
|
|
#include <QTableWidget>
|
|
|
|
|
|
|
|
|
|
namespace GUI
|
|
|
|
|
{
|
|
|
|
|
class GUIFRAMEAPI TabWidget :public QTabWidget
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT;
|
|
|
|
|
public:
|
|
|
|
|
TabWidget(QWidget* parent);
|
|
|
|
|
~TabWidget();
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|