summaryrefslogtreecommitdiffstats
blob: 3de26411a068243fc5e297b38838bb6aedc2cf0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
 * Copyright (c) 2010 Kevin Smith
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */

#include "QtStatusWidget.h"

#include <QBoxLayout>
#include <QComboBox>
#include <QLineEdit>


namespace Swift {
QtStatusWidget::QtStatusWidget(QWidget *parent) : QWidget(parent) {
	types_ = new QComboBox(this);
	types_->addItem(QIcon(":/icons/online.png"), "Available", QVariant(StatusShow::Online));
	types_->addItem(QIcon(":/icons/online.png"), "Free For Chat", QVariant(StatusShow::FFC));
	types_->addItem(QIcon(":/icons/away.png"), "Away", QVariant(StatusShow::Away));
	types_->addItem(QIcon(":/icons/away.png"), "Extended Away", QVariant(StatusShow::XA));
	types_->addItem(QIcon(":/icons/dnd.png"), "Do Not Disturb", QVariant(StatusShow::DND));
	types_->addItem(QIcon(":/icons/offline.png"), "Offline", QVariant(StatusShow::None));
	connect(types_, SIGNAL(activated(int)), this, SLOT(handleTypeSelected(int)));
	QBoxLayout *mainLayout = new QBoxLayout(QBoxLayout::TopToBottom, this);
	mainLayout->setContentsMargins(0,0,0,0);
	mainLayout->setSpacing(0);
	mainLayout->addWidget(types_);
}

void QtStatusWidget::handleTypeSelected(int index) {
	Q_UNUSED(index);
	emit onChangeStatusRequest(getSelectedStatusShow());
}

StatusShow::Type QtStatusWidget::getSelectedStatusShow() {
	return (StatusShow::Type)types_->itemData(types_->currentIndex()).toInt();
}

void QtStatusWidget::setStatusType(StatusShow::Type type) {
	for (int i = 0; i < types_->count(); i++) {
		if (types_->itemData(i).toInt() == type) {
			types_->setCurrentIndex(i);
			break;
		}
	}
}

}