aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/texteditor/tabsettingswidget.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2022-07-25 13:35:19 +0200
committerhjk <hjk@qt.io>2022-07-26 09:08:45 +0000
commit530043705b686b877a5247c0b2d6e76d66c43125 (patch)
tree24c1605acaa17b1393024babf2f4dce76e481246 /src/plugins/texteditor/tabsettingswidget.h
parentdc839df59be8f167b938f3cbb49887ce381367db (diff)
TextEditor: inline tabsettingswidget.ui
Change-Id: I9afe5978df1b1313c9d88493dcec9cfe3b7a6af9 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
Diffstat (limited to 'src/plugins/texteditor/tabsettingswidget.h')
-rw-r--r--src/plugins/texteditor/tabsettingswidget.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/plugins/texteditor/tabsettingswidget.h b/src/plugins/texteditor/tabsettingswidget.h
index 5a5206434a..8850545619 100644
--- a/src/plugins/texteditor/tabsettingswidget.h
+++ b/src/plugins/texteditor/tabsettingswidget.h
@@ -29,9 +29,13 @@
#include <QGroupBox>
-namespace TextEditor {
+QT_BEGIN_NAMESPACE
+class QComboBox;
+class QLabel;
+class QSpinBox;
+QT_END_NAMESPACE
-namespace Internal { namespace Ui { class TabSettingsWidget; } }
+namespace TextEditor {
class TabSettings;
@@ -61,7 +65,11 @@ private:
void slotSettingsChanged();
void codingStyleLinkActivated(const QString &linkString);
- Internal::Ui::TabSettingsWidget *ui;
+ QLabel *m_codingStyleWarning;
+ QComboBox *m_tabPolicy;
+ QSpinBox *m_tabSize;
+ QSpinBox *m_indentSize;
+ QComboBox *m_continuationAlignBehavior;
};
} // namespace TextEditor