change version to 0.7.3
[ncmpcpp.git] / src / title.cpp
blob5ec523120e6211b253ec1ba1740d83f5d4a4e254
1 /***************************************************************************
2 * Copyright (C) 2008-2014 by Andrzej Rybczak *
3 * electricityispower@gmail.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 2 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 *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
21 #include <cstring>
22 #include <iostream>
24 #include "global.h"
25 #include "settings.h"
26 #include "title.h"
27 #include "utility/wide_string.h"
29 void windowTitle(const std::string &status)
31 if (Config.set_window_title)
32 std::cout << "\033]0;" << status << "\7" << std::flush;
35 void drawHeader()
37 using Global::myScreen;
38 using Global::wHeader;
39 using Global::VolumeState;
41 if (!Config.header_visibility)
42 return;
43 switch (Config.design)
45 case Design::Classic:
46 *wHeader << NC::XY(0, 0) << NC::TermManip::ClearToEOL << NC::Format::Bold << myScreen->title() << NC::Format::NoBold;
47 *wHeader << Config.volume_color;
48 *wHeader << NC::XY(wHeader->getWidth()-VolumeState.length(), 0) << VolumeState;
49 *wHeader << NC::Color::End;
50 break;
51 case Design::Alternative:
52 std::wstring title = myScreen->title();
53 *wHeader << NC::XY(0, 3) << NC::TermManip::ClearToEOL;
54 *wHeader << NC::Format::Bold << Config.alternative_ui_separator_color;
55 mvwhline(wHeader->raw(), 2, 0, 0, COLS);
56 mvwhline(wHeader->raw(), 4, 0, 0, COLS);
57 *wHeader << NC::XY((COLS-wideLength(title))/2, 3);
58 *wHeader << Config.header_color << title << NC::Color::End;
59 *wHeader << NC::Color::End << NC::Format::NoBold;
60 break;
62 wHeader->refresh();