mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-19 16:59:47 +00:00
FilePickerDialog: Port to GML compilation
This commit is contained in:
parent
ddbed25bb5
commit
3ab05dbbb9
Notes:
sideshowbarker
2024-07-16 21:42:29 +09:00
Author: https://github.com/aryanbaburajan
Commit: 3ab05dbbb9
Pull-request: https://github.com/SerenityOS/serenity/pull/23782
Reviewed-by: https://github.com/timschumi ✅
4 changed files with 30 additions and 7 deletions
24
Userland/Libraries/LibGUI/FilePickerDialogWidget.h
Normal file
24
Userland/Libraries/LibGUI/FilePickerDialogWidget.h
Normal 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;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue