Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
flatpak-qt-creator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
48134939
Commit
48134939
authored
Jul 21, 2009
by
con
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Back to the bottom.
parent
1d3c75c7
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
7 deletions
+6
-7
src/plugins/coreplugin/editormanager/editorview.cpp
src/plugins/coreplugin/editormanager/editorview.cpp
+2
-3
src/plugins/coreplugin/outputpane.cpp
src/plugins/coreplugin/outputpane.cpp
+1
-1
src/plugins/debugger/debuggeroutputwindow.cpp
src/plugins/debugger/debuggeroutputwindow.cpp
+1
-1
src/plugins/find/findtoolbar.cpp
src/plugins/find/findtoolbar.cpp
+1
-1
src/plugins/help/helpplugin.cpp
src/plugins/help/helpplugin.cpp
+1
-1
No files found.
src/plugins/coreplugin/editormanager/editorview.cpp
View file @
48134939
...
...
@@ -145,9 +145,6 @@ EditorView::EditorView(OpenEditorsModel *model, QWidget *parent) :
connect
(
m_lockButton
,
SIGNAL
(
clicked
()),
this
,
SLOT
(
makeEditorWritable
()));
connect
(
m_closeButton
,
SIGNAL
(
clicked
()),
this
,
SLOT
(
closeView
()),
Qt
::
QueuedConnection
);
}
{
tl
->
addWidget
(
new
FindToolBarPlaceHolder
(
this
));
}
{
m_infoWidget
->
setFrameStyle
(
QFrame
::
Panel
|
QFrame
::
Raised
);
m_infoWidget
->
setLineWidth
(
1
);
...
...
@@ -180,6 +177,8 @@ EditorView::EditorView(OpenEditorsModel *model, QWidget *parent) :
tl
->
addWidget
(
m_container
);
tl
->
addWidget
(
new
FindToolBarPlaceHolder
(
this
));
{
m_statusHLine
->
setFrameStyle
(
QFrame
::
HLine
);
...
...
src/plugins/coreplugin/outputpane.cpp
View file @
48134939
...
...
@@ -205,8 +205,8 @@ OutputPaneManager::OutputPaneManager(QWidget *parent) :
toolLayout
->
addWidget
(
m_opToolBarWidgets
);
toolLayout
->
addWidget
(
m_closeButton
);
mainlayout
->
addWidget
(
m_toolBar
);
mainlayout
->
addWidget
(
new
Core
::
FindToolBarPlaceHolder
(
this
));
mainlayout
->
addWidget
(
m_outputWidgetPane
,
10
);
mainlayout
->
addWidget
(
new
Core
::
FindToolBarPlaceHolder
(
this
));
setLayout
(
mainlayout
);
m_buttonsWidget
=
new
QWidget
;
...
...
src/plugins/debugger/debuggeroutputwindow.cpp
View file @
48134939
...
...
@@ -313,10 +313,10 @@ DebuggerOutputWindow::DebuggerOutputWindow(QWidget *parent)
QVBoxLayout
*
layout
=
new
QVBoxLayout
(
this
);
layout
->
setMargin
(
0
);
layout
->
setSpacing
(
0
);
layout
->
addWidget
(
m_splitter
);
#ifndef GDBDEBUGGERLEAN
layout
->
addWidget
(
new
Core
::
FindToolBarPlaceHolder
(
this
));
#endif
layout
->
addWidget
(
m_splitter
);
setLayout
(
layout
);
#ifndef GDBDEBUGGERLEAN
...
...
src/plugins/find/findtoolbar.cpp
View file @
48134939
...
...
@@ -74,7 +74,7 @@ FindToolBar::FindToolBar(FindPlugin *plugin, CurrentDocumentFind *currentDocumen
//setup ui
m_ui
.
setupUi
(
this
);
setFocusProxy
(
m_ui
.
findEdit
);
//
setProperty("topBorder", true);
setProperty
(
"topBorder"
,
true
);
setSingleRow
(
false
);
m_ui
.
findEdit
->
setAttribute
(
Qt
::
WA_MacShowFocusRect
,
false
);
m_ui
.
replaceEdit
->
setAttribute
(
Qt
::
WA_MacShowFocusRect
,
false
);
...
...
src/plugins/help/helpplugin.cpp
View file @
48134939
...
...
@@ -474,12 +474,12 @@ void HelpPlugin::createRightPaneSideBar()
addAutoReleasedObject
(
new
Core
::
BaseRightPaneWidget
(
m_rightPaneSideBar
));
rightPaneLayout
->
addWidget
(
w
);
rightPaneLayout
->
addWidget
(
new
Core
::
FindToolBarPlaceHolder
(
m_rightPaneSideBar
));
m_helpViewerForSideBar
=
new
HelpViewer
(
m_helpEngine
,
0
);
Aggregation
::
Aggregate
*
agg
=
new
Aggregation
::
Aggregate
();
agg
->
add
(
m_helpViewerForSideBar
);
agg
->
add
(
new
HelpViewerFindSupport
(
m_helpViewerForSideBar
));
rightPaneLayout
->
addWidget
(
m_helpViewerForSideBar
);
rightPaneLayout
->
addWidget
(
new
Core
::
FindToolBarPlaceHolder
(
m_rightPaneSideBar
));
#if defined(QT_NO_WEBKIT)
QFont
font
=
m_helpViewerForSideBar
->
font
();
font
=
qVariantValue
<
QFont
>
(
m_helpEngine
->
customValue
(
QLatin1String
(
"font"
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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