还是一堆bug的状态

This commit is contained in:
2026-08-01 20:09:45 +08:00
parent 0df7beda49
commit 8fb9683182
294 changed files with 13678 additions and 10864 deletions
+4 -8
View File
@@ -1,13 +1,9 @@
#pragma once
#include <QBoxLayout>
#include <QLayoutItem>
#include <QMargins>
#include "Base.h"
namespace Psc {
#include "global.h"
namespace Flex_Qt {
class Layout : public Layout_Item {
public:
explicit Layout(Qt::Orientation orientation = Qt::Horizontal) : orientation(orientation) {
}
explicit Layout(Qt::Orientation orientation = Qt::Horizontal) : orientation(orientation) {}
int space = 8;
QMargins margins = {8, 8, 8, 8};
std::vector<Layout_Item*> items;
@@ -18,4 +14,4 @@ protected:
template <typename T>
void layout_impl();
};
} // namespace Psc
}