Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
CometeTrend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software Control System
Gui
TangoBeans
CometeTrend
Commits
4b777615
Commit
4b777615
authored
Mar 7, 2023
by
Raphael GIRARDOT
Browse files
Options
Downloads
Patches
Plain Diff
added JScrollPane for attributes tree (CONTROLGUI-390)
parent
8b94d089
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/fr/soleil/comete/bean/trend/view/CometeTrend.java
+4
-2
4 additions, 2 deletions
...in/java/fr/soleil/comete/bean/trend/view/CometeTrend.java
with
4 additions
and
2 deletions
src/main/java/fr/soleil/comete/bean/trend/view/CometeTrend.java
+
4
−
2
View file @
4b777615
...
...
@@ -36,7 +36,7 @@ import fr.soleil.lib.project.swing.Splash;
public
class
CometeTrend
extends
JFrame
implements
ITrendFileListener
{
private
static
final
long
serialVersionUID
=
258105
4961
564129497
L
;
private
static
final
long
serialVersionUID
=
-
49
7
61
36351985828913
L
;
private
static
final
Logger
LOGGER
=
LoggerFactory
.
getLogger
(
CometeTrend
.
class
);
...
...
@@ -62,6 +62,7 @@ public class CometeTrend extends JFrame implements ITrendFileListener {
private
TrendMenu
trendMenu
;
private
ChartPanel
chartPanel
;
private
TrendTreePanel
attributeTree
;
private
JScrollPane
attributeTreeScrollPane
;
private
JSplitPane
splitPane
;
private
JTextArea
console
;
private
JScrollPane
consoleScrollPane
;
...
...
@@ -140,13 +141,14 @@ public class CometeTrend extends JFrame implements ITrendFileListener {
}
private
void
initSplitPane
()
{
splitPane
=
new
JSplitPane
(
JSplitPane
.
HORIZONTAL_SPLIT
,
attributeTree
,
chartPanel
);
splitPane
=
new
JSplitPane
(
JSplitPane
.
HORIZONTAL_SPLIT
,
attributeTree
ScrollPane
,
chartPanel
);
splitPane
.
setOneTouchExpandable
(
true
);
splitPane
.
setDividerLocation
(
dividerLocation
);
}
private
void
initAttributeTree
()
{
attributeTree
=
new
TrendTreePanel
(
controller
,
trendMenu
.
getAddAttributesAction
());
attributeTreeScrollPane
=
new
JScrollPane
(
attributeTree
);
}
private
void
initTrendMenu
()
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment