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.
nmWTAI-Platform/Include/iBase/iPlugin/ZxSplitter.h

32 lines
497 B
C++

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#pragma once
#include <QSplitter>
#include "Defines.h"
#include "iPlugin_global.h"
// 父类moveSplitter信号为protected不方便使用
// 主要重载其信号响应
// 作者:地大学生 wangjr
class I_PLUGIN_EXPORT ZxSplitter : public QSplitter
{
Q_OBJECT
public:
ZxSplitter(Qt::Orientation o, QWidget* parent = 0);
~ZxSplitter();
void moveSplitterEx(int pos, int index);
protected:
void resizeEvent(QResizeEvent *resizeEvent);
signals:
protected:
};