diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-05 23:18:18 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-08 17:33:54 +0900 |
| commit | 0550152e172efec0828bb227f9433fd74a532b04 (patch) | |
| tree | 3c64524cc548e6e5b15c18ee55380cd1cd2b887f /src/MainWindow.h | |
| parent | 87843223ab8cb466b09f6867aba997e7f053d380 (diff) | |
| download | universal-indent-gui-tqt-0550152e172efec0828bb227f9433fd74a532b04.tar.gz universal-indent-gui-tqt-0550152e172efec0828bb227f9433fd74a532b04.zip | |
Add dialog to display information about files and paths.
This resolves issue #6.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/MainWindow.h')
| -rw-r--r-- | src/MainWindow.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/MainWindow.h b/src/MainWindow.h index 8ff6da6..bb8ea10 100644 --- a/src/MainWindow.h +++ b/src/MainWindow.h @@ -26,11 +26,12 @@ class AboutDialog; -class UiGuiHighlighter; class IndentHandler; +class ToolBarWidget; +class UiGuiHighlighter; +class UiGuiInfoDialog; class UiGuiSettings; class UiGuiSettingsDialog; -class ToolBarWidget; class TQextScintilla; class TQLabel; @@ -108,6 +109,7 @@ class MainWindow : public MainWindowBase UiGuiHighlighter *m_highlighter; ///-- TQScrollBar *m_textEditVScrollBar; AboutDialog *m_aboutDialog; + UiGuiInfoDialog *m_infoDialog; UiGuiSettingsDialog *m_settingsDialog; int m_actionClearRecentlyOpenedListId; int m_recentlyOpenedListMaxSize; @@ -135,6 +137,8 @@ class MainWindow : public MainWindowBase ToolBarWidget *m_toolBarWidget; IndentHandler *m_indentHandler; TQLabel *m_textEditLineColumnInfoLabel; + + friend class UiGuiInfoDialog; }; #endif // MAINWINDOW_H |
