diff options
Diffstat (limited to 'Swift/QtUI/QtStatusWidget.cpp')
-rw-r--r-- | Swift/QtUI/QtStatusWidget.cpp | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Swift/QtUI/QtStatusWidget.cpp b/Swift/QtUI/QtStatusWidget.cpp new file mode 100644 index 0000000..53f93b5 --- /dev/null +++ b/Swift/QtUI/QtStatusWidget.cpp @@ -0,0 +1,32 @@ +#include "QtStatusWidget.h" + +#include <QBoxLayout> +#include <QComboBox> +#include <QLineEdit> + + +namespace Swift { +QtStatusWidget::QtStatusWidget(QWidget *parent) { + types_ = new QComboBox(this); + types_->addItem("Available", QVariant(StatusShow::Online)); + types_->addItem("Free For Chat", QVariant(StatusShow::FFC)); + types_->addItem("Away", QVariant(StatusShow::Away)); + types_->addItem("Extended Away", QVariant(StatusShow::XA)); + types_->addItem("Do Not Disturb", QVariant(StatusShow::DND)); + types_->addItem("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) { + emit onChangeStatusRequest((StatusShow::Type)types_->itemData(index).toInt(), ""); +} + +} + + + + |