blob: 5acfe5a238377853479d2bb8d61a5303c4aabc97 [file] [log] [blame]
Isa Nanic601de1d2018-10-23 11:37:26 -04001/***************************************************************************
2 * Copyright (C) 2018 by Savoir-faire Linux *
3 * Author: Isa Nanic <isa.nanic@savoirfairelinux.com> *
4 * Author: Andreas Traczyk <andreas.traczyk@savoirfairelinux.com> *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 3 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
18 **************************************************************************/
19#pragma once
20#include <QComboBox>
21#include "accountlistmodel.h"
22#include "accountitemdelegate.h"
23
24namespace Ui {
25 class CurrentAccountComboBox;
26}
27
28class CurrentAccountComboBox : public QComboBox
29{
30 Q_OBJECT
31 CurrentAccountComboBox(const CurrentAccountComboBox& cpy);
32
33public:
34 explicit CurrentAccountComboBox(QWidget* parent = nullptr);
35 ~CurrentAccountComboBox();
36 void importLabelPhoto(const int& index);
37
38private:
39 void paintEvent(QPaintEvent* e);
40
41 AccountItemDelegate* accountItemDelegate_;
42 std::unique_ptr<AccountListModel> accountListModel_;
43
44 QPixmap currentAccountAvatarImage_;
45 int cellHeight_ = 48; // [screen awareness]
46};