mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:57:44 +00:00
Maps: Add favorites panel with favorite places management
This commit is contained in:
parent
3acbffabf9
commit
5a7f43ad38
10 changed files with 421 additions and 13 deletions
19
Userland/Applications/Maps/FavoritesEditDialog.h
Normal file
19
Userland/Applications/Maps/FavoritesEditDialog.h
Normal file
|
@ -0,0 +1,19 @@
|
|||
/*
|
||||
* Copyright (c) 2023, Bastiaan van der Plaat <bastiaan.v.d.plaat@gmail.com>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <LibGUI/Widget.h>
|
||||
|
||||
namespace Maps {
|
||||
|
||||
class FavoritesEditDialog final : public GUI::Widget {
|
||||
C_OBJECT(FavoritesEditDialog)
|
||||
public:
|
||||
static ErrorOr<NonnullRefPtr<FavoritesEditDialog>> try_create();
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue