-
-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Detect external changes to backing file (#124).
- Loading branch information
1 parent
e27c7b5
commit aca5c04
Showing
10 changed files
with
715 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* Reverse Engineer's Hex Editor | ||
* Copyright (C) 2017-2022 Daniel Collins <[email protected]> | ||
* Copyright (C) 2017-2023 Daniel Collins <[email protected]> | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 as published by | ||
|
@@ -127,6 +127,9 @@ namespace REHex | |
void OnDocumentDataTypesChanged(wxCommandEvent &event); | ||
void OnDocumentMappingsChanged(wxCommandEvent &event); | ||
|
||
void OnDocumentFileDeleted(wxCommandEvent &event); | ||
void OnDocumentFileModified(wxCommandEvent &event); | ||
|
||
void OnBulkUpdatesFrozen(wxCommandEvent &event); | ||
void OnBulkUpdatesThawed(wxCommandEvent &event); | ||
|
||
|
@@ -169,6 +172,14 @@ namespace REHex | |
|
||
void compare_range(off_t offset, off_t length); | ||
|
||
bool child_windows_hidden; | ||
|
||
bool file_deleted_dialog_pending; | ||
void file_deleted_dialog(); | ||
|
||
bool file_modified_dialog_pending; | ||
void file_modified_dialog(); | ||
|
||
DECLARE_EVENT_TABLE() | ||
}; | ||
} | ||
|
Oops, something went wrong.