1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 05:35:06 +00:00

FileManager: Added properties dialog

The user can rename files, change the permissions and view different
properties of the file.
This commit is contained in:
Till Mayer 2019-11-20 21:52:15 +01:00 committed by Andreas Kling
parent e630ad5927
commit b0b523e973
7 changed files with 389 additions and 33 deletions

View file

@ -55,9 +55,10 @@ public:
callback(*m_item_view);
}
GDirectoryModel& model() { return *m_model; }
private:
explicit DirectoryView(GWidget* parent);
GDirectoryModel& model() { return *m_model; }
const GDirectoryModel& model() const { return *m_model; }
void handle_activation(const GModelIndex&);