Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-client-qt
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
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-client-qt
Commits
d42d1cd3
Commit
d42d1cd3
authored
1 year ago
by
Andreas Traczyk
Browse files
Options
Downloads
Patches
Plain Diff
misc: homogenize line-endings in ConversationExtrasPanel
Change-Id: I5b58db9d6e9254a177d9b86575f6dd670a086bd9
parent
762cbbff
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/app/mainview/components/ConversationExtrasPanel.qml
+90
-90
90 additions, 90 deletions
src/app/mainview/components/ConversationExtrasPanel.qml
with
90 additions
and
90 deletions
src/app/mainview/components/ConversationExtrasPanel.qml
+
90
−
90
View file @
d42d1cd3
/*
* Copyright (C) 2023 Savoir-faire Linux Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import
QtQuick
import
QtQuick
.
Layouts
import
net
.
jami
.
Adapters
1.1
StackLayout
{
id
:
root
// We need to set the currentIndex to -1 to make sure the
// panel is closed when the application starts.
Component.onCompleted
:
closePanel
()
// The index of the tab in the swarm details panel.
property
int
detailsIndex
:
-
1
// Best to avoid using the visible property directly.
// Pass through the following open/close wrappers instead.
function
openPanel
(
panel
)
{
currentIndex
=
panel
;
visible
=
true
;
}
function
closePanel
()
{
currentIndex
=
-
1
;
visible
=
false
;
}
function
isOpen
(
panel
)
{
return
visible
&&
currentIndex
===
panel
;
}
// This will open the details panel if it's not already visible.
// Additionally, `toggle` being true (default) will close the panel
// if it is already open to `panel`.
function
switchToPanel
(
panel
,
toggle
=
true
)
{
console
.
debug
(
"
switchToPanel: %1, toggle: %2
"
.
arg
(
panel
).
arg
(
toggle
));
if
(
visible
)
{
// We need to close the panel if it's open and we're switching to
// the same panel.
if
(
toggle
&&
currentIndex
===
panel
)
{
// Toggle off.
closePanel
();
}
else
{
// Switch to the new panel.
openPanel
(
panel
);
}
}
else
{
openPanel
(
panel
);
}
}
Connections
{
target
:
CurrentConversationMembers
function
onCountChanged
()
{
// Close the panel if there are 8 or more members in the
// conversation AND the "Add Member" panel is currently open.
if
(
CurrentConversationMembers
.
count
>=
8
&&
isOpen
(
ChatView
.
AddMemberPanel
))
{
closePanel
();
}
}
}
SwarmDetailsPanel
{
id
:
detailsPanel
property
int
parentIndex
:
root
.
currentIndex
// When we change to the details panel we should load the tab index.
onParentIndexChanged
:
tabBarIndex
=
Math
.
min
(
tabBarItemsLength
-
1
,
Math
.
max
(
0
,
root
.
detailsIndex
))
// Save it when it changes.
onTabBarIndexChanged
:
root
.
detailsIndex
=
tabBarIndex
}
MessagesResearchPanel
{}
AddMemberPanel
{}
}
/*
* Copyright (C) 2023 Savoir-faire Linux Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import
QtQuick
import
QtQuick
.
Layouts
import
net
.
jami
.
Adapters
1.1
StackLayout
{
id
:
root
// We need to set the currentIndex to -1 to make sure the
// panel is closed when the application starts.
Component.onCompleted
:
closePanel
()
// The index of the tab in the swarm details panel.
property
int
detailsIndex
:
-
1
// Best to avoid using the visible property directly.
// Pass through the following open/close wrappers instead.
function
openPanel
(
panel
)
{
currentIndex
=
panel
;
visible
=
true
;
}
function
closePanel
()
{
currentIndex
=
-
1
;
visible
=
false
;
}
function
isOpen
(
panel
)
{
return
visible
&&
currentIndex
===
panel
;
}
// This will open the details panel if it's not already visible.
// Additionally, `toggle` being true (default) will close the panel
// if it is already open to `panel`.
function
switchToPanel
(
panel
,
toggle
=
true
)
{
console
.
debug
(
"
switchToPanel: %1, toggle: %2
"
.
arg
(
panel
).
arg
(
toggle
));
if
(
visible
)
{
// We need to close the panel if it's open and we're switching to
// the same panel.
if
(
toggle
&&
currentIndex
===
panel
)
{
// Toggle off.
closePanel
();
}
else
{
// Switch to the new panel.
openPanel
(
panel
);
}
}
else
{
openPanel
(
panel
);
}
}
Connections
{
target
:
CurrentConversationMembers
function
onCountChanged
()
{
// Close the panel if there are 8 or more members in the
// conversation AND the "Add Member" panel is currently open.
if
(
CurrentConversationMembers
.
count
>=
8
&&
isOpen
(
ChatView
.
AddMemberPanel
))
{
closePanel
();
}
}
}
SwarmDetailsPanel
{
id
:
detailsPanel
property
int
parentIndex
:
root
.
currentIndex
// When we change to the details panel we should load the tab index.
onParentIndexChanged
:
tabBarIndex
=
Math
.
min
(
tabBarItemsLength
-
1
,
Math
.
max
(
0
,
root
.
detailsIndex
))
// Save it when it changes.
onTabBarIndexChanged
:
root
.
detailsIndex
=
tabBarIndex
}
MessagesResearchPanel
{}
AddMemberPanel
{}
}
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