Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
c31055b5
Commit
c31055b5
authored
Feb 12, 2010
by
hjk
Browse files
texteditor: add missing parts to previous commit
parent
2ba77741
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/texteditor/texteditorplugin.cpp
View file @
c31055b5
...
...
@@ -140,6 +140,9 @@ bool TextEditorPlugin::initialize(const QStringList &arguments, QString *errorMe
quickFixCommand
->
setDefaultKeySequence
(
QKeySequence
(
tr
(
"Alt+Return"
)));
connect
(
quickFixShortcut
,
SIGNAL
(
activated
()),
this
,
SLOT
(
invokeQuickFix
()));
connect
(
m_settings
,
SIGNAL
(
fontSettingsChanged
(
TextEditor
::
FontSettings
)),
this
,
SIGNAL
(
fontSettingsChanged
(
TextEditor
::
FontSettings
)));
return
true
;
}
...
...
src/plugins/texteditor/texteditorplugin.h
View file @
c31055b5
...
...
@@ -30,6 +30,7 @@
#ifndef TEXTEDITORPLUGIN_H
#define TEXTEDITORPLUGIN_H
#include
"texteditor_global.h"
#include
<extensionsystem/iplugin.h>
namespace
Find
{
...
...
@@ -48,7 +49,9 @@ namespace Internal {
class
LineNumberFilter
;
class
PlainTextEditorFactory
;
class
TextEditorPlugin
:
public
ExtensionSystem
::
IPlugin
}
// namespace Internal
class
TEXTEDITOR_EXPORT
TextEditorPlugin
:
public
ExtensionSystem
::
IPlugin
{
Q_OBJECT
...
...
@@ -64,7 +67,10 @@ public:
void
initializeEditor
(
PlainTextEditor
*
editor
);
LineNumberFilter
*
lineNumberFilter
()
{
return
m_lineNumberFilter
;
}
Internal
::
LineNumberFilter
*
lineNumberFilter
()
{
return
m_lineNumberFilter
;
}
signals:
void
fontSettingsChanged
(
const
TextEditor
::
FontSettings
&
);
private
slots
:
void
invokeCompletion
();
...
...
@@ -75,12 +81,11 @@ private:
static
TextEditorPlugin
*
m_instance
;
TextEditorSettings
*
m_settings
;
TextFileWizard
*
m_wizard
;
PlainTextEditorFactory
*
m_editorFactory
;
LineNumberFilter
*
m_lineNumberFilter
;
Internal
::
PlainTextEditorFactory
*
m_editorFactory
;
Internal
::
LineNumberFilter
*
m_lineNumberFilter
;
Find
::
SearchResultWindow
*
m_searchResultWindow
;
};
}
// namespace Internal
}
// namespace TextEditor
#endif // TEXTEDITORPLUGIN_H
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment