summaryrefslogtreecommitdiffstats
path: root/tests/manual/wasm/a11y/basic_widgets/tabswidget.h
blob: 6405c0dab7a0b359f10d5c1e6723bdf8ac70dfb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef TABDIALOG_H
#define TABDIALOG_H
#include <QTabWidget>
#include <QtWidgets>

class GeneralTab : public QWidget
{
  Q_OBJECT

public:

    explicit GeneralTab(QWidget *parent = nullptr);
};

class EditViewTab : public QWidget
{

  Q_OBJECT
private:
   bool b_connected = false;
   QPlainTextEdit* textEdit =nullptr;
   QToolBar* m_toolbar= nullptr;
public:
   void showEvent( QShowEvent* event ) ;
    QPlainTextEdit* getTextEdit(){return textEdit;}
    explicit EditViewTab( QWidget *parent = nullptr);
signals:
    void connectToToolBar();
};

#endif