Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jami-client-macos
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository 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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
savoirfairelinux
jami-client-macos
Commits
274c22cb
Commit
274c22cb
authored
8 years ago
by
Alexandre Lision
Committed by
gerrit2
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
accounts: remove iax type
Change-Id: Ib470a369af96481d3ebb7c3cd74e5ad76ad37c9c Tuleap: #813
parent
28009738
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/AccountsVC.mm
+16
-47
16 additions, 47 deletions
src/AccountsVC.mm
with
16 additions
and
47 deletions
src/AccountsVC.mm
+
16
−
47
View file @
274c22cb
...
...
@@ -38,20 +38,6 @@
#import "AccRingVC.h"
#import "PathPasswordWC.h"
// We disabled IAX protocol for now, so don't show it to the user
class
ActiveProtocolModel
:
public
QSortFilterProxyModel
{
public:
ActiveProtocolModel
(
QAbstractItemModel
*
parent
)
:
QSortFilterProxyModel
(
parent
)
{
setSourceModel
(
parent
);
}
virtual
bool
filterAcceptsRow
(
int
source_row
,
const
QModelIndex
&
source_parent
)
const
{
return
sourceModel
()
->
index
(
source_row
,
0
,
source_parent
).
flags
()
&
Qt
::
ItemIsEnabled
;
}
};
@interface
AccountsVC
()
<
PathPasswordDelegate
>
@property
(
assign
)
IBOutlet
NSPopUpButton
*
protocolList
;
...
...
@@ -64,7 +50,6 @@ public:
@property
(
retain
)
IBOutlet
NSTabViewItem
*
ringTabItem
;
@property
QNSTreeController
*
treeController
;
@property
ActiveProtocolModel
*
proxyProtocolModel
;
@property
(
assign
)
IBOutlet
NSOutlineView
*
accountsListView
;
@property
(
assign
)
IBOutlet
NSTabView
*
accountDetailsView
;
@property
(
unsafe_unretained
)
IBOutlet
NSButton
*
exportAccountButton
;
...
...
@@ -89,7 +74,6 @@ public:
@synthesize
accountsListView
;
@synthesize
accountDetailsView
;
@synthesize
treeController
;
@synthesize
proxyProtocolModel
;
@synthesize
passwordWC
;
NSInteger
const
TAG_CHECK
=
100
;
...
...
@@ -136,10 +120,18 @@ typedef NS_ENUM(NSUInteger, Action) {
AccountModel
::
instance
().
selectionModel
()
->
clearCurrentIndex
();
proxyProtocolModel
=
new
ActiveProtocolModel
(
AccountModel
::
instance
().
protocolModel
());
QModelIndex
qProtocolIdx
=
AccountModel
::
instance
().
protocolModel
()
->
selectionModel
()
->
currentIndex
();
[
self
.
protocolList
addItemWithTitle
:
AccountModel
:
:
instance
().
protocolModel
()
->
data
(
qProtocolIdx
,
Qt
::
DisplayRole
).
toString
().
toNSString
()];
QObject
::
connect
(
AccountModel
::
instance
().
protocolModel
()
->
selectionModel
(),
&
QItemSelectionModel
::
currentChanged
,
[
=
](
const
QModelIndex
&
current
,
const
QModelIndex
&
previous
)
{
if
(
!
current
.
isValid
())
{
return
;
}
[
protocolList
removeAllItems
];
[
protocolList
addItemWithTitle
:
AccountModel
:
:
instance
().
protocolModel
()
->
data
(
current
,
Qt
::
DisplayRole
).
toString
().
toNSString
()];
});
self
.
generalVC
=
[[
AccGeneralVC
alloc
]
initWithNibName
:
@"AccGeneral"
bundle
:
nil
];
[[
self
.
generalVC
view
]
setFrame
:[
self
.
generalTabItem
.
view
frame
]];
...
...
@@ -167,11 +159,6 @@ typedef NS_ENUM(NSUInteger, Action) {
[
self
.
ringTabItem
setView
:
self
.
ringVC
.
view
];
}
-
(
void
)
dealloc
{
delete
proxyProtocolModel
;
}
-
(
IBAction
)
addAccount
:(
id
)
sender
{
QModelIndex
qIdx
=
AccountModel
::
instance
().
protocolModel
()
->
selectionModel
()
->
currentIndex
();
...
...
@@ -185,10 +172,8 @@ typedef NS_ENUM(NSUInteger, Action) {
-
(
IBAction
)
protocolSelectedChanged
:(
id
)
sender
{
int
index
=
[
sender
indexOfSelectedItem
];
QModelIndex
proxyIdx
=
proxyProtocolModel
->
index
(
index
,
0
);
AccountModel
::
instance
().
protocolModel
()
->
selectionModel
()
->
setCurrentIndex
(
proxyProtocolModel
->
mapToSource
(
proxyIdx
),
QItemSelectionModel
::
ClearAndSelect
);
auto
qIdx
=
AccountModel
::
instance
().
protocolModel
()
->
index
(
index
,
0
);
AccountModel
::
instance
().
protocolModel
()
->
selectionModel
()
->
setCurrentIndex
(
qIdx
,
QItemSelectionModel
::
ClearAndSelect
);
}
-
(
void
)
setupSIPPanels
...
...
@@ -204,17 +189,6 @@ typedef NS_ENUM(NSUInteger, Action) {
[
configPanels
insertTabViewItem
:
securityTabItem
atIndex
:
3
];
}
-
(
void
)
setupIAXPanels
{
// Start by removing all tabs
for
(
NSTabViewItem
*
item
in
configPanels
.
tabViewItems
)
{
[
configPanels
removeTabViewItem
:
item
];
}
[
configPanels
insertTabViewItem
:
generalTabItem
atIndex
:
0
];
[
configPanels
insertTabViewItem
:
mediaTabItem
atIndex
:
1
];
}
-
(
void
)
setupRINGPanels
{
// Start by removing all tabs
...
...
@@ -298,9 +272,6 @@ typedef NS_ENUM(NSUInteger, Action) {
case
Account
::
Protocol
::
SIP
:
[
typeLabel
setStringValue
:
@"SIP"
];
break
;
case
Account
::
Protocol
::
IAX
:
[
typeLabel
setStringValue
:
@"IAX"
];
break
;
case
Account
::
Protocol
::
RING
:
[
typeLabel
setStringValue
:
@"RING"
];
break
;
...
...
@@ -345,9 +316,6 @@ typedef NS_ENUM(NSUInteger, Action) {
case
Account
::
Protocol
::
SIP
:
[
self
setupSIPPanels
];
break
;
case
Account
::
Protocol
::
IAX
:
[
self
setupIAXPanels
];
break
;
case
Account
::
Protocol
::
RING
:
[
self
setupRINGPanels
];
break
;
...
...
@@ -426,16 +394,17 @@ typedef NS_ENUM(NSUInteger, Action) {
-
(
BOOL
)
menu
:(
NSMenu
*
)
menu
updateItem
:(
NSMenuItem
*
)
item
atIndex
:(
NSInteger
)
index
shouldCancel
:(
BOOL
)
shouldCancel
{
QModelIndex
proxyIdx
=
proxyProtocolModel
->
index
(
index
,
0
);
QModelIndex
qIdx
=
AccountModel
::
instance
().
protocolModel
()
->
index
(
proxyProtocolModel
->
mapToSource
(
proxyIdx
).
row
());
auto
qIdx
=
AccountModel
::
instance
().
protocolModel
()
->
index
(
index
,
0
);
[
item
setTitle
:
qIdx
.
data
(
Qt
:
:
DisplayRole
).
toString
().
toNSString
()];
if
(
qIdx
==
AccountModel
::
instance
().
protocolModel
()
->
selectionModel
()
->
currentIndex
())
{
[
protocolList
selectItem
:
item
];
}
return
YES
;
}
-
(
NSInteger
)
numberOfItemsInMenu
:(
NSMenu
*
)
menu
{
return
proxyP
rotocolModel
->
rowCount
();
return
AccountModel
::
instance
().
p
rotocolModel
()
->
rowCount
();
}
@end
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