forked from qt-creator/qt-creator
docker: Improve Docker Device Wizard
* Added Sorting of Images * Added "Double-click to accept" * Added "disable list until sucessful" * Added "Show unnamed Images" option * Added Loading indicator Change-Id: I9bb822753ffc8af1d2e54f5279a6884cb5c4f1b0 Reviewed-by: hjk <hjk@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
@@ -40,6 +40,7 @@ public:
|
||||
VBoxLayout,
|
||||
FormLayout,
|
||||
GridLayout,
|
||||
StackLayout,
|
||||
};
|
||||
|
||||
enum class AlignmentType {
|
||||
@@ -209,6 +210,13 @@ public:
|
||||
Form(std::initializer_list<LayoutItem> items) : LayoutBuilder(FormLayout, items) {}
|
||||
};
|
||||
|
||||
class QTCREATOR_UTILS_EXPORT Stack : public LayoutBuilder
|
||||
{
|
||||
public:
|
||||
Stack() : LayoutBuilder(StackLayout) {}
|
||||
Stack(std::initializer_list<LayoutItem> items) : LayoutBuilder(StackLayout, items) {}
|
||||
};
|
||||
|
||||
using Space = LayoutBuilder::Space;
|
||||
using Span = LayoutBuilder::Span;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user