[apps] Display app title in the title bar

Change-Id: I8cd8d09359e627a0915c99c13dc445027ec361e3
This commit is contained in:
Émilie Feral
2017-01-23 11:47:34 +01:00
parent a4df89d2f5
commit f7f8430288
7 changed files with 57 additions and 13 deletions

View File

@@ -3,20 +3,16 @@ extern "C" {
#include <assert.h>
}
/* Title Bar View */
void AppsWindow::TitleBarView::drawRect(KDContext * ctx, KDRect rect) const {
ctx->fillRect(bounds(), KDColorBlack);
}
/* Window */
AppsWindow::AppsWindow() :
Window(),
m_titleBarView(TitleBarView())
{
}
void AppsWindow::setTitle(const char * title) {
m_titleBarView.setTitle(title);
}
int AppsWindow::numberOfSubviews() const {
return (m_contentView == nullptr ? 1 : 2);
}