mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-03-16 11:09:50 +08:00
34 lines
572 B
C++
34 lines
572 B
C++
#ifndef SECTIONCONTENTLISTWIDGET
|
|
#define SECTIONCONTENTLISTWIDGET
|
|
|
|
#include <QDialog>
|
|
#include "../../../AdvancedDockingSystem/src/SectionContent.h"
|
|
#include "MainContainerWidget.h"
|
|
#include "ui_SectionContentListWidget.h"
|
|
|
|
#include "API.h"
|
|
|
|
class SectionContentListWidget : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
class Values
|
|
{
|
|
public:
|
|
ads::CMainContainerWidget* cw;
|
|
};
|
|
|
|
SectionContentListWidget(QWidget* parent);
|
|
void setValues(const Values& v);
|
|
|
|
private slots:
|
|
void onDeleteButtonClicked();
|
|
|
|
private:
|
|
Ui::SectionContentListWidgetForm _ui;
|
|
Values _v;
|
|
};
|
|
|
|
#endif
|