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:
};