FilePickerDialog: Port to GML compilation

This commit is contained in:
Aryan Baburajan 2024-03-30 12:07:02 +05:30 committed by Tim Schumacher
commit 3ab05dbbb9
Notes: sideshowbarker 2024-07-16 21:42:29 +09:00
4 changed files with 30 additions and 7 deletions

View file

@ -0,0 +1,24 @@
/*
* Copyright (c) 2024, Aryan Baburajan <aryanbaburajan2007@gmail.com>.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibGUI/Frame.h>
namespace GUI {
class FilePickerDialogWidget : public GUI::Widget {
C_OBJECT_ABSTRACT(FilePickerDialogWidget)
public:
static ErrorOr<NonnullRefPtr<FilePickerDialogWidget>> try_create();
virtual ~FilePickerDialogWidget() override = default;
private:
FilePickerDialogWidget() = default;
};
}