blob: e52e142ac938b54bde3847c4aa2e0aa451b49269 [file] [log] [blame]
Stepan Salenikovich9816a942015-04-22 17:49:16 -04001/*
Stepan Salenikovichbe87d2c2016-01-25 14:14:34 -05002 * Copyright (C) 2015-2016 Savoir-faire Linux Inc.
Stepan Salenikovich9816a942015-04-22 17:49:16 -04003 * Author: Stepan Salenikovich <stepan.salenikovich@savoirfairelinux.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Stepan Salenikovich9816a942015-04-22 17:49:16 -040018 */
19
20#include "calling.h"
21
22#include <contactmethod.h>
23#include <callmodel.h>
24#include <QtCore/QItemSelectionModel>
25
26void
Stepan Salenikovich4e409932015-04-24 12:12:39 -040027place_new_call(const ContactMethod *n, Account *acc)
Stepan Salenikovich9816a942015-04-22 17:49:16 -040028{
Guillaume Roguez5d1514b2015-10-22 15:55:31 -040029 Call *call = CallModel::instance().dialingCall();
Stepan Salenikovich9816a942015-04-22 17:49:16 -040030 call->setDialNumber(n);
Stepan Salenikovich4e409932015-04-24 12:12:39 -040031 if (acc)
32 call->setAccount(acc);
Stepan Salenikovich9816a942015-04-22 17:49:16 -040033 call->performAction(Call::Action::ACCEPT);
34
35 /* make this the currently selected call */
Guillaume Roguez5d1514b2015-10-22 15:55:31 -040036 QModelIndex call_idx = CallModel::instance().getIndex(call);
37 CallModel::instance().selectionModel()->setCurrentIndex(call_idx, QItemSelectionModel::ClearAndSelect);
Stepan Salenikovich9816a942015-04-22 17:49:16 -040038}