You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
858 B
38 lines
858 B
6 months ago
|
/******************************************************************
|
||
|
Copyright © Deng Zhimao Co., Ltd. 1990-2021. All rights reserved.
|
||
|
* @projectName 03_appmainview
|
||
|
* @brief widget.h
|
||
|
* @author Deng Zhimao
|
||
|
* @email 1252699831@qq.com
|
||
|
* @net www.openedv.com
|
||
|
* @date 2021-06-09
|
||
|
*******************************************************************/
|
||
|
#ifndef WIDGET_H
|
||
|
#define WIDGET_H
|
||
|
#include <QWidget>
|
||
|
#include "slidepage.h"
|
||
|
#include "alarm.h"
|
||
|
|
||
|
class SlidePage;
|
||
|
class Alarm;
|
||
|
|
||
|
class AppMainView : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
AppMainView(QWidget *parent = nullptr);
|
||
|
~AppMainView();
|
||
|
|
||
|
private:
|
||
|
/* 背景 */
|
||
|
QWidget *bgWidget ;
|
||
|
/* 滑动页面管理对象 */
|
||
|
SlidePage *mySlidePage;
|
||
|
|
||
|
/* 重设大小 */
|
||
|
void resizeEvent(QResizeEvent *event);
|
||
|
Alarm *alarm;
|
||
|
|
||
|
};
|
||
|
#endif // WIDGET_H
|