File: testtaskbarwindow.h

package info (click to toggle)
dtkgui 5.7.12-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,340 kB
  • sloc: cpp: 19,512; ansic: 34; makefile: 15; sh: 15
file content (49 lines) | stat: -rw-r--r-- 965 bytes parent folder | download
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later

#ifndef TESTTASKBARWINDOW_H
#define TESTTASKBARWINDOW_H

#include <QWidget>
#include <QPushButton>
#include <QUuid>
#include <QDir>
#include <QStandardPaths>
#include <QDebug>
#include <QColor>
#include <QCheckBox>
#include <QSlider>
#include <QColorDialog>
#include <QLineEdit>
#include <QHBoxLayout>
#include <QVBoxLayout>

#include "dtaskbarcontrol.h"

DGUI_USE_NAMESPACE

class TestTaskbarWindow : public QWidget
{
    Q_OBJECT

public:
    explicit TestTaskbarWindow(QWidget *parent = nullptr);
    ~TestTaskbarWindow();

protected:
    void closeEvent(QCloseEvent *event);

Q_SIGNALS:
    void closeWindow();

private:
    DTaskbarControl *m_pTaskbarControl;
    QCheckBox *m_pProgressBox;
    QCheckBox *m_pCounterBox;
    QLineEdit *m_pNumEdit;
    QSlider *m_pProgress;
    QCheckBox *m_pUrgencyBox;
};

#endif // TESTTASKBARWINDOW_H