diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-06-23 03:03:41 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-07-02 10:10:18 -0400 |
| commit | cbdc4cc3284f13477bfbf292d15c4a5742627091 (patch) | |
| tree | 7f50bb71db03fed7a57df70bc217a3ffd63d597a /src/modinfodialogtab.h | |
| parent | 8d1c121f648f2f6a8e0a5e2ad76cd245e318290d (diff) | |
split notes tab
added new HTMLEditor that triggers an editingFinished() on focus our, used by notes tab
Diffstat (limited to 'src/modinfodialogtab.h')
| -rw-r--r-- | src/modinfodialogtab.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/modinfodialogtab.h b/src/modinfodialogtab.h index dd851b31..60371954 100644 --- a/src/modinfodialogtab.h +++ b/src/modinfodialogtab.h @@ -60,4 +60,20 @@ private: MOShared::FilesOrigin* m_origin; }; + +class NotesTab : public ModInfoDialogTab +{ +public: + NotesTab( + OrganizerCore& oc, PluginContainer& plugin, + QWidget* parent, Ui::ModInfoDialog* ui); + + void clear() override; + void update() override; + +private: + void onComments(); + void onNotes(); +}; + #endif // MODINFODIALOGTAB_H |
